From f66e4f5f9eac8eb022fad4f85d8d2e99b26c254f Mon Sep 17 00:00:00 2001 From: Reimar Döffinger Date: Sun, 25 Feb 2007 10:27:12 +0000 Subject: Add av_ prefix to clip functions Originally committed as revision 8122 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/cook.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/cook.c') diff --git a/libavcodec/cook.c b/libavcodec/cook.c index edfe513328..9a3221414a 100644 --- a/libavcodec/cook.c +++ b/libavcodec/cook.c @@ -998,7 +998,7 @@ mlt_compensate_output(COOKContext *q, float *decode_buffer, */ for (j = 0; j < q->samples_per_channel; j++) { out[chan + q->nb_channels * j] = - clip(lrintf(q->mono_mdct_output[j]), -32768, 32767); + av_clip(lrintf(q->mono_mdct_output[j]), -32768, 32767); } } -- cgit v1.2.3