diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2010-08-29 21:23:52 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2010-08-29 21:23:52 +0000 |
commit | 187186c6001d9cb9e2a9248de85defb7d0ad378a (patch) | |
tree | 4538664f4a64a7124352ed7be535f51ba3a1379e | |
parent | e35070582e1be55ef502fbb0339472fdf8f35d89 (diff) | |
download | ffmpeg-187186c6001d9cb9e2a9248de85defb7d0ad378a.tar.gz |
cosmetic
Originally committed as revision 24977 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/m4vdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/m4vdec.c b/libavformat/m4vdec.c index 21a2b5058b..84363a1873 100644 --- a/libavformat/m4vdec.c +++ b/libavformat/m4vdec.c @@ -44,7 +44,7 @@ static int mpeg4video_probe(AVProbeData *probe_packet) && !(0x1B9 < temp_buffer && temp_buffer < 0x1C4)) res++; } - if ( VOP >= VISO && VOP >= VOL && VO >= VOL && VOL > 0 && res==0) + if (VOP >= VISO && VOP >= VOL && VO >= VOL && VOL > 0 && res==0) return AVPROBE_SCORE_MAX/2; return 0; } |