# HG changeset patch # User michael # Date 1186704774 0 # Node ID e3ea6e6029285f02c2fe68756f058a70de3d79aa # Parent 0bf0afe32fccad2181d5f03ded04278857b0523a enable nut muxer diff -r 0bf0afe32fcc -r e3ea6e602928 Makefile --- a/Makefile Fri Aug 10 00:11:36 2007 +0000 +++ b/Makefile Fri Aug 10 00:12:54 2007 +0000 @@ -102,6 +102,7 @@ OBJS-$(CONFIG_NSV_DEMUXER) += nsvdec.o OBJS-$(CONFIG_NULL_MUXER) += raw.o OBJS-$(CONFIG_NUT_DEMUXER) += nutdec.o nut.o riff.o +OBJS-$(CONFIG_NUT_MUXER) += nutenc.o nut.o riff.o OBJS-$(CONFIG_NUV_DEMUXER) += nuv.o riff.o OBJS-$(CONFIG_OGG_DEMUXER) += ogg2.o \ oggparsevorbis.o \ diff -r 0bf0afe32fcc -r e3ea6e602928 allformats.c --- a/allformats.c Fri Aug 10 00:11:36 2007 +0000 +++ b/allformats.c Fri Aug 10 00:12:54 2007 +0000 @@ -117,7 +117,7 @@ REGISTER_DEMUXER (MXF, mxf); REGISTER_DEMUXER (NSV, nsv); REGISTER_MUXER (NULL, null); - REGISTER_DEMUXER (NUT, nut); + REGISTER_MUXDEMUX(NUT, nut); REGISTER_DEMUXER (NUV, nuv); REGISTER_DEMUXER (OGG, ogg); REGISTER_MUXER (OGG, ogg); diff -r 0bf0afe32fcc -r e3ea6e602928 allformats.h --- a/allformats.h Fri Aug 10 00:11:36 2007 +0000 +++ b/allformats.h Fri Aug 10 00:12:54 2007 +0000 @@ -160,6 +160,7 @@ extern AVOutputFormat mpegts_muxer; extern AVOutputFormat mpjpeg_muxer; extern AVOutputFormat null_muxer; +extern AVOutputFormat nut_muxer; extern AVOutputFormat ogg_muxer; extern AVOutputFormat pcm_alaw_muxer; extern AVOutputFormat pcm_mulaw_muxer;