summaryrefslogtreecommitdiff
path: root/libavformat/allformats.c
diff options
context:
space:
mode:
authorOded Shimon <ods15@ods15.dyndns.org>2006-11-12 06:10:21 +0000
committerOded Shimon <ods15@ods15.dyndns.org>2006-11-12 06:10:21 +0000
commit6dd2cdf4b0769685b77a497c63312827f6e33a83 (patch)
tree8cfad8b9e710c06750f36fb60160d9afd4959ec4 /libavformat/allformats.c
parentf956e129543c4b3d4de43de9106a66edcaffc456 (diff)
register nut muxer if libnut is used
Originally committed as revision 6978 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/allformats.c')
-rw-r--r--libavformat/allformats.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/libavformat/allformats.c b/libavformat/allformats.c
index aad7435ae8..02fa1746c4 100644
--- a/libavformat/allformats.c
+++ b/libavformat/allformats.c
@@ -249,7 +249,9 @@ void av_register_all(void)
av_register_input_format(&nut_demuxer);
#endif
#ifdef CONFIG_NUT_MUXER
-// av_register_output_format(&nut_muxer);
+#ifdef CONFIG_LIBNUT
+ av_register_output_format(&nut_muxer);
+#endif
#endif
#ifdef CONFIG_NUV_DEMUXER
av_register_input_format(&nuv_demuxer);