Skip to content
Snippets Groups Projects
Commit 11c55efa authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

Skip over unknown extended_content_header tags.

fixes issue358

Originally committed as revision 12347 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 16428e63
No related branches found
No related tags found
No related merge requests found
...@@ -415,7 +415,8 @@ static int asf_read_header(AVFormatContext *s, AVFormatParameters *ap) ...@@ -415,7 +415,8 @@ static int asf_read_header(AVFormatContext *s, AVFormatParameters *ap)
value_num= get_value(pb, value_type); value_num= get_value(pb, value_type);
if (!strcmp(name,"WM/Track" ) && s->track == 0) s->track = value_num + 1; if (!strcmp(name,"WM/Track" ) && s->track == 0) s->track = value_num + 1;
if (!strcmp(name,"WM/TrackNumber")) s->track = value_num; if (!strcmp(name,"WM/TrackNumber")) s->track = value_num;
} }else
url_fskip(pb, value_len);
} }
} else if (!memcmp(&g, &metadata_header, sizeof(GUID))) { } else if (!memcmp(&g, &metadata_header, sizeof(GUID))) {
int n, stream_num, name_len, value_len, value_type, value_num; int n, stream_num, name_len, value_len, value_type, value_num;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment