1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-10 06:10:52 +02:00

svq3: Drop unused function dctcoef_get()

libavcodec/svq3.c:627:29: warning: unused function 'dctcoef_get' [-Wunused-function]
This commit is contained in:
Diego Biurrun
2016-10-31 23:49:12 +01:00
parent ee59f05408
commit 13fcdfb976

View File

@@ -622,11 +622,6 @@ static av_always_inline void hl_decode_mb_idct_luma(SVQ3Context *s,
} }
} }
static av_always_inline int dctcoef_get(int16_t *mb, int index)
{
return AV_RN16A(mb + index);
}
static av_always_inline void hl_decode_mb_predict_luma(SVQ3Context *s, static av_always_inline void hl_decode_mb_predict_luma(SVQ3Context *s,
int mb_type, int mb_type,
const int *block_offset, const int *block_offset,