Commit 61004775 authored by ramiro's avatar ramiro

nellymoserenc: flush PutBitContext after use.

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@15596 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent f15af35a
......@@ -331,6 +331,8 @@ static void encode_block(NellyMoserEncodeContext *s, unsigned char *output, int
if (!block)
put_bits(&pb, NELLY_HEADER_BITS + NELLY_DETAIL_BITS - put_bits_count(&pb), 0);
}
flush_put_bits(&pb);
}
static int encode_frame(AVCodecContext *avctx, uint8_t *frame, int buf_size, void *data)
......
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