Mercurial > mplayer.hg
annotate loader/dmo/DMO_AudioDecoder.h @ 25794:2c8cdb9123b8
Fix a ton of illegal identifiers. Identifiers starting with __ or _ and a
capital letter are reserved for the system, those starting with _ are
reserved at the file level.
author | diego |
---|---|
date | Sun, 20 Jan 2008 17:16:39 +0000 |
parents | de09fcf0b4f1 |
children | a8ea87c71d18 |
rev | line source |
---|---|
8325 | 1 #ifndef AVIFILE_DMO_AUDIODECODER_H |
2 #define AVIFILE_DMO_AUDIODECODER_H | |
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 | |
25547 | 17 #endif /* AVIFILE_DMO_AUDIODECODER_H */ |