Mercurial > mplayer.hg
view loader/dmo/DMO_AudioDecoder.h @ 24407:cc6b846c5bd5
r24294: suboption consistency, add fixme document -vivo suboptions
r24310: Support for selecting language via packet 28.
r24329: manpage fix: escape '\' in -vf geq description
r24349: Support lowdelay flag
r24356: spelling fixes, pointed by Diego
r24357: Clarify teletext tlang option.
r24386: move lavc option out of XviD section, to lavc section
r24423: Implementation of tv:// driver autodetection.
author | kraymer |
---|---|
date | Mon, 10 Sep 2007 23:09:19 +0000 |
parents | 5d5d1b3ec737 |
children | de09fcf0b4f1 |
line wrap: on
line source
#ifndef AVIFILE_DMO_AUDIODECODER_H #define AVIFILE_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 // AVIFILE_DMO_AUDIODECODER_H