diff options
author | Mike Melanson <mike@multimedia.cx> | 2003-05-25 05:18:30 +0000 |
---|---|---|
committer | Mike Melanson <mike@multimedia.cx> | 2003-05-25 05:18:30 +0000 |
commit | 3c96b4ef3813055fcf8bc12a3eb71dc71e6d940a (patch) | |
tree | 790c809801470a6a2692bc1904e3484f86e6e5be | |
parent | cef4ba9e8a62d0f2d2e8fe5c7b2772abd26b84c9 (diff) | |
download | ffmpeg-3c96b4ef3813055fcf8bc12a3eb71dc71e6d940a.tar.gz |
add 4xm to the family
Originally committed as revision 1904 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/allformats.c | 1 | ||||
-rw-r--r-- | libavformat/avformat.h | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/libavformat/allformats.c b/libavformat/allformats.c index 5d602f3542..b9db8897df 100644 --- a/libavformat/allformats.c +++ b/libavformat/allformats.c @@ -47,6 +47,7 @@ void av_register_all(void) mov_init(); jpeg_init(); dv_init(); + fourxm_init(); av_register_output_format(&yuv4mpegpipe_oformat); diff --git a/libavformat/avformat.h b/libavformat/avformat.h index ffe1d67be1..cca2f5617f 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -329,6 +329,9 @@ int ffm_init(void); extern AVInputFormat redir_demux; int redir_open(AVFormatContext **ic_ptr, ByteIOContext *f); +/* 4xm.c */ +int fourxm_init(void); + #include "rtp.h" #include "rtsp.h" |