avcodec/nellymoserenc: replace assert by av_assert1()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2015-02-01 15:41:05 +01:00
parent d0045312c3
commit 0182e5a740
1 changed files with 1 additions and 1 deletions

View File

@ -271,7 +271,7 @@ static void get_exponent_dynamic(NellyMoserEncodeContext *s, float *cand, int *i
}
}
}
assert(c); //FIXME
av_assert1(c); //FIXME
}
best_val = INFINITY;