diff options
author | Philip Gladstone <philipjsg@users.sourceforge.net> | 2002-09-12 02:34:56 +0000 |
---|---|---|
committer | Philip Gladstone <philipjsg@users.sourceforge.net> | 2002-09-12 02:34:56 +0000 |
commit | 02ac31361bdc62d5b0307dd52a42901fb7e7544f (patch) | |
tree | 3833b33c52ca50479b32238c88f89fc48e017a3a /libavcodec/imgresample.c | |
parent | 42343f7e6e92dcd7d134e288cef6d1005c9ca666 (diff) | |
download | ffmpeg-02ac31361bdc62d5b0307dd52a42901fb7e7544f.tar.gz |
Change abort() calls to av_abort() calls.
Originally committed as revision 922 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/imgresample.c')
-rw-r--r-- | libavcodec/imgresample.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/imgresample.c b/libavcodec/imgresample.c index eaba60df05..1197f858bc 100644 --- a/libavcodec/imgresample.c +++ b/libavcodec/imgresample.c @@ -66,7 +66,7 @@ static void h_resample_fast(UINT8 *dst, int dst_width, UINT8 *src, int src_width /* test */ if ((src_pos >> POS_FRAC_BITS) < 0 || (src_pos >> POS_FRAC_BITS) > (src_width - NB_TAPS)) - abort(); + av_abort(); #endif s = src + (src_pos >> POS_FRAC_BITS); phase = get_phase(src_pos); |