This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
wmaenc: return s->block_align instead of recalculating it
tags/n0.11
Justin Ruggles
14 years ago
parent
5d652e063b
commit
8ed7488ea3
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavcodec/wmaenc.c
+ 1
- 1
libavcodec/wmaenc.c
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 = {
Write
Preview
Loading…
Cancel
Save