changeset 7783:12a25666f1e4 libavcodec

Surround some encoding-specific functions with the appropriate encoding-specific #ifdef.
author diego
date Wed, 03 Sep 2008 12:35:17 +0000
parents 6efb15a24e91
children e3f2d90a2295
files cljr.c vcr1.c
diffstat 2 files changed, 8 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/cljr.c	Wed Sep 03 12:33:21 2008 +0000
+++ b/cljr.c	Wed Sep 03 12:35:17 2008 +0000
@@ -82,6 +82,7 @@
 }
 
 #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 @@
     return size*4;
 }
 #endif
+#endif
 
 static av_cold void common_init(AVCodecContext *avctx){
     CLJRContext * const a = avctx->priv_data;
@@ -122,6 +124,7 @@
 }
 
 #if 0
+#ifdef CONFIG_CLJR_ENCODER
 static av_cold int encode_init(AVCodecContext *avctx){
 
     common_init(avctx);
@@ -129,6 +132,7 @@
     return 0;
 }
 #endif
+#endif
 
 AVCodec cljr_decoder = {
     "cljr",
--- a/vcr1.c	Wed Sep 03 12:33:21 2008 +0000
+++ b/vcr1.c	Wed Sep 03 12:35:17 2008 +0000
@@ -114,6 +114,7 @@
 }
 
 #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 @@
     return size*4;
 }
 #endif
+#endif
 
 static av_cold void common_init(AVCodecContext *avctx){
     VCR1Context * const a = avctx->priv_data;
@@ -154,6 +156,7 @@
 }
 
 #if 0
+#ifdef CONFIG_VCR1_ENCODER
 static av_cold int encode_init(AVCodecContext *avctx){
 
     common_init(avctx);
@@ -161,6 +164,7 @@
     return 0;
 }
 #endif
+#endif
 
 AVCodec vcr1_decoder = {
     "vcr1",