# HG changeset patch # User reimar # Date 1131645945 0 # Node ID 04cf75617d0020156c4595454f226fe238949655 # Parent 363be773467498bed3bee06991cbf84e939b6df5 clear the whole vert_pred buffer for 24 bit decoding. This is currently not needed since the decoder creates only half of the pixels, but should reduce confusion for people fiddling with it *g* diff -r 363be7734674 -r 04cf75617d00 truemotion1.c --- a/truemotion1.c Thu Nov 10 13:54:32 2005 +0000 +++ b/truemotion1.c Thu Nov 10 18:05:45 2005 +0000 @@ -744,7 +744,7 @@ int index; /* clean out the line buffer */ - memset(s->vert_pred, 0, s->avctx->width * sizeof(unsigned short)); + memset(s->vert_pred, 0, s->avctx->width * sizeof(unsigned int)); GET_NEXT_INDEX();