1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

Change abort() calls to av_abort() calls.

Originally committed as revision 922 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Philip Gladstone 2002-09-12 02:34:56 +00:00
parent 42343f7e6e
commit 02ac31361b
2 changed files with 2 additions and 2 deletions

View File

@ -66,7 +66,7 @@ static void h_resample_fast(UINT8 *dst, int dst_width, UINT8 *src, int src_width
/* test */ /* test */
if ((src_pos >> POS_FRAC_BITS) < 0 || if ((src_pos >> POS_FRAC_BITS) < 0 ||
(src_pos >> POS_FRAC_BITS) > (src_width - NB_TAPS)) (src_pos >> POS_FRAC_BITS) > (src_width - NB_TAPS))
abort(); av_abort();
#endif #endif
s = src + (src_pos >> POS_FRAC_BITS); s = src + (src_pos >> POS_FRAC_BITS);
phase = get_phase(src_pos); phase = get_phase(src_pos);

View File

@ -454,7 +454,7 @@ static void compute_scale_factors(unsigned char scale_code[SBLIMIT],
sf[1] = sf[2] = sf[0]; sf[1] = sf[2] = sf[0];
break; break;
default: default:
abort(); av_abort();
} }
#if 0 #if 0