diff options
author | Diego Biurrun | 2008-09-03 12:35:17 +0000 |
---|---|---|
committer | Diego Biurrun | 2008-09-03 12:35:17 +0000 |
commit | 999960c90af986fc1ef7b886ffa0b07167bbfc9e (patch) | |
tree | 99992151cd3aafe6e57e415ad5a0a7050ab056f4 /libavcodec/cljr.c | |
parent | f544a5fc84975879746f619e01b6f1e80844e59e (diff) |
Surround some encoding-specific functions with the appropriate
encoding-specific #ifdef.
Originally committed as revision 15175 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/cljr.c')
-rw-r--r-- | libavcodec/cljr.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/cljr.c b/libavcodec/cljr.c index fa2cda58d8..21a3e50f88 100644 --- a/libavcodec/cljr.c +++ b/libavcodec/cljr.c @@ -82,6 +82,7 @@ static int decode_frame(AVCodecContext *avctx, } #if 0 +#ifdef CONFIG_CLJR_ENCODER static int encode_frame(AVCodecContext *avctx, unsigned char *buf, int buf_size, void *data){ CLJRContext * const a = avctx->priv_data; AVFrame *pict = data; @@ -104,6 +105,7 @@ static int encode_frame(AVCodecContext *avctx, unsigned char *buf, int buf_size, return size*4; } #endif +#endif static av_cold void common_init(AVCodecContext *avctx){ CLJRContext * const a = avctx->priv_data; @@ -122,6 +124,7 @@ static av_cold int decode_init(AVCodecContext *avctx){ } #if 0 +#ifdef CONFIG_CLJR_ENCODER static av_cold int encode_init(AVCodecContext *avctx){ common_init(avctx); @@ -129,6 +132,7 @@ static av_cold int encode_init(AVCodecContext *avctx){ return 0; } #endif +#endif AVCodec cljr_decoder = { "cljr", |