From 89b3d7c9f1375d8f2009e9fd98e97ae0019eb6b6 Mon Sep 17 00:00:00 2001 From: Max Krasnyansky Date: Wed, 11 Sep 2002 18:46:47 +0000 Subject: mpeg4 raw output support patch by ("Maksim (Max) Krasnyanskiy" ) Originally committed as revision 917 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libav/raw.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'libav/raw.c') diff --git a/libav/raw.c b/libav/raw.c index 96d011caf5..97c17c0b2e 100644 --- a/libav/raw.c +++ b/libav/raw.c @@ -233,6 +233,19 @@ AVOutputFormat h263_oformat = { raw_write_trailer, }; +AVOutputFormat m4v_oformat = { + "m4v", + "raw MPEG4 video format", + NULL, + "m4v", + 0, + CODEC_ID_NONE, + CODEC_ID_MPEG4, + raw_write_header, + raw_write_packet, + raw_write_trailer, +}; + AVInputFormat mpegvideo_iformat = { "mpegvideo", "MPEG video", @@ -420,6 +433,8 @@ int raw_init(void) av_register_output_format(&ac3_oformat); av_register_output_format(&h263_oformat); + + av_register_output_format(&m4v_oformat); av_register_input_format(&mpegvideo_iformat); av_register_output_format(&mpeg1video_oformat); -- cgit v1.2.3