Browse Source

avcodec/ilbcdec: fix typo, fixes CID 1439653

tags/n4.1
Paul B Mahol 7 years ago
parent
commit
8d29930767
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/ilbcdec.c

+ 1
- 1
libavcodec/ilbcdec.c View File

@@ -135,7 +135,7 @@ static int unpack_frame(ILBCContext *s)
frame->lsf[1] = 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->state_first = get_bits1(gb);
frame->ifm = get_bits(gb, 6);


Loading…
Cancel
Save