[Ffmpeg-devel] [PATCH] aiff/aiff-c format encoder and decoder

Diego Biurrun diego
Sun Jan 29 17:53:25 CET 2006


On Sun, Jan 29, 2006 at 11:18:52AM -0500, Patrick Guimond wrote:
> 
> --- ../ffmpeg-orig/Changelog	2006-01-29 10:56:33.000000000 -0500
> +++ ./Changelog	2006-01-29 11:00:28.000000000 -0500
> @@ -1,4 +1,5 @@
>  version <next>
> +- AIFF/AIFF-C audio format, encoding and decoding
>  - TechSmith Camtasia (TSCC) video decoder

Very minor issue: Please add your codec to the bottom of the list, we
add in chronological order.

> --- ../ffmpeg-orig/libavformat/aiff.c	1969-12-31 19:00:00.000000000 -0500
> +++ ./libavformat/aiff.c	2006-01-29 11:02:13.000000000 -0500
> @@ -0,0 +1,474 @@
> +
> +const CodecTag codec_aiff_tags[] = {
> +    { CODEC_ID_PCM_S16BE, MKTAG('N','O','N','E') }, 
> +    { CODEC_ID_PCM_S8, MKTAG('N','O','N','E') }, 
> +    { CODEC_ID_PCM_S24BE, MKTAG('N','O','N','E') }, 
> +    { CODEC_ID_PCM_S32BE, MKTAG('N','O','N','E') }, 

Here and below you add a bit of trailing whitespace, please remove it.

Diego





More information about the ffmpeg-devel mailing list