mirror of https://git.ffmpeg.org/ffmpeg.git
wmaenc: return s->block_align instead of recalculating it
This commit is contained in:
parent
5d652e063b
commit
8ed7488ea3
|
@ -404,7 +404,7 @@ static int encode_superframe(AVCodecContext *avctx,
|
|||
put_bits(&s->pb, 8, 'N');
|
||||
|
||||
flush_put_bits(&s->pb);
|
||||
return put_bits_ptr(&s->pb) - s->pb.buf;
|
||||
return s->block_align;
|
||||
}
|
||||
|
||||
AVCodec ff_wmav1_encoder = {
|
||||
|
|
Loading…
Reference in New Issue