]> git.sesse.net Git - ffmpeg/commitdiff
Add a note to remind people that new PCM/ADPCM formats need to be added to
authorDiego Biurrun <diego@biurrun.de>
Sat, 5 Jul 2008 07:30:59 +0000 (07:30 +0000)
committerDiego Biurrun <diego@biurrun.de>
Sat, 5 Jul 2008 07:30:59 +0000 (07:30 +0000)
the Makefile as well to allow proper selective compilation.

Originally committed as revision 14072 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/adpcm.c
libavcodec/pcm.c

index 99ea285c687865cd7b19a4ea6c8262f09dd751f1..f4ca273eb56fea1801e3c6d9b0ec058a0c5c4de8 100644 (file)
@@ -1636,6 +1636,7 @@ AVCodec name ## _decoder = {                    \
 #define ADPCM_CODEC(id,name,long_name_)         \
     ADPCM_ENCODER(id,name,long_name_) ADPCM_DECODER(id,name,long_name_)
 
+/* Note: Do not forget to add new entries to the Makefile as well. */
 ADPCM_DECODER(CODEC_ID_ADPCM_4XM, adpcm_4xm, "4X Movie ADPCM");
 ADPCM_DECODER(CODEC_ID_ADPCM_CT, adpcm_ct, "Creative Technology ADPCM");
 ADPCM_DECODER(CODEC_ID_ADPCM_EA, adpcm_ea, "Electronic Arts ADPCM");
index 6e9a755bcf5d0bf60e4f542494a6a17c82315e44..29779c5ba0983bf3634416da873361f54cc6ff60 100644 (file)
@@ -556,6 +556,7 @@ AVCodec name ## _decoder = {                    \
 #define PCM_CODEC(id, name, long_name_)         \
     PCM_ENCODER(id,name,long_name_) PCM_DECODER(id,name,long_name_)
 
+/* Note: Do not forget to add new entries to the Makefile as well. */
 PCM_CODEC  (CODEC_ID_PCM_ALAW, pcm_alaw, "A-law PCM");
 PCM_CODEC  (CODEC_ID_PCM_DVD, pcm_dvd, "signed 16|20|24-bit big-endian PCM");
 PCM_CODEC  (CODEC_ID_PCM_MULAW, pcm_mulaw, "mu-law PCM");