Ensure that muxer and encoder aspect ratios match. So no
authorMichael Niedermayer <michaelni@gmx.at>
Fri, 19 Sep 2008 12:37:38 +0000 (12:37 +0000)
committerMichael Niedermayer <michaelni@gmx.at>
Fri, 19 Sep 2008 12:37:38 +0000 (12:37 +0000)
invalid files are generated.

Originally committed as revision 15367 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/utils.c

index c124507..8938c49 100644 (file)
@@ -2457,6 +2457,10 @@ int av_write_header(AVFormatContext *s)
                 av_log(s, AV_LOG_ERROR, "dimensions not set\n");
                 return -1;
             }
+            if(av_cmp_q(st->sample_aspect_ratio, st->codec->sample_aspect_ratio)){
+                av_log(s, AV_LOG_ERROR, "Aspect ratio mismatch between encoder and muxer layer\n");
+                return -1;
+            }
             break;
         }