diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2004-09-24 18:12:43 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-09-24 18:12:43 +0000 |
commit | d7d51926dde9732650788b170dbcf964f44235e3 (patch) | |
tree | b3368d2a74498c12213a2871e917063eab0ab822 | |
parent | 3c00436b3eedca1f5ebcc005ac2d019ae24b0d1a (diff) | |
download | ffmpeg-d7d51926dde9732650788b170dbcf964f44235e3.tar.gz |
unused
Originally committed as revision 3502 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/snow.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/snow.c b/libavcodec/snow.c index f72b40bb09..eaeb98cfc3 100644 --- a/libavcodec/snow.c +++ b/libavcodec/snow.c @@ -409,7 +409,6 @@ typedef struct SnowContext{ int spatial_decomposition_count; int temporal_decomposition_count; DWTELEM *spatial_dwt_buffer; - DWTELEM *pred_buffer; int colorspace_type; int chroma_h_shift; int chroma_v_shift; @@ -2514,7 +2513,6 @@ static int common_init(AVCodecContext *avctx){ height= s->avctx->height; s->spatial_dwt_buffer= av_mallocz(width*height*sizeof(DWTELEM)); - s->pred_buffer= av_mallocz(width*height*sizeof(DWTELEM)); s->mv_scale= (s->avctx->flags & CODEC_FLAG_QPEL) ? 2 : 4; s->block_max_depth= (s->avctx->flags & CODEC_FLAG_4MV) ? 1 : 0; |