diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2011-03-25 17:12:26 -0400 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2011-03-27 11:30:09 -0400 |
commit | 991f3de1bb696a55f7604e4b7d53492299fe44b5 (patch) | |
tree | 993eac29de22803e695d56a72ccb95ec1aefae81 /libavcodec/ac3enc_fixed.c | |
parent | c6c2dfcf15c1d93b2189adff6f71c5c4b6b05338 (diff) | |
download | ffmpeg-991f3de1bb696a55f7604e4b7d53492299fe44b5.tar.gz |
ac3enc: Add codec-specific options for writing AC-3 metadata.
Diffstat (limited to 'libavcodec/ac3enc_fixed.c')
-rw-r--r-- | libavcodec/ac3enc_fixed.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/ac3enc_fixed.c b/libavcodec/ac3enc_fixed.c index 46f52e504a..967c7f0805 100644 --- a/libavcodec/ac3enc_fixed.c +++ b/libavcodec/ac3enc_fixed.c @@ -410,5 +410,6 @@ AVCodec ff_ac3_fixed_encoder = { NULL, .sample_fmts = (const enum AVSampleFormat[]){AV_SAMPLE_FMT_S16,AV_SAMPLE_FMT_NONE}, .long_name = NULL_IF_CONFIG_SMALL("ATSC A/52A (AC-3)"), + .priv_class = &ac3enc_class, .channel_layouts = ac3_channel_layouts, }; |