diff options
author | Alex Converse <alex.converse@gmail.com> | 2011-01-28 06:13:49 +0000 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-01-28 11:35:11 +0000 |
commit | 5ce5dbc5f3d0bce1f8d76fea1907c91469ebdd01 (patch) | |
tree | ef92f12994c9537b1097cbb7eca62308c33c439c /libavcodec | |
parent | e62886403355614f0579a1568a53f04037c90df8 (diff) | |
download | ffmpeg-5ce5dbc5f3d0bce1f8d76fea1907c91469ebdd01.tar.gz |
Make ff_float_to_int16*_c() static.
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/dsputil.c | 4 | ||||
-rw-r--r-- | libavcodec/dsputil.h | 2 |
2 files changed, 2 insertions, 4 deletions
diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c index 03a5eeea45..84f91fc135 100644 --- a/libavcodec/dsputil.c +++ b/libavcodec/dsputil.c @@ -3913,13 +3913,13 @@ static av_always_inline int float_to_int16_one(const float *src){ return av_clip_int16(lrintf(*src)); } -void ff_float_to_int16_c(int16_t *dst, const float *src, long len){ +static void ff_float_to_int16_c(int16_t *dst, const float *src, long len){ int i; for(i=0; i<len; i++) dst[i] = float_to_int16_one(src+i); } -void ff_float_to_int16_interleave_c(int16_t *dst, const float **src, long len, int channels){ +static void ff_float_to_int16_interleave_c(int16_t *dst, const float **src, long len, int channels){ int i,j,c; if(channels==2){ for(i=0; i<len; i++){ diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index eabecf0d48..74831cf41b 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -70,8 +70,6 @@ void ff_svq3_add_idct_c(uint8_t *dst, DCTELEM *block, int stride, int qp, int dc void ff_vector_fmul_window_c(float *dst, const float *src0, const float *src1, const float *win, float add_bias, int len); -void ff_float_to_int16_c(int16_t *dst, const float *src, long len); -void ff_float_to_int16_interleave_c(int16_t *dst, const float **src, long len, int channels); /* encoding scans */ extern const uint8_t ff_alternate_horizontal_scan[64]; |