diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2007-02-25 10:27:43 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2007-02-25 10:27:43 +0000 |
commit | adcec46a836ae6843953cff70407483eb0750159 (patch) | |
tree | a7bd00dc67d47534d7475d496e9296f55aa317b3 /libswscale/yuv2rgb_init.c | |
parent | f66e4f5f9eac8eb022fad4f85d8d2e99b26c254f (diff) | |
download | ffmpeg-adcec46a836ae6843953cff70407483eb0750159.tar.gz |
Add av_ prefix to clip functions
Originally committed as revision 22339 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale/yuv2rgb_init.c')
-rw-r--r-- | libswscale/yuv2rgb_init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/yuv2rgb_init.c b/libswscale/yuv2rgb_init.c index 0db096f813..14c46b0e40 100644 --- a/libswscale/yuv2rgb_init.c +++ b/libswscale/yuv2rgb_init.c @@ -277,7 +277,7 @@ int yuv2rgb_c_init_tables(SwsContext *c, const int inv_table[4], int fullRange, for (i = 0; i < 1024; i++) { value = (cy*(((i - YTABLE_MIN)<<16) - oy) + (1<<31))>>32; - ytable[i] = clip_uint8(value); + ytable[i] = av_clip_uint8(value); } entry_size = get_entry_size(fmt_depth(c->dstFormat)); |