Commit 187186c6 authored by Aurelien Jacobs's avatar Aurelien Jacobs

cosmetic

Originally committed as revision 24977 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent e3507058
...@@ -44,7 +44,7 @@ static int mpeg4video_probe(AVProbeData *probe_packet) ...@@ -44,7 +44,7 @@ static int mpeg4video_probe(AVProbeData *probe_packet)
&& !(0x1B9 < temp_buffer && temp_buffer < 0x1C4)) res++; && !(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 AVPROBE_SCORE_MAX/2;
return 0; return 0;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment