summaryrefslogtreecommitdiff
path: root/libavformat/allformats.c
diff options
context:
space:
mode:
authorLuca Abeni <lucabe72@email.it>2006-02-17 21:06:51 +0000
committerDiego Biurrun <diego@biurrun.de>2006-02-17 21:06:51 +0000
commit8cecedfbe832609da509eb7205155e0b153e0dd4 (patch)
treebc252d34341a2135ec7abb3ea9331e681250926c /libavformat/allformats.c
parent1b137298fa260b6119a872a1a2c6f9a99cfab283 (diff)
ff_asts_init needs to be inside #ifdef CONFIG_MUXERS, remove some misplaced
CONFIG_MUXERS from adtsenc.c, fixes compilation with --disable-muxers. patch by Luca Abeni, lucabe72 &at& email &dot& it Originally committed as revision 5030 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/allformats.c')
-rw-r--r--libavformat/allformats.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/allformats.c b/libavformat/allformats.c
index 51fbd3edda..7d2241447c 100644
--- a/libavformat/allformats.c
+++ b/libavformat/allformats.c
@@ -55,8 +55,8 @@ void av_register_all(void)
swf_init();
au_init();
ff_aiff_init();
- ff_adts_init();
#ifdef CONFIG_MUXERS
+ ff_adts_init();
gif_init();
#endif //CONFIG_MUXERS
mov_init();