Commit 4e3e9a5f authored by cehoyos's avatar cehoyos

Improve sofdec dectection to avoid false positives for MP2.

Patch by tralph11, tralph11 yahoo


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@20333 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent fcbe1b01
......@@ -113,6 +113,8 @@ static int mpegps_read_header(AVFormatContext *s,
m->sofdec++;
} while (v == sofdec[i] && i++ < 6);
m->sofdec = (m->sofdec == 6) ? 1 : 0;
/* no need to do more */
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