Browse Source

Make ff_float_to_int16*_c() static.

Signed-off-by: Mans Rullgard <mans@mansr.com>
(cherry picked from commit 5ce5dbc5f3)
tags/n0.8
Alex Converse Michael Niedermayer 14 years ago
parent
commit
b5f83debf5
2 changed files with 2 additions and 4 deletions
  1. +2
    -2
      libavcodec/dsputil.c
  2. +0
    -2
      libavcodec/dsputil.h

+ 2
- 2
libavcodec/dsputil.c View File

@@ -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++){


+ 0
- 2
libavcodec/dsputil.h View File

@@ -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];


Loading…
Cancel
Save