mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-13 21:28:01 +02:00
wmaenc: change another assert to av_assert
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
ac2d3b0f6e
commit
e704ab3d5f
@ -336,7 +336,7 @@ static int encode_frame(WMACodecContext *s, float (*src_coefs)[BLOCK_MAX_SIZE],
|
|||||||
init_put_bits(&s->pb, buf, buf_size);
|
init_put_bits(&s->pb, buf, buf_size);
|
||||||
|
|
||||||
if (s->use_bit_reservoir) {
|
if (s->use_bit_reservoir) {
|
||||||
assert(0);//FIXME not implemented
|
av_assert0(0);//FIXME not implemented
|
||||||
}else{
|
}else{
|
||||||
if(encode_block(s, src_coefs, total_gain) < 0)
|
if(encode_block(s, src_coefs, total_gain) < 0)
|
||||||
return INT_MAX;
|
return INT_MAX;
|
||||||
|
Loading…
Reference in New Issue
Block a user