Commit fce34b5a authored by diego's avatar diego

Surround some encoding-specific functions with the appropriate

encoding-specific #ifdef.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@15175 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 8b99271c
...@@ -82,6 +82,7 @@ static int decode_frame(AVCodecContext *avctx, ...@@ -82,6 +82,7 @@ static int decode_frame(AVCodecContext *avctx,
} }
#if 0 #if 0
#ifdef CONFIG_CLJR_ENCODER
static int encode_frame(AVCodecContext *avctx, unsigned char *buf, int buf_size, void *data){ static int encode_frame(AVCodecContext *avctx, unsigned char *buf, int buf_size, void *data){
CLJRContext * const a = avctx->priv_data; CLJRContext * const a = avctx->priv_data;
AVFrame *pict = data; AVFrame *pict = data;
...@@ -104,6 +105,7 @@ static int encode_frame(AVCodecContext *avctx, unsigned char *buf, int buf_size, ...@@ -104,6 +105,7 @@ static int encode_frame(AVCodecContext *avctx, unsigned char *buf, int buf_size,
return size*4; return size*4;
} }
#endif #endif
#endif
static av_cold void common_init(AVCodecContext *avctx){ static av_cold void common_init(AVCodecContext *avctx){
CLJRContext * const a = avctx->priv_data; CLJRContext * const a = avctx->priv_data;
...@@ -122,6 +124,7 @@ static av_cold int decode_init(AVCodecContext *avctx){ ...@@ -122,6 +124,7 @@ static av_cold int decode_init(AVCodecContext *avctx){
} }
#if 0 #if 0
#ifdef CONFIG_CLJR_ENCODER
static av_cold int encode_init(AVCodecContext *avctx){ static av_cold int encode_init(AVCodecContext *avctx){
common_init(avctx); common_init(avctx);
...@@ -129,6 +132,7 @@ static av_cold int encode_init(AVCodecContext *avctx){ ...@@ -129,6 +132,7 @@ static av_cold int encode_init(AVCodecContext *avctx){
return 0; return 0;
} }
#endif #endif
#endif
AVCodec cljr_decoder = { AVCodec cljr_decoder = {
"cljr", "cljr",
......
...@@ -114,6 +114,7 @@ static int decode_frame(AVCodecContext *avctx, ...@@ -114,6 +114,7 @@ static int decode_frame(AVCodecContext *avctx,
} }
#if 0 #if 0
#ifdef CONFIG_VCR1_ENCODER
static int encode_frame(AVCodecContext *avctx, unsigned char *buf, int buf_size, void *data){ static int encode_frame(AVCodecContext *avctx, unsigned char *buf, int buf_size, void *data){
VCR1Context * const a = avctx->priv_data; VCR1Context * const a = avctx->priv_data;
AVFrame *pict = data; AVFrame *pict = data;
...@@ -136,6 +137,7 @@ static int encode_frame(AVCodecContext *avctx, unsigned char *buf, int buf_size, ...@@ -136,6 +137,7 @@ static int encode_frame(AVCodecContext *avctx, unsigned char *buf, int buf_size,
return size*4; return size*4;
} }
#endif #endif
#endif
static av_cold void common_init(AVCodecContext *avctx){ static av_cold void common_init(AVCodecContext *avctx){
VCR1Context * const a = avctx->priv_data; VCR1Context * const a = avctx->priv_data;
...@@ -154,6 +156,7 @@ static av_cold int decode_init(AVCodecContext *avctx){ ...@@ -154,6 +156,7 @@ static av_cold int decode_init(AVCodecContext *avctx){
} }
#if 0 #if 0
#ifdef CONFIG_VCR1_ENCODER
static av_cold int encode_init(AVCodecContext *avctx){ static av_cold int encode_init(AVCodecContext *avctx){
common_init(avctx); common_init(avctx);
...@@ -161,6 +164,7 @@ static av_cold int encode_init(AVCodecContext *avctx){ ...@@ -161,6 +164,7 @@ static av_cold int encode_init(AVCodecContext *avctx){
return 0; return 0;
} }
#endif #endif
#endif
AVCodec vcr1_decoder = { AVCodec vcr1_decoder = {
"vcr1", "vcr1",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment