summaryrefslogtreecommitdiffstats
path: root/libavcodec/cljr.c
diff options
context:
space:
mode:
authorFabrice Bellard <fabrice@bellard.org>2003-08-24 22:08:22 +0000
committerFabrice Bellard <fabrice@bellard.org>2003-08-24 22:08:22 +0000
commitd9c533a521977ac277dadb3a0fe6176e6806ffa7 (patch)
tree970d6152b42280ada85b5458053f8a74826520ad /libavcodec/cljr.c
parent228ef9dde15625e21daa247e6a832d05c041b2a9 (diff)
downloadffmpeg-streaming-d9c533a521977ac277dadb3a0fe6176e6806ffa7.zip
ffmpeg-streaming-d9c533a521977ac277dadb3a0fe6176e6806ffa7.tar.gz
removed unused variables
Originally committed as revision 2158 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/cljr.c')
-rw-r--r--libavcodec/cljr.c14
1 files changed, 3 insertions, 11 deletions
diff --git a/libavcodec/cljr.c b/libavcodec/cljr.c
index cfefb4a..c7c614e 100644
--- a/libavcodec/cljr.c
+++ b/libavcodec/cljr.c
@@ -41,8 +41,7 @@ static int decode_frame(AVCodecContext *avctx,
CLJRContext * const a = avctx->priv_data;
AVFrame *picture = data;
AVFrame * const p= (AVFrame*)&a->picture;
- uint8_t *bytestream= buf;
- int i, x, y;
+ int x, y;
*data_size = 0;
@@ -65,7 +64,6 @@ static int decode_frame(AVCodecContext *avctx,
init_get_bits(&a->gb, buf, buf_size);
for(y=0; y<avctx->height; y++){
- int offset;
uint8_t *luma= &a->picture.data[0][ y*a->picture.linesize[0] ];
uint8_t *cb= &a->picture.data[1][ y*a->picture.linesize[1] ];
uint8_t *cr= &a->picture.data[2][ y*a->picture.linesize[2] ];
@@ -120,10 +118,7 @@ static void common_init(AVCodecContext *avctx){
}
static int decode_init(AVCodecContext *avctx){
- CLJRContext * const a = avctx->priv_data;
- AVFrame *p= (AVFrame*)&a->picture;
- int i;
-
+
common_init(avctx);
avctx->pix_fmt= PIX_FMT_YUV411P;
@@ -132,16 +127,13 @@ static int decode_init(AVCodecContext *avctx){
}
static int encode_init(AVCodecContext *avctx){
- CLJRContext * const a = avctx->priv_data;
- int i;
-
+
common_init(avctx);
return 0;
}
static int decode_end(AVCodecContext *avctx){
- CLJRContext * const a = avctx->priv_data;
avcodec_default_free_buffers(avctx);
OpenPOWER on IntegriCloud