[FFmpeg-devel] [PATCH] aea demuxer
Diego Biurrun
diego
Mon Jun 8 22:22:06 CEST 2009
On Mon, Jun 08, 2009 at 09:32:43PM +0200, Benjamin Larsson wrote:
> Simple demuxer for a simple format. Header parsing will be added when I
> get the specification. For now it will only be able to decode stereo
> streams.
Add documentation and changelog updates when committing please
> --- libavformat/aea.c (revision 0)
> +++ libavformat/aea.c (revision 0)
> @@ -0,0 +1,89 @@
> +
> +static int aea_read_probe(AVProbeData *p)
> +{
> + /* Magic is '00 08 00 00' */
> + if(*(p->buf) != 0 || *(p->buf+1) != 8 || *(p->buf+2) != 0 || *(p->buf+3) != 0)
> + return 0;
nit: if (
Diego
More information about the ffmpeg-devel
mailing list