On Mon, Aug 05, 2013 at 12:55:30PM +0200, Diego Biurrun wrote: > --- a/configure > +++ b/configure > @@ -1601,6 +1601,7 @@ lagarith_decoder_select="dsputil" > loco_decoder_select="golomb" > mdec_decoder_select="dsputil error_resilience mpegvideo" > +metasound_decoder_select="lsp mdct sinewin" > mimic_decoder_select="dsputil hpeldsp" > mjpeg_decoder_select="dsputil hpeldsp" > --- a/libavcodec/Makefile > +++ b/libavcodec/Makefile > @@ -378,6 +378,8 @@ OBJS-$(CONFIG_VORBIS_DECODER) += vorbisdec.o > vorbisdsp.o vorbis.o \ > vorbis_data.o xiph.o > OBJS-$(CONFIG_VORBIS_ENCODER) += vorbisenc.o vorbis.o \ > vorbis_data.o > +OBJS-$(CONFIG_VOXWARE_DECODER) += metasound.o metasound_data.o \ > + twinvq.o > vp56rac.o > --- a/libavcodec/allcodecs.c > +++ b/libavcodec/allcodecs.c > @@ -324,6 +324,7 @@ void avcodec_register_all(void) > REGISTER_DECODER(VMDAUDIO, vmdaudio); > REGISTER_ENCDEC (VORBIS, vorbis); > + REGISTER_DECODER(VOXWARE, voxware); > REGISTER_DECODER(WAVPACK, wavpack); > REGISTER_DECODER(WMALOSSLESS, wmalossless);
Please be consistent with the naming and either call this thing voxware or metasound, but not a mixture of both in different places. I'll try to read this thing through in more detail later. Diego _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
