mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
44 lines
1.0 KiB
C
44 lines
1.0 KiB
C
|
/*
|
|||
|
* dvbsubtitle.h: DVB subtitles
|
|||
|
*
|
|||
|
* See the main source file 'vdr.c' for copyright information and
|
|||
|
* how to reach the author.
|
|||
|
*
|
|||
|
* Original author: Marco Schl<EFBFBD><EFBFBD>ler <marco@lordzodiac.de>
|
|||
|
*
|
|||
|
* $Id: dvbsubtitle.h 1.1 2007/10/12 14:27:30 kls Exp $
|
|||
|
*/
|
|||
|
|
|||
|
#ifndef __DVBSUBTITLE_H
|
|||
|
#define __DVBSUBTITLE_H
|
|||
|
|
|||
|
#include "osd.h"
|
|||
|
#include "thread.h"
|
|||
|
#include "tools.h"
|
|||
|
|
|||
|
class cDvbSubtitlePage;
|
|||
|
class cDvbSubtitleAssembler;
|
|||
|
class cDvbSubtitleBitmaps;
|
|||
|
|
|||
|
class cDvbSubtitleConverter : public cThread {
|
|||
|
private:
|
|||
|
static int setupLevel;
|
|||
|
cDvbSubtitleAssembler *dvbSubtitleAssembler;
|
|||
|
cOsd *osd;
|
|||
|
cList<cDvbSubtitlePage> *pages;
|
|||
|
cList<cDvbSubtitleBitmaps> *bitmaps;
|
|||
|
tColor yuv2rgb(int Y, int Cb, int Cr);
|
|||
|
bool AssertOsd(void);
|
|||
|
int ExtractSegment(const uchar *Data, int Length, int64_t Pts);
|
|||
|
void FinishPage(cDvbSubtitlePage *Page);
|
|||
|
public:
|
|||
|
cDvbSubtitleConverter(void);
|
|||
|
virtual ~cDvbSubtitleConverter();
|
|||
|
void Action(void);
|
|||
|
void Reset(void);
|
|||
|
int Convert(const uchar *Data, int Length);
|
|||
|
static void SetupChanged(void);
|
|||
|
};
|
|||
|
|
|||
|
#endif //__DVBSUBTITLE_H
|