rbspeex: make local functions static.

This commit is contained in:
Dominik Riebeling 2012-01-12 20:49:19 +01:00
parent eb2ea7f9ad
commit 420ae56cec
2 changed files with 4 additions and 3 deletions

View file

@ -25,7 +25,10 @@
#include <string.h>
#include <stdbool.h>
#include "rbspeex.h"
#include "rbspeex.h"
static unsigned int get_long_le(unsigned char *p);
static bool get_wave_metadata(FILE *fd, int *numchan, int *bps, int *sr, int *numsamples);
/* Read an unaligned 32-bit little endian long from buffer. */
unsigned int get_long_le(unsigned char *p)

View file

@ -27,8 +27,6 @@
extern "C" {
#endif
unsigned int get_long_le(unsigned char *p);
bool get_wave_metadata(FILE *fd, int *numchan, int *bps, int *sr, int *numsamples);
bool encode_file(FILE *fin, FILE *fout, float quality, int complexity,
bool narrowband, float volume, char *errstr, size_t errlen);