1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

avcodec/ilbcdec: fix typo, fixes CID 1439653

This commit is contained in:
Paul B Mahol 2018-09-24 09:20:31 +02:00
parent 0f36ad514c
commit 8d29930767

View File

@ -135,7 +135,7 @@ static int unpack_frame(ILBCContext *s)
frame->lsf[1] = get_bits(gb, 7); frame->lsf[1] = get_bits(gb, 7);
frame->lsf[2] = get_bits(gb, 7); frame->lsf[2] = get_bits(gb, 7);
if (s->mode = 20) { if (s->mode == 20) {
frame->start = get_bits(gb, 2); frame->start = get_bits(gb, 2);
frame->state_first = get_bits1(gb); frame->state_first = get_bits1(gb);
frame->ifm = get_bits(gb, 6); frame->ifm = get_bits(gb, 6);