summaryrefslogtreecommitdiffstats
path: root/loader/dshow/DS_VideoDecoder.h
blob: 6acd820162c06490a374a96b1cc039fc6990cd12 (plain)
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
28
29
30
31
32
33
34
35
36
37
#ifndef AVIFILE_DS_VIDEODECODER_H
#define AVIFILE_DS_VIDEODECODER_H

#include <libwin32.h>
#include <DS_Filter.h>

class DS_VideoDecoder: public IVideoDecoder, public IRtConfig
{
public:
    DS_VideoDecoder(const CodecInfo& info, const BITMAPINFOHEADER& format, int flip);
    ~DS_VideoDecoder();
    int SetDestFmt(int bits = 24, fourcc_t csp = 0);
    CAPS GetCapabilities() const {return m_Caps;}
    int DecodeInternal(void* src, size_t size, int is_keyframe, CImage* pImage);
    void StartInternal();
    void StopInternal();
    //void Restart();
    int SetDirection(int d)
    {
	m_obh.biHeight = d ? m_bh->biHeight : -m_bh->biHeight;
	m_sVhdr2->bmiHeader.biHeight = m_obh.biHeight;
	return 0;
    }
    // IRtConfig interface
    virtual HRESULT GetValue(const char*, int&);
    virtual HRESULT SetValue(const char*, int);
protected:
    DS_Filter* m_pDS_Filter;
    AM_MEDIA_TYPE m_sOurType, m_sDestType;
    VIDEOINFOHEADER* m_sVhdr;
    VIDEOINFOHEADER* m_sVhdr2;
    CAPS m_Caps;                // capabilities of DirectShow decoder
    int m_iLastQuality;         // remember last quality as integer
    bool m_bIsDivX;             // for speed
};

#endif /* AVIFILE_DS_VIDEODECODER_H */