# HG changeset patch # User diego # Date 1215243059 0 # Node ID 54f8d960f15b757cae8fc98eb7db31010f21e7b4 # Parent ab345b7d32ed45dfd73aa2193c00c4394fb0ec92 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. diff -r ab345b7d32ed -r 54f8d960f15b adpcm.c --- a/adpcm.c Sat Jul 05 07:28:35 2008 +0000 +++ b/adpcm.c Sat Jul 05 07:30:59 2008 +0000 @@ -1636,6 +1636,7 @@ #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"); diff -r ab345b7d32ed -r 54f8d960f15b pcm.c --- a/pcm.c Sat Jul 05 07:28:35 2008 +0000 +++ b/pcm.c Sat Jul 05 07:30:59 2008 +0000 @@ -556,6 +556,7 @@ #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");