mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-14 02:27:39 -04:00
rbspeex: make local functions static.
This commit is contained in:
parent
eb2ea7f9ad
commit
420ae56cec
2 changed files with 4 additions and 3 deletions
|
@ -27,6 +27,9 @@
|
||||||
|
|
||||||
#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. */
|
/* Read an unaligned 32-bit little endian long from buffer. */
|
||||||
unsigned int get_long_le(unsigned char *p)
|
unsigned int get_long_le(unsigned char *p)
|
||||||
{
|
{
|
||||||
|
|
|
@ -27,8 +27,6 @@
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#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 encode_file(FILE *fin, FILE *fout, float quality, int complexity,
|
||||||
bool narrowband, float volume, char *errstr, size_t errlen);
|
bool narrowband, float volume, char *errstr, size_t errlen);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue