wmaenc: return s->block_align instead of recalculating it

This commit is contained in:
Justin Ruggles 2012-03-02 16:55:45 -05:00
parent 5d652e063b
commit 8ed7488ea3
1 changed files with 1 additions and 1 deletions

View File

@ -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 = {