Commit 4b6aa45d authored by Rafaël Carré's avatar Rafaël Carré Committed by Jean-Paul Saman

Hide some internal functions of resizer

Signed-off-by: Jean-Paul Saman's avatarJean-Paul Saman <jean-paul.saman@m2x.nl>
parent db5b5833
......@@ -29,7 +29,7 @@
#include <assert.h>
void Resize_coeff( decoder_t *p_dec,
static void Resize_coeff( decoder_t *p_dec,
unsigned int *i_width, unsigned int *i_height )
{
unsigned int i_vidw = p_dec->fmt_out.video.i_width;
......@@ -77,7 +77,7 @@ void Resize_coeff( decoder_t *p_dec,
/* open() a framebuffer by its name (NOT device path) */
int OpenFB( const char *psz_name )
static int OpenFB( const char *psz_name )
{
int i_fd = -1;
int i_tries = 0; /* begin with /dev/fb0 */
......@@ -119,7 +119,7 @@ static float bicubic_core( float s )
}
void get_coeffs( short coefs[32], unsigned int i_in,
static void get_coeffs( short coefs[32], unsigned int i_in,
unsigned int i_out )
{
assert( i_out > 1 );
......
......@@ -45,9 +45,6 @@ typedef struct
vlc_bool_t b_direct;
} davinci_resizer_t;
void Resize_coeff( decoder_t *, unsigned int *, unsigned int * );
int OpenFB( const char *psz_name );
void get_coeffs( short [32], unsigned int, unsigned int );
void Resize( decoder_t *, vlc_bool_t, davinci_resizer_t *, davinci_fb_t *,
XDM_BufDesc );
int DavinciInit( decoder_t *, davinci_fb_t *, davinci_resizer_t * );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment