Commit 9049fa54 authored by Eli Friedman's avatar Eli Friedman Committed by Diego Biurrun

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
parent 86e41bc3
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment