Commit c5e22b1c authored by michael's avatar michael

Remove redundant zeroing (the context is memset(0)).


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13791 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent a7bca56b
...@@ -273,22 +273,14 @@ static av_cold int g726_reset(G726Context* c, int index) ...@@ -273,22 +273,14 @@ static av_cold int g726_reset(G726Context* c, int index)
c->tbls = &G726Tables_pool[index]; c->tbls = &G726Tables_pool[index];
for (i=0; i<2; i++) { for (i=0; i<2; i++) {
i2f(0, &c->sr[i]); i2f(0, &c->sr[i]);
c->a[i] = 0;
c->pk[i] = 1; c->pk[i] = 1;
} }
for (i=0; i<6; i++) { for (i=0; i<6; i++) {
i2f(0, &c->dq[i]); i2f(0, &c->dq[i]);
c->b[i] = 0;
} }
c->ap = 0;
c->dms = 0;
c->dml = 0;
c->yu = 544; c->yu = 544;
c->yl = 34816; c->yl = 34816;
c->td = 0;
c->se = 0;
c->sez = 0;
c->y = 544; c->y = 544;
return 0; return 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment