Mercurial > mplayer.hg
annotate loader/dmo/DMO_AudioDecoder.h @ 29131:df0f3be3c12f
Use extra_cflags variable instead of CFLAGS to add system-specific CFLAGS.
Otherwise the CFLAGS warning gets triggered and necessary CFLAGS are not set.
author | diego |
---|---|
date | Sun, 12 Apr 2009 17:07:30 +0000 |
parents | a8ea87c71d18 |
children | 837cd9762b4e |
rev | line source |
---|---|
26045 | 1 #ifndef MPLAYER_DMO_AUDIODECODER_H |
2 #define MPLAYER_DMO_AUDIODECODER_H | |
8325 | 3 |
25794
2c8cdb9123b8
Fix a ton of illegal identifiers. Identifiers starting with __ or _ and a
diego
parents:
25547
diff
changeset
|
4 typedef struct DMO_AudioDecoder DMO_AudioDecoder; |
8325 | 5 |
6 //DMO_AudioDecoder * DMO_AudioDecoder_Create(const CodecInfo * info, const WAVEFORMATEX* wf); | |
7 DMO_AudioDecoder * DMO_AudioDecoder_Open(char* dllname, GUID* guid, WAVEFORMATEX* wf,int out_channels); | |
8 | |
9 void DMO_AudioDecoder_Destroy(DMO_AudioDecoder *this); | |
10 | |
11 int DMO_AudioDecoder_Convert(DMO_AudioDecoder *this, const void* in_data, unsigned int in_size, | |
12 void* out_data, unsigned int out_size, | |
13 unsigned int* size_read, unsigned int* size_written); | |
14 | |
15 int DMO_AudioDecoder_GetSrcSize(DMO_AudioDecoder *this, int dest_size); | |
16 | |
26045 | 17 #endif /* MPLAYER_DMO_AUDIODECODER_H */ |