diff options
author | Diego Biurrun | 2008-09-03 12:33:21 +0000 |
---|---|---|
committer | Diego Biurrun | 2008-09-03 12:33:21 +0000 |
commit | f544a5fc84975879746f619e01b6f1e80844e59e (patch) | |
tree | 888967928796e772987ca8a3ad5834b7029beb27 /libavcodec/cljr.c | |
parent | bb6c34e55b158c457272046ed9f22b974e832fb5 (diff) |
Replace generic CONFIG_ENCODERS preprocessor conditionals by more specific
CONFIG_FOO_ENCODER conditionals where appropriate.
Originally committed as revision 15174 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/cljr.c')
-rw-r--r-- | libavcodec/cljr.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/libavcodec/cljr.c b/libavcodec/cljr.c index ddc00583d1..fa2cda58d8 100644 --- a/libavcodec/cljr.c +++ b/libavcodec/cljr.c @@ -143,8 +143,7 @@ AVCodec cljr_decoder = { .long_name = NULL_IF_CONFIG_SMALL("Cirrus Logic AccuPak"), }; #if 0 -#ifdef CONFIG_ENCODERS - +#ifdef CONFIG_CLJR_ENCODER AVCodec cljr_encoder = { "cljr", CODEC_TYPE_VIDEO, @@ -155,6 +154,5 @@ AVCodec cljr_encoder = { //encode_end, .long_name = NULL_IF_CONFIG_SMALL("Cirrus Logic AccuPak"), }; - -#endif //CONFIG_ENCODERS +#endif #endif |