summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorJason Garrett-Glaser <darkshikari@gmail.com>2010-07-22 12:15:29 +0000
committerJason Garrett-Glaser <darkshikari@gmail.com>2010-07-22 12:15:29 +0000
commitb946111fde80c3ac80fdc4ac5412ba3843fa1b07 (patch)
tree57e3d0ed97428ac83d5d5ed345d8cb3777ed454b /libavcodec
parentb9a7186bf43a7f65d9b2525713a67d120bee596a (diff)
Eliminate a pointless memset for intra blocks in P-frames in VP8
Originally committed as revision 24429 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/vp8.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/libavcodec/vp8.c b/libavcodec/vp8.c
index 891c7ec4a0..8b71baf694 100644
--- a/libavcodec/vp8.c
+++ b/libavcodec/vp8.c
@@ -746,8 +746,7 @@ static void decode_mb_mode(VP8Context *s, VP8Macroblock *mb, int mb_x, int mb_y,
mb->mv = mb->bmv[decode_splitmvs(s, c, mb, &best) - 1];
break;
case VP8_MVMODE_ZERO:
- mb->mv.x = 0;
- mb->mv.y = 0;
+ AV_WN32A(&mb->mv, 0);
break;
case VP8_MVMODE_NEAREST:
clamp_mv(s, &mb->mv, &near[0], mb_x, mb_y);
@@ -773,6 +772,8 @@ static void decode_mb_mode(VP8Context *s, VP8Macroblock *mb, int mb_x, int mb_y,
s->chroma_pred_mode = vp8_rac_get_tree(c, vp8_pred8x8c_tree, s->prob->pred8x8c);
mb->ref_frame = VP56_FRAME_CURRENT;
+ mb->partitioning = VP8_SPLITMVMODE_NONE;
+ AV_WN32A(&mb->bmv[0], 0);
}
}
@@ -1496,12 +1497,10 @@ static int vp8_decode_frame(AVCodecContext *avctx, void *data, int *data_size,
AV_ZERO64(s->non_zero_count_cache[4]); // chroma
}
- if (mb->mode <= MODE_I4x4) {
+ if (mb->mode <= MODE_I4x4)
intra_predict(s, dst, mb, intra4x4_mb, mb_x, mb_y);
- memset(mb->bmv, 0, sizeof(mb->bmv));
- } else {
+ else
inter_predict(s, dst, mb, mb_x, mb_y);
- }
if (!mb->skip) {
idct_mb(s, dst[0], dst[1], dst[2], mb);