[FFmpeg-cvslog] r22496 - trunk/libavcodec/vp3.c
conrad
subversion
Sat Mar 13 06:56:08 CET 2010
Author: conrad
Date: Sat Mar 13 06:56:08 2010
New Revision: 22496
Log:
vp3: Use memset to clear the fragment array
Modified:
trunk/libavcodec/vp3.c
Modified: trunk/libavcodec/vp3.c
==============================================================================
--- trunk/libavcodec/vp3.c Sat Mar 13 06:56:05 2010 (r22495)
+++ trunk/libavcodec/vp3.c Sat Mar 13 06:56:08 2010 (r22496)
@@ -286,22 +286,6 @@ static int init_block_mapping(Vp3DecodeC
}
/*
- * This function wipes out all of the fragment data.
- */
-static void init_frame(Vp3DecodeContext *s, GetBitContext *gb)
-{
- int i;
-
- /* zero out all of the fragment information */
- for (i = 0; i < s->fragment_count; i++) {
- s->all_fragments[i].motion_x = 0;
- s->all_fragments[i].motion_y = 0;
- s->all_fragments[i].dc = 0;
- s->all_fragments[i].qpi = 0;
- }
-}
-
-/*
* This function sets up the dequantization tables used for a particular
* frame.
*/
@@ -1771,7 +1755,7 @@ static int vp3_decode_frame(AVCodecConte
s->current_frame.qscale_table= s->qscale_table; //FIXME allocate individual tables per AVFrame
s->current_frame.qstride= 0;
- init_frame(s, &gb);
+ memset(s->all_fragments, 0, s->fragment_count * sizeof(Vp3Fragment));
if (unpack_superblocks(s, &gb)){
av_log(s->avctx, AV_LOG_ERROR, "error in unpack_superblocks\n");
More information about the ffmpeg-cvslog
mailing list