aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2004-02-07 15:35:53 +0000
committerMichael Niedermayer <michaelni@gmx.at>2004-02-07 15:35:53 +0000
commitae2e7208f91ca2e25fb12bab198e54ff622a68fa (patch)
treef22f41f879e553cf2f4cf2ae45035ca8260e0f53
parenteb5b0422b595d488f5c2f2a37a62cd46dfbb6aa7 (diff)
downloadffmpeg-ae2e7208f91ca2e25fb12bab198e54ff622a68fa.tar.gz
pass strict_std_compliance to audio context too
Originally committed as revision 2763 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--ffmpeg.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 306974009f..d4ce1efabc 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -2543,6 +2543,7 @@ static void opt_output_file(const char *filename)
audio_enc->bit_rate = audio_bit_rate;
audio_enc->sample_rate = audio_sample_rate;
+ audio_enc->strict_std_compliance = strict;
/* For audio codecs other than AC3 we limit */
/* the number of coded channels to stereo */
if (audio_channels > 2 && codec_id != CODEC_ID_AC3) {