[FFmpeg-devel] [PATCH/DRAFT] MonkeyAudio Demuxer/Decoder

Diego Biurrun diego
Wed Jun 20 09:31:43 CEST 2007


On Tue, Jun 19, 2007 at 11:50:06PM +0200, Benjamin Zores wrote:
> 
> Then, I'll be glad if someone could review this patch (quickly, no
> need to be exhaustive) to help me find out what can cause the decoder
> to crash after a few samples.
> 
> --- libavformat/Makefile	(revision 9370)
> +++ libavformat/Makefile	(working copy)
> @@ -19,6 +19,7 @@
>  OBJS-$(CONFIG_AMR_DEMUXER)               += amr.o
>  OBJS-$(CONFIG_AMR_MUXER)                 += amr.o
> +OBJS-$(CONFIG_APE_DEMUXER)               += ape.o
>  OBJS-$(CONFIG_APC_DEMUXER)               += apc.o
>  OBJS-$(CONFIG_ASF_DEMUXER)               += asf.o riff.o
> --- libavformat/allformats.c	(revision 9370)
> +++ libavformat/allformats.c	(working copy)
> @@ -51,6 +51,7 @@
>      REGISTER_MUXDEMUX(AIFF, aiff);
>      REGISTER_MUXDEMUX(AMR, amr);
> +    REGISTER_DEMUXER (APE, ape);
>      REGISTER_DEMUXER (APC, apc);
>      REGISTER_MUXDEMUX(ASF, asf);
> --- libavformat/allformats.h	(revision 9370)
> +++ libavformat/allformats.h	(working copy)
> @@ -28,6 +28,7 @@
>  extern AVInputFormat aiff_demuxer;
>  extern AVInputFormat amr_demuxer;
> +extern AVInputFormat ape_demuxer;
>  extern AVInputFormat apc_demuxer;
>  extern AVInputFormat asf_demuxer;

Is your alphabet getting rusty? :)

Diego




More information about the ffmpeg-devel mailing list