[FFmpeg-cvslog] r21813 - trunk/libavcodec/h264.h
astrange
subversion
Sat Feb 13 21:57:13 CET 2010
Author: astrange
Date: Sat Feb 13 21:57:13 2010
New Revision: 21813
Log:
Fix integer overflow warnings in h264.h
Fixes:
h264.h: In function 'fill_filter_caches':
h264.h:1216:73: warning: integer overflow in expression
h264.h:1307:81: warning: integer overflow in expression
Modified:
trunk/libavcodec/h264.h
Modified: trunk/libavcodec/h264.h
==============================================================================
--- trunk/libavcodec/h264.h Sat Feb 13 21:13:54 2010 (r21812)
+++ trunk/libavcodec/h264.h Sat Feb 13 21:57:13 2010 (r21813)
@@ -1215,7 +1215,7 @@ static int fill_filter_caches(H264Contex
*(uint32_t*)&h->ref_cache[list][scan8[ 0]] =
*(uint32_t*)&h->ref_cache[list][scan8[ 2]] =
*(uint32_t*)&h->ref_cache[list][scan8[ 8]] =
- *(uint32_t*)&h->ref_cache[list][scan8[10]] = ((LIST_NOT_USED)&0xFF)*0x01010101;
+ *(uint32_t*)&h->ref_cache[list][scan8[10]] = ((LIST_NOT_USED)&0xFF)*0x01010101U;
continue;
}
@@ -1306,7 +1306,7 @@ static int fill_filter_caches(H264Contex
h->ref_cache[list][scan8[0] + 3 - 1*8]= ref2frm[list][s->current_picture.ref_index[list][b8_xy + 1]];
}else{
AV_ZERO128(h->mv_cache[list][scan8[0] + 0 - 1*8]);
- *(uint32_t*)&h->ref_cache[list][scan8[0] + 0 - 1*8]= ((LIST_NOT_USED)&0xFF)*0x01010101;
+ *(uint32_t*)&h->ref_cache[list][scan8[0] + 0 - 1*8]= ((LIST_NOT_USED)&0xFF)*0x01010101U;
}
if(!IS_INTERLACED(mb_type^left_type[0])){
More information about the ffmpeg-cvslog
mailing list