[FFmpeg-cvslog] r22070 - trunk/libavcodec/h264.h
michael
subversion
Fri Feb 26 03:54:03 CET 2010
Author: michael
Date: Fri Feb 26 03:54:03 2010
New Revision: 22070
Log:
Remove 3 mv_cache zeroing instructions that zeroed the right side.
This seems unneeded as nothing seems to ever set it to non zero values.
Modified:
trunk/libavcodec/h264.h
Modified: trunk/libavcodec/h264.h
==============================================================================
--- trunk/libavcodec/h264.h Fri Feb 26 02:38:12 2010 (r22069)
+++ trunk/libavcodec/h264.h Fri Feb 26 03:54:03 2010 (r22070)
@@ -1042,9 +1042,6 @@ static void fill_decode_caches(H264Conte
h->ref_cache[list][scan8[13]+1] = //FIXME remove past 3 (init somewhere else)
h->ref_cache[list][scan8[4 ]] =
h->ref_cache[list][scan8[12]] = PART_NOT_AVAILABLE;
- AV_ZERO32(h->mv_cache [list][scan8[5 ]+1]);
- AV_ZERO32(h->mv_cache [list][scan8[7 ]+1]);
- AV_ZERO32(h->mv_cache [list][scan8[13]+1]); //FIXME remove past 3 (init somewhere else)
AV_ZERO32(h->mv_cache [list][scan8[4 ]]);
AV_ZERO32(h->mv_cache [list][scan8[12]]);
More information about the ffmpeg-cvslog
mailing list