Mercurial > mplayer.hg
annotate loader/dshow/DS_AudioDecoder.h @ 32735:c8b9c17890cb
Cosmetics: move if and following { onto same line.
author | reimar |
---|---|
date | Thu, 27 Jan 2011 19:34:40 +0000 |
parents | 837cd9762b4e |
children |
rev | line source |
---|---|
26045 | 1 #ifndef MPLAYER_DS_AUDIODECODER_H |
2 #define MPLAYER_DS_AUDIODECODER_H | |
1545 | 3 |
30171
837cd9762b4e
Add required header #includes to satisfy 'make checkheaders'.
diego
parents:
26045
diff
changeset
|
4 #include "loader/com.h" |
837cd9762b4e
Add required header #includes to satisfy 'make checkheaders'.
diego
parents:
26045
diff
changeset
|
5 #include "loader/wine/mmreg.h" |
837cd9762b4e
Add required header #includes to satisfy 'make checkheaders'.
diego
parents:
26045
diff
changeset
|
6 |
25794
2c8cdb9123b8
Fix a ton of illegal identifiers. Identifiers starting with __ or _ and a
diego
parents:
25547
diff
changeset
|
7 typedef struct DS_AudioDecoder DS_AudioDecoder; |
3059 | 8 |
3444 | 9 //DS_AudioDecoder * DS_AudioDecoder_Create(const CodecInfo * info, const WAVEFORMATEX* wf); |
10 DS_AudioDecoder * DS_AudioDecoder_Open(char* dllname, GUID* guid, WAVEFORMATEX* wf); | |
1545 | 11 |
3059 | 12 void DS_AudioDecoder_Destroy(DS_AudioDecoder *this); |
13 | |
3946 | 14 int DS_AudioDecoder_Convert(DS_AudioDecoder *this, const void* in_data, unsigned int in_size, |
15 void* out_data, unsigned int out_size, | |
16 unsigned int* size_read, unsigned int* size_written); | |
3059 | 17 |
18 int DS_AudioDecoder_GetSrcSize(DS_AudioDecoder *this, int dest_size); | |
19 | |
26045 | 20 #endif /* MPLAYER_DS_AUDIODECODER_H */ |