diff imgresample.c @ 653:714795876872 libavcodec

Change abort() calls to av_abort() calls.
author philipjsg
date Thu, 12 Sep 2002 02:34:56 +0000
parents 641708b5c33c
children a408778eff87
line wrap: on
line diff
--- a/imgresample.c	Thu Sep 12 00:27:08 2002 +0000
+++ b/imgresample.c	Thu Sep 12 02:34:56 2002 +0000
@@ -66,7 +66,7 @@
         /* 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);