summaryrefslogtreecommitdiff
path: root/libavcodec/vcr1.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2008-09-03 12:35:17 +0000
committerDiego Biurrun <diego@biurrun.de>2008-09-03 12:35:17 +0000
commit999960c90af986fc1ef7b886ffa0b07167bbfc9e (patch)
tree99992151cd3aafe6e57e415ad5a0a7050ab056f4 /libavcodec/vcr1.c
parentf544a5fc84975879746f619e01b6f1e80844e59e (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/vcr1.c')
-rw-r--r--libavcodec/vcr1.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/vcr1.c b/libavcodec/vcr1.c
index 5022fe7ba5..3c6cee5bc2 100644
--- a/libavcodec/vcr1.c
+++ b/libavcodec/vcr1.c
@@ -114,6 +114,7 @@ static int decode_frame(AVCodecContext *avctx,
}
#if 0
+#ifdef CONFIG_VCR1_ENCODER
static int encode_frame(AVCodecContext *avctx, unsigned char *buf, int buf_size, void *data){
VCR1Context * const a = avctx->priv_data;
AVFrame *pict = data;
@@ -136,6 +137,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){
VCR1Context * const a = avctx->priv_data;
@@ -154,6 +156,7 @@ static av_cold int decode_init(AVCodecContext *avctx){
}
#if 0
+#ifdef CONFIG_VCR1_ENCODER
static av_cold int encode_init(AVCodecContext *avctx){
common_init(avctx);
@@ -161,6 +164,7 @@ static av_cold int encode_init(AVCodecContext *avctx){
return 0;
}
#endif
+#endif
AVCodec vcr1_decoder = {
"vcr1",