MythTV
master
|
#include <QCoreApplication>
#include <QList>
#include <QMutex>
#include <QTime>
#include <QString>
#include <QRect>
#include <QSize>
#include <QStringList>
#include <QWaitCondition>
#include "playercontext.h"
#include "volumebase.h"
#include "osd.h"
#include "mythvideoout.h"
#include "captions/teletextreader.h"
#include "captions/subtitlereader.h"
#include "captions/cc608reader.h"
#include "captions/cc708reader.h"
#include "decoders/decoderbase.h"
#include "deletemap.h"
#include "commbreakmap.h"
#include "audioplayer.h"
#include "mthread.h"
#include "mythavutil.h"
#include "mythtypes.h"
#include "programtypes.h"
#include "tv.h"
#include "videoouttypes.h"
#include "mythmiscutil.h"
#include "mythplayeravsync.h"
#include "mythtvexp.h"
#include <cstdint>
#include <utility>
#include <thread>
Go to the source code of this file.
Classes | |
class | MythPlayer |
Macros | |
#define | TCTYPESMAX 4 |
#define | FlagIsSet(arg) (m_playerFlags & (arg)) |
Typedefs | |
using | StatusCallback = void(*)(int, void *) |
using | tctype_arr = std::array< std::chrono::milliseconds, TCTYPESMAX > |
Enumerations | |
enum | TCTypes { TC_VIDEO = 0, TC_AUDIO, TC_SUB, TC_CC } |
Timecode types. More... | |
enum | PlayerFlags { kNoFlags = 0x000000, kDecodeLowRes = 0x000001, kDecodeSingleThreaded = 0x000002, kDecodeFewBlocks = 0x000004, kDecodeNoLoopFilter = 0x000008, kDecodeNoDecode = 0x000010, kDecodeAllowGPU = 0x000020, kVideoIsNull = 0x000040, kAudioMuted = 0x010000, kNoITV = 0x020000, kMusicChoice = 0x040000 } |
#define TCTYPESMAX 4 |
Definition at line 59 of file mythplayer.h.
Definition at line 77 of file mythplayer.h.
using StatusCallback = void (*)(int, void*) |
Definition at line 49 of file mythplayer.h.
using tctype_arr = std::array<std::chrono::milliseconds,TCTYPESMAX> |
Definition at line 60 of file mythplayer.h.
enum TCTypes |
Timecode types.
Enumerator | |
---|---|
TC_VIDEO | |
TC_AUDIO | |
TC_SUB | |
TC_CC |
Definition at line 52 of file mythplayer.h.
enum PlayerFlags |
Enumerator | |
---|---|
kNoFlags | |
kDecodeLowRes | |
kDecodeSingleThreaded | |
kDecodeFewBlocks | |
kDecodeNoLoopFilter | |
kDecodeNoDecode | |
kDecodeAllowGPU | |
kVideoIsNull | |
kAudioMuted | |
kNoITV | |
kMusicChoice |
Definition at line 62 of file mythplayer.h.