Commit e704ab3d authored by Michael Niedermayer's avatar Michael Niedermayer

wmaenc: change another assert to av_assert

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent ac2d3b0f
......@@ -336,7 +336,7 @@ static int encode_frame(WMACodecContext *s, float (*src_coefs)[BLOCK_MAX_SIZE],
init_put_bits(&s->pb, buf, buf_size);
if (s->use_bit_reservoir) {
assert(0);//FIXME not implemented
av_assert0(0);//FIXME not implemented
}else{
if(encode_block(s, src_coefs, total_gain) < 0)
return INT_MAX;
......
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