Mercurial > mplayer.hg
view loader/dmo/DMO_AudioDecoder.h @ 29163:e5e1ecf7a172
Only add existing files to the FFMPEGFILES variable.
based on a patch by Carl F«ärstenberg, azatoth gmail com
author | diego |
---|---|
date | Mon, 20 Apr 2009 03:39:44 +0000 |
parents | a8ea87c71d18 |
children | 837cd9762b4e |
line wrap: on
line source
#ifndef MPLAYER_DMO_AUDIODECODER_H #define MPLAYER_DMO_AUDIODECODER_H typedef struct DMO_AudioDecoder DMO_AudioDecoder; //DMO_AudioDecoder * DMO_AudioDecoder_Create(const CodecInfo * info, const WAVEFORMATEX* wf); DMO_AudioDecoder * DMO_AudioDecoder_Open(char* dllname, GUID* guid, WAVEFORMATEX* wf,int out_channels); void DMO_AudioDecoder_Destroy(DMO_AudioDecoder *this); int DMO_AudioDecoder_Convert(DMO_AudioDecoder *this, const void* in_data, unsigned int in_size, void* out_data, unsigned int out_size, unsigned int* size_read, unsigned int* size_written); int DMO_AudioDecoder_GetSrcSize(DMO_AudioDecoder *this, int dest_size); #endif /* MPLAYER_DMO_AUDIODECODER_H */