# HG changeset patch # User aurel # Date 1193006645 0 # Node ID 94b29c56556b3661e948fd9e188c2e63c440fcf8 # Parent 342ab05e7d05286abfe40b5784206dbbf508daaf remove some useless initializations (the whole context is initialized to 0) diff -r 342ab05e7d05 -r 94b29c56556b adpcm.c --- a/adpcm.c Sun Oct 21 22:16:28 2007 +0000 +++ b/adpcm.c Sun Oct 21 22:44:05 2007 +0000 @@ -640,11 +640,6 @@ return -1; } - c->channel = 0; - c->status[0].predictor = c->status[1].predictor = 0; - c->status[0].step_index = c->status[1].step_index = 0; - c->status[0].step = c->status[1].step = 0; - switch(avctx->codec->id) { case CODEC_ID_ADPCM_CT: c->status[0].step = c->status[1].step = 511;