mirror of
https://github.com/mpv-player/mpv
synced 2024-12-13 10:26:00 +00:00
4a7c3f22ec
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3064 b3059339-0415-0410-9bf9-f77b7e298cf2
37 lines
865 B
C
37 lines
865 B
C
#ifndef AVIFILE_DS_AUDIODECODER_H
|
|
#define AVIFILE_DS_AUDIODECODER_H
|
|
|
|
#ifndef NOAVIFILE_HEADERS
|
|
#include "audiodecoder.h"
|
|
#include "except.h"
|
|
#else
|
|
#include "libwin32.h"
|
|
#endif
|
|
#include "DS_Filter.h"
|
|
|
|
typedef struct _DS_AudioDecoder
|
|
{
|
|
WAVEFORMATEX in_fmt;
|
|
AM_MEDIA_TYPE m_sOurType, m_sDestType;
|
|
DS_Filter* m_pDS_Filter;
|
|
char* m_sVhdr;
|
|
char* m_sVhdr2;
|
|
}DS_AudioDecoder;
|
|
|
|
#ifndef uint_t
|
|
#define uint_t int
|
|
#endif
|
|
|
|
DS_AudioDecoder * DS_AudioDecoder_Create(const CodecInfo * info, const WAVEFORMATEX* wf);
|
|
|
|
void DS_AudioDecoder_Destroy(DS_AudioDecoder *this);
|
|
|
|
int DS_AudioDecoder_Convert(DS_AudioDecoder *this, const void* in_data, uint_t in_size,
|
|
void* out_data, uint_t out_size,
|
|
uint_t* size_read, uint_t* size_written);
|
|
|
|
int DS_AudioDecoder_GetSrcSize(DS_AudioDecoder *this, int dest_size);
|
|
|
|
|
|
#endif // AVIFILE_DS_AUDIODECODER_H
|