summaryrefslogtreecommitdiff
path: root/apps/plugins/rockboy/pcm.h
blob: f009f5708c96e97db1a063be1a68d61aca3a7f0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

#ifndef __PCM_H__
#define __PCM_H__


#include "defs.h"

struct pcm
{
    int hz, len;
    int stereo;
    short *buf;
    int pos;
};

extern struct pcm pcm;


#endif