From 737f06577ca93b9e4751aacf40831dd3e0d0104f Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Fri, 17 Jun 2016 21:08:23 +0200 Subject: avcodec/snow: Remove unused function Signed-off-by: Michael Niedermayer --- libavcodec/snow.h | 24 ------------------------ 1 file changed, 24 deletions(-) (limited to 'libavcodec/snow.h') diff --git a/libavcodec/snow.h b/libavcodec/snow.h index d126d68a49..00d7c4211d 100644 --- a/libavcodec/snow.h +++ b/libavcodec/snow.h @@ -250,30 +250,6 @@ int ff_snow_get_buffer(SnowContext *s, AVFrame *frame); /* common inline functions */ //XXX doublecheck all of them should stay inlined -static inline void snow_set_blocks(SnowContext *s, int level, int x, int y, int l, int cb, int cr, int mx, int my, int ref, int type){ - const int w= s->b_width << s->block_max_depth; - const int rem_depth= s->block_max_depth - level; - const int index= (x + y*w) << rem_depth; - const int block_w= 1<block[index + i + j*w]= block; - } - } -} - static inline void pred_mv(SnowContext *s, int *mx, int *my, int ref, const BlockNode *left, const BlockNode *top, const BlockNode *tr){ if(s->ref_frames == 1){ -- cgit v1.2.3