Commit 2ceaffc6 authored by Michael Niedermayer's avatar Michael Niedermayer

resample2: use av_assert()

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 7309451d
......@@ -25,6 +25,7 @@
* @author Michael Niedermayer <michaelni@gmx.at>
*/
#include "libavutil/avassert.h"
#include "avcodec.h"
#include "dsputil.h"
......@@ -301,7 +302,7 @@ int av_resample(AVResampleContext *c, short *dst, short *src, int *consumed, int
if(compensation_distance){
compensation_distance -= dst_index;
assert(compensation_distance > 0);
av_assert2(compensation_distance > 0);
}
if(update_ctx){
c->frac= frac;
......
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