437c3e40ca
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15144 a1c6a512-1295-4272-9138-f99709370657
24 lines
237 B
C
24 lines
237 B
C
|
|
#ifndef __PCM_H__
|
|
#define __PCM_H__
|
|
|
|
|
|
#include "defs.h"
|
|
|
|
struct pcm
|
|
{
|
|
int hz, len;
|
|
int stereo;
|
|
short *buf;
|
|
int pos;
|
|
};
|
|
|
|
extern struct pcm pcm;
|
|
|
|
void pcm_init(void);
|
|
int pcm_submit(void);
|
|
void pcm_close(void);
|
|
|
|
#endif
|
|
|
|
|