Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-11-06 16:48:23 +0300
committerMichael Niedermayer <michaelni@gmx.at>2014-11-06 16:48:41 +0300
commitda8cb1c361340da8f0127375fc2d7ff2df85f589 (patch)
treea533c0cd2696be2dbe272a5119531dc287d6f7fb /libavformat/mmf.c
parent470e116e3fda4d433784e6ac70a09d8870442b16 (diff)
avformat/mmf: Use AVFormatContext strict_std_compliance instead of AVCodecContext
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/mmf.c')
-rw-r--r--libavformat/mmf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mmf.c b/libavformat/mmf.c
index f557eebecf..e96311238d 100644
--- a/libavformat/mmf.c
+++ b/libavformat/mmf.c
@@ -82,7 +82,7 @@ static int mmf_write_header(AVFormatContext *s)
mmf->stereo = s->streams[0]->codec->channels > 1;
if (mmf->stereo &&
- s->streams[0]->codec->strict_std_compliance > FF_COMPLIANCE_EXPERIMENTAL) {
+ s->strict_std_compliance > FF_COMPLIANCE_EXPERIMENTAL) {
av_log(s, AV_LOG_ERROR, "Yamaha SMAF stereo is experimental, "
"add '-strict %d' if you want to use it.\n",
FF_COMPLIANCE_EXPERIMENTAL);