Commit d3302b70 authored by Peter Ross's avatar Peter Ross

Support Electronic Arts files containing MPEG2VIDEO.

Originally committed as revision 14708 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 81b060fa
...@@ -331,6 +331,10 @@ static int process_ea_header(AVFormatContext *s) { ...@@ -331,6 +331,10 @@ static int process_ea_header(AVFormatContext *s) {
err = process_video_header_mdec(s); err = process_video_header_mdec(s);
break; break;
case MPCh_TAG:
ea->video_codec = CODEC_ID_MPEG2VIDEO;
break;
case MVhd_TAG : case MVhd_TAG :
err = process_video_header_vp6(s); err = process_video_header_vp6(s);
break; break;
...@@ -490,6 +494,7 @@ static int ea_read_packet(AVFormatContext *s, ...@@ -490,6 +494,7 @@ static int ea_read_packet(AVFormatContext *s,
goto get_video_packet; goto get_video_packet;
case MV0K_TAG: case MV0K_TAG:
case MPCh_TAG:
key = PKT_FLAG_KEY; key = PKT_FLAG_KEY;
case MV0F_TAG: case MV0F_TAG:
get_video_packet: get_video_packet:
......
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