mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
10l != vs. == (yes, my fault not kostya's).
Originally committed as revision 16330 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
679f3fa901
commit
ec5bdf4989
@ -252,7 +252,7 @@ static int find_group3_syncmarker(GetBitContext *gb, int srcsize)
|
||||
srcsize -= get_bits_count(gb);
|
||||
while(srcsize-- > 0){
|
||||
state+= state + get_bits1(gb);
|
||||
if((state & 0xFFF) != 1)
|
||||
if((state & 0xFFF) == 1)
|
||||
return 0;
|
||||
}
|
||||
return -1;
|
||||
|
Loading…
Reference in New Issue
Block a user