diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2006-07-19 09:38:22 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2006-07-19 09:38:22 +0000 |
commit | 86329cce041444332317f517cd6b55f089cdfe50 (patch) | |
tree | 9d88e0f17f0d420f42c5144c432fd88f68ea8ee8 /libavformat/allformats.c | |
parent | 1d94a6620fb8b18ccbba75b7ca74db2fe885e054 (diff) | |
download | ffmpeg-86329cce041444332317f517cd6b55f089cdfe50.tar.gz |
GXF muxer
Originally committed as revision 5787 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/allformats.c')
-rw-r--r-- | libavformat/allformats.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavformat/allformats.c b/libavformat/allformats.c index 3ce379313e..3ff29fe5b6 100644 --- a/libavformat/allformats.c +++ b/libavformat/allformats.c @@ -138,6 +138,9 @@ void av_register_all(void) #ifdef CONFIG_GXF_DEMUXER av_register_input_format(&gxf_demuxer); #endif +#if defined(CONFIG_GXF_MUXER) && defined(CONFIG_GPL) + av_register_output_format(&gxf_muxer); +#endif #ifdef CONFIG_IDCIN_DEMUXER av_register_input_format(&idcin_demuxer); #endif |