mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-17 17:35:47 -04:00
Initial community commit
This commit is contained in:
20
Src/mp3-mpg123/nsvmain.h
Normal file
20
Src/mp3-mpg123/nsvmain.h
Normal file
@ -0,0 +1,20 @@
|
||||
#pragma once
|
||||
#include <mpg123.h>
|
||||
#include "../nsv/dec_if.h"
|
||||
|
||||
class MP3_Decoder : public IAudioDecoder
|
||||
{
|
||||
public:
|
||||
MP3_Decoder();
|
||||
~MP3_Decoder() { };
|
||||
int decode(void *in, int in_len,
|
||||
void *out, int *out_len,
|
||||
unsigned int out_fmt[8]);
|
||||
void flush();
|
||||
private:
|
||||
mpg123_handle *decoder;
|
||||
float pcm_buf[1152*2*2];
|
||||
size_t pcm_buf_used;
|
||||
int pcm_offs;
|
||||
int fused;
|
||||
};
|
Reference in New Issue
Block a user