forked from len0rd/rockbox
Add missing #include in libpcm codecs
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24887 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
c6e69cd886
commit
9502021590
7 changed files with 7 additions and 1 deletions
|
|
@ -21,6 +21,7 @@
|
|||
#include "codeclib.h"
|
||||
#include "pcm_common.h"
|
||||
#include "adpcm_seek.h"
|
||||
#include "support_formats.h"
|
||||
|
||||
/*
|
||||
* Dialogic OKI ADPCM
|
||||
|
|
|
|||
|
|
@ -22,6 +22,7 @@
|
|||
#include "codeclib.h"
|
||||
#include "pcm_common.h"
|
||||
#include "ima_adpcm_common.h"
|
||||
#include "support_formats.h"
|
||||
|
||||
/*
|
||||
* Intel DVI ADPCM (IMA ADPCM)
|
||||
|
|
|
|||
|
|
@ -20,6 +20,7 @@
|
|||
****************************************************************************/
|
||||
#include "codeclib.h"
|
||||
#include "pcm_common.h"
|
||||
#include "support_formats.h"
|
||||
|
||||
/*
|
||||
* Microsoft ADPCM
|
||||
|
|
|
|||
|
|
@ -21,6 +21,7 @@
|
|||
#include "codeclib.h"
|
||||
#include "pcm_common.h"
|
||||
#include "ima_adpcm_common.h"
|
||||
#include "support_formats.h"
|
||||
|
||||
/*
|
||||
* Apple QuickTime IMA ADPCM
|
||||
|
|
|
|||
|
|
@ -21,6 +21,7 @@
|
|||
#include "codeclib.h"
|
||||
#include "pcm_common.h"
|
||||
#include "ima_adpcm_common.h"
|
||||
#include "support_formats.h"
|
||||
|
||||
/*
|
||||
* Adobe SWF ADPCM
|
||||
|
|
|
|||
|
|
@ -21,6 +21,7 @@
|
|||
#include "codeclib.h"
|
||||
#include "pcm_common.h"
|
||||
#include "adpcm_seek.h"
|
||||
#include "support_formats.h"
|
||||
|
||||
/*
|
||||
* YAMAHA ADPCM
|
||||
|
|
|
|||
|
|
@ -97,7 +97,7 @@ enum {
|
|||
* present in the ea3 (first) header. The *
|
||||
* metadata in ea3 is stored as a variation of *
|
||||
* the ID3v2 metadata format. */
|
||||
int oma_read_header(int fd, struct mp3entry* id3)
|
||||
static int oma_read_header(int fd, struct mp3entry* id3)
|
||||
{
|
||||
static const uint16_t srate_tab[6] = {320,441,480,882,960,0};
|
||||
int ret, ea3_taglen, EA3_pos, jsflag;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue