[FFmpeg-cvslog] r24069 - trunk/libavcodec/h264.h
diego
subversion
Tue Jul 6 09:40:36 CEST 2010
Author: diego
Date: Tue Jul 6 09:40:35 2010
New Revision: 24069
Log:
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
Modified:
trunk/libavcodec/h264.h
Modified: trunk/libavcodec/h264.h
==============================================================================
--- trunk/libavcodec/h264.h Tue Jul 6 02:06:15 2010 (r24068)
+++ trunk/libavcodec/h264.h Tue Jul 6 09:40:35 2010 (r24069)
@@ -1257,7 +1257,7 @@ static inline int get_dct8x8_allowed(H26
/**
* 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;
More information about the ffmpeg-cvslog
mailing list