Mercurial > libavcodec.hg
comparison cljr.c @ 7782:6efb15a24e91 libavcodec
Replace generic CONFIG_ENCODERS preprocessor conditionals by more specific
CONFIG_FOO_ENCODER conditionals where appropriate.
author | diego |
---|---|
date | Wed, 03 Sep 2008 12:33:21 +0000 |
parents | e943e1409077 |
children | 12a25666f1e4 |
comparison
equal
deleted
inserted
replaced
7781:0d62fafc69ae | 7782:6efb15a24e91 |
---|---|
141 decode_frame, | 141 decode_frame, |
142 CODEC_CAP_DR1, | 142 CODEC_CAP_DR1, |
143 .long_name = NULL_IF_CONFIG_SMALL("Cirrus Logic AccuPak"), | 143 .long_name = NULL_IF_CONFIG_SMALL("Cirrus Logic AccuPak"), |
144 }; | 144 }; |
145 #if 0 | 145 #if 0 |
146 #ifdef CONFIG_ENCODERS | 146 #ifdef CONFIG_CLJR_ENCODER |
147 | |
148 AVCodec cljr_encoder = { | 147 AVCodec cljr_encoder = { |
149 "cljr", | 148 "cljr", |
150 CODEC_TYPE_VIDEO, | 149 CODEC_TYPE_VIDEO, |
151 CODEC_ID_cljr, | 150 CODEC_ID_cljr, |
152 sizeof(CLJRContext), | 151 sizeof(CLJRContext), |
153 encode_init, | 152 encode_init, |
154 encode_frame, | 153 encode_frame, |
155 //encode_end, | 154 //encode_end, |
156 .long_name = NULL_IF_CONFIG_SMALL("Cirrus Logic AccuPak"), | 155 .long_name = NULL_IF_CONFIG_SMALL("Cirrus Logic AccuPak"), |
157 }; | 156 }; |
158 | |
159 #endif //CONFIG_ENCODERS | |
160 #endif | 157 #endif |
158 #endif |