mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 10:07:38 -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
|
@ -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)
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue