From da8cb1c361340da8f0127375fc2d7ff2df85f589 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Thu, 6 Nov 2014 14:48:23 +0100 Subject: [PATCH] avformat/mmf: Use AVFormatContext strict_std_compliance instead of AVCodecContext Signed-off-by: Michael Niedermayer --- libavformat/mmf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);