diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-07-05 07:30:59 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-07-05 07:30:59 +0000 |
commit | bbdfa06d437a1cb8dd18169bc0c3db129aaa25d2 (patch) | |
tree | 71feee2749bdc21cedc92c232a8749535967b2f2 /libavcodec/adpcm.c | |
parent | f1e3c9368b60f1caa87fec787431ea9ee97892b8 (diff) | |
download | ffmpeg-bbdfa06d437a1cb8dd18169bc0c3db129aaa25d2.tar.gz |
Add a note to remind people that new PCM/ADPCM formats need to be added to
the Makefile as well to allow proper selective compilation.
Originally committed as revision 14072 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/adpcm.c')
-rw-r--r-- | libavcodec/adpcm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/adpcm.c b/libavcodec/adpcm.c index 99ea285c68..f4ca273eb5 100644 --- a/libavcodec/adpcm.c +++ b/libavcodec/adpcm.c @@ -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"); |