Searched refs:meml_gotten (Results 1 – 1 of 1) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | ilbcdec.c | 769 int16_t meml_gotten, Nfor, Nback, diff, start_pos; in decode_residual() local 798 meml_gotten = s->state_short_len; in decode_residual() 799 reverse_memcpy(mem + CB_MEML - 1, decresidual + start_pos, meml_gotten); in decode_residual() 800 memset(mem, 0, (int16_t) (CB_MEML - meml_gotten) * 2); in decode_residual() 839 meml_gotten = SUBL * (s->nsub + 1 - encbits->start); in decode_residual() 840 if (meml_gotten > CB_MEML) { in decode_residual() 841 meml_gotten = CB_MEML; in decode_residual() 844 reverse_memcpy(mem + CB_MEML - 1, decresidual + (encbits->start - 1) * SUBL, meml_gotten); in decode_residual() 845 memset(mem, 0, (int16_t) (CB_MEML - meml_gotten) * 2); in decode_residual()
|