mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-18 13:35:45 -04:00
Initial community commit
This commit is contained in:
21
Src/pcm/avi_ulaw_decoder.h
Normal file
21
Src/pcm/avi_ulaw_decoder.h
Normal file
@ -0,0 +1,21 @@
|
||||
#pragma once
|
||||
#include "../nsavi/avi_header.h"
|
||||
#include "../Plugins/Input/in_avi/ifc_aviaudiodecoder.h"
|
||||
|
||||
class AVIULawDecoder : public ifc_aviaudiodecoder
|
||||
{
|
||||
public:
|
||||
AVIULawDecoder(const nsavi::audio_format *waveformat);
|
||||
|
||||
protected:
|
||||
RECVS_DISPATCH;
|
||||
private:
|
||||
/* ifc_aviaudiodecoder implementation */
|
||||
int OutputFrameSize(size_t *frame_size);
|
||||
int GetOutputProperties(unsigned int *sampleRate, unsigned int *channels, unsigned int *bitsPerSample, bool *isFloat);
|
||||
int DecodeChunk(uint16_t type, void **inputBuffer, size_t *inputBufferBytes, void *outputBuffer, size_t *outputBufferBytes);
|
||||
void Close();
|
||||
|
||||
private:
|
||||
const nsavi::audio_format *waveformat;
|
||||
};
|
Reference in New Issue
Block a user