mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
libfdk-aac: reindent after last commit
Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
94a69dee64
commit
c8ba8be27e
@ -399,20 +399,20 @@ static const int aac_sample_rates[] = {
|
||||
};
|
||||
|
||||
AVCodec ff_libfdk_aac_encoder = {
|
||||
.name = "libfdk_aac",
|
||||
.type = AVMEDIA_TYPE_AUDIO,
|
||||
.id = AV_CODEC_ID_AAC,
|
||||
.priv_data_size = sizeof(AACContext),
|
||||
.init = aac_encode_init,
|
||||
.encode2 = aac_encode_frame,
|
||||
.close = aac_encode_close,
|
||||
.capabilities = CODEC_CAP_SMALL_LAST_FRAME | CODEC_CAP_DELAY,
|
||||
.sample_fmts = (const enum AVSampleFormat[]){ AV_SAMPLE_FMT_S16,
|
||||
AV_SAMPLE_FMT_NONE },
|
||||
.long_name = NULL_IF_CONFIG_SMALL("Fraunhofer FDK AAC"),
|
||||
.priv_class = &aac_enc_class,
|
||||
.defaults = aac_encode_defaults,
|
||||
.profiles = profiles,
|
||||
.name = "libfdk_aac",
|
||||
.type = AVMEDIA_TYPE_AUDIO,
|
||||
.id = AV_CODEC_ID_AAC,
|
||||
.priv_data_size = sizeof(AACContext),
|
||||
.init = aac_encode_init,
|
||||
.encode2 = aac_encode_frame,
|
||||
.close = aac_encode_close,
|
||||
.capabilities = CODEC_CAP_SMALL_LAST_FRAME | CODEC_CAP_DELAY,
|
||||
.sample_fmts = (const enum AVSampleFormat[]){ AV_SAMPLE_FMT_S16,
|
||||
AV_SAMPLE_FMT_NONE },
|
||||
.long_name = NULL_IF_CONFIG_SMALL("Fraunhofer FDK AAC"),
|
||||
.priv_class = &aac_enc_class,
|
||||
.defaults = aac_encode_defaults,
|
||||
.profiles = profiles,
|
||||
.supported_samplerates = aac_sample_rates,
|
||||
.channel_layouts = aac_channel_layout,
|
||||
.channel_layouts = aac_channel_layout,
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user