blob: 0829446233684bcc09e21ed810c408cb0a1c527a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#pragma once
#include "../Plugins/Input/in_avi/ifc_avivideodecoder.h"
#include "../nsavi/avi_header.h"
class AVIRGB : public ifc_avivideodecoder
{
public:
AVIRGB(nsavi::video_format *stream_format);
~AVIRGB();
int Initialize();
static AVIRGB *CreateDecoder(nsavi::video_format *stream_format);
int GetOutputProperties(int *x, int *y, int *color_format, double *aspect_ratio, int *flip);
int DecodeChunk(uint16_t type, const void *inputBuffer, size_t inputBufferBytes);
void Flush();
void Close();
int GetPicture(void **data, void **decoder_data);
int GetPalette(RGB32 **palette);
private:
nsavi::video_format *stream_format;
void *video_frame;
size_t video_frame_size_bytes;
bool o;
RGBQUAD palette[256];
bool palette_retrieved;
protected:
RECVS_DISPATCH;
};
|