Browse Source

wmaenc: change another assert to av_assert

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n1.0
Michael Niedermayer 13 years ago
parent
commit
e704ab3d5f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/wmaenc.c

+ 1
- 1
libavcodec/wmaenc.c View File

@@ -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;


Loading…
Cancel
Save