1
0
Fork 0
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:
Bertrik Sikken 2010-02-24 19:02:14 +00:00
parent c6e69cd886
commit 9502021590
7 changed files with 7 additions and 1 deletions

View file

@ -21,6 +21,7 @@
#include "codeclib.h"
#include "pcm_common.h"
#include "adpcm_seek.h"
#include "support_formats.h"
/*
* Dialogic OKI ADPCM

View file

@ -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)

View file

@ -20,6 +20,7 @@
****************************************************************************/
#include "codeclib.h"
#include "pcm_common.h"
#include "support_formats.h"
/*
* Microsoft ADPCM

View file

@ -21,6 +21,7 @@
#include "codeclib.h"
#include "pcm_common.h"
#include "ima_adpcm_common.h"
#include "support_formats.h"
/*
* Apple QuickTime IMA ADPCM

View file

@ -21,6 +21,7 @@
#include "codeclib.h"
#include "pcm_common.h"
#include "ima_adpcm_common.h"
#include "support_formats.h"
/*
* Adobe SWF ADPCM

View file

@ -21,6 +21,7 @@
#include "codeclib.h"
#include "pcm_common.h"
#include "adpcm_seek.h"
#include "support_formats.h"
/*
* YAMAHA ADPCM

View file

@ -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;