changeset 653:714795876872 libavcodec

Change abort() calls to av_abort() calls.
author philipjsg
date Thu, 12 Sep 2002 02:34:56 +0000
parents c7647afc3ce5
children 850098147a3c
files imgresample.c mpegaudio.c
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
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);
--- a/mpegaudio.c	Thu Sep 12 00:27:08 2002 +0000
+++ b/mpegaudio.c	Thu Sep 12 02:34:56 2002 +0000
@@ -454,7 +454,7 @@
             sf[1] = sf[2] = sf[0];
             break;
         default:
-            abort();
+            av_abort();
         }
         
 #if 0