Mercurial > libavcodec.hg
changeset 2620:08cce4785567 libavcodec
remove duplicate clip to 8bit function
author | michael |
---|---|
date | Wed, 20 Apr 2005 10:05:15 +0000 |
parents | c39756a516a5 |
children | 0a55e35d3e5e |
files | common.h mpegvideo.c |
diffstat | 2 files changed, 1 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/common.h Wed Apr 20 09:52:04 2005 +0000 +++ b/common.h Wed Apr 20 10:05:15 2005 +0000 @@ -501,8 +501,6 @@ #define STOP_TIMER(id) {} #endif -#define CLAMP_TO_8BIT(d) ((d > 0xff) ? 0xff : (d < 0) ? 0 : d) - /* avoid usage of various functions */ #define malloc please_use_av_malloc #define free please_use_av_free
--- a/mpegvideo.c Wed Apr 20 09:52:04 2005 +0000 +++ b/mpegvideo.c Wed Apr 20 10:05:15 2005 +0000 @@ -5367,7 +5367,7 @@ for(i=1;i<64;i++){ int j= s->dsp.idct_permutation[i]; - s->intra_matrix[j] = CLAMP_TO_8BIT((ff_mpeg1_default_intra_matrix[i] * s->qscale) >> 3); + s->intra_matrix[j] = clip_uint8((ff_mpeg1_default_intra_matrix[i] * s->qscale) >> 3); } convert_matrix(&s->dsp, s->q_intra_matrix, s->q_intra_matrix16, s->intra_matrix, s->intra_quant_bias, 8, 8, 1);