forked from FFmpeg/FFmpeg
Electronic Arts demuxer: ignore PTxx platform ID values.
Originally committed as revision 14709 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
d3302b7011
commit
a07f117804
1 changed files with 1 additions and 1 deletions
|
@ -306,7 +306,7 @@ static int process_ea_header(AVFormatContext *s) {
|
|||
blockid = get_le32(pb);
|
||||
if (blockid == GSTR_TAG) {
|
||||
url_fskip(pb, 4);
|
||||
} else if (blockid != PT00_TAG) {
|
||||
} else if ((blockid & 0xFFFF)!=PT00_TAG) {
|
||||
av_log (s, AV_LOG_ERROR, "unknown SCHl headerid\n");
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue