Add av_unused to decode_mb_skip declaration to fix the following warning:

libavcodec/h264.h:1260: warning: ‘decode_mb_skip’ defined but not used
patch by Eli Friedman, eli.friedman gmail com

Originally committed as revision 24069 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Eli Friedman 2010-07-06 07:40:35 +00:00 committed by Diego Biurrun
parent 86e41bc300
commit 9049fa5479

View File

@ -1257,7 +1257,7 @@ static inline int get_dct8x8_allowed(H264Context *h){
/**
* decodes a P_SKIP or B_SKIP macroblock
*/
static void decode_mb_skip(H264Context *h){
static void av_unused decode_mb_skip(H264Context *h){
MpegEncContext * const s = &h->s;
const int mb_xy= h->mb_xy;
int mb_type=0;