mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-27 18:02:11 +00:00
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:
parent
86e41bc300
commit
9049fa5479
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user