MythTV  master
mythplayer.h
Go to the documentation of this file.
1 #ifndef MYTHPLAYER_H
2 #define MYTHPLAYER_H
3 
4 // Std
5 #include <cstdint>
6 #include <utility>
7 #include <thread>
8 
9 // Qt
10 #include <QCoreApplication>
11 #include <QList>
12 #include <QMutex>
13 #if QT_VERSION >= QT_VERSION_CHECK(5,14,0)
14 #include <QRecursiveMutex>
15 #endif
16 #include <QTime>
17 #include <QString>
18 #include <QRect>
19 #include <QSize>
20 #include <QStringList>
21 #include <QWaitCondition>
22 
23 // MythTV
25 #include "libmythbase/mthread.h"
27 #include "libmythbase/mythtypes.h"
29 #include "libmythtv/audioplayer.h"
34 #include "libmythtv/commbreakmap.h"
36 #include "libmythtv/deletemap.h"
37 #include "libmythtv/mythavutil.h"
39 #include "libmythtv/mythtvexp.h"
40 #include "libmythtv/mythvideoout.h"
41 #include "libmythtv/osd.h"
43 #include "libmythtv/tv.h"
45 
46 class ProgramInfo;
47 class InteractiveTV;
48 class QThread;
49 class MythMediaBuffer;
50 class MythDecoderThread;
51 
52 using StatusCallback = void (*)(int, void*);
53 
55 enum TCTypes
56 {
57  TC_VIDEO = 0,
61 };
62 static constexpr size_t TCTYPESMAX { 4 };
63 using tctype_arr = std::array<std::chrono::milliseconds,TCTYPESMAX>;
64 
66 {
67  kNoFlags = 0x000000,
68  kDecodeLowRes = 0x000001,
70  kDecodeFewBlocks = 0x000004,
71  kDecodeNoLoopFilter = 0x000008,
72  kDecodeNoDecode = 0x000010,
73  kDecodeAllowGPU = 0x000020,
74  kVideoIsNull = 0x000040,
75  kAudioMuted = 0x010000,
76  kNoITV = 0x020000,
77  kMusicChoice = 0x040000,
78 };
79 
80 // Padding between class members reduced from 113 to 73 bytes, but its
81 // still higher than the default warning threshhold of 24 bytes.
82 //
83 // NOLINTNEXTLINE(clang-analyzer-optin.performance.Padding)
84 class MTV_PUBLIC MythPlayer : public QObject
85 {
86  Q_OBJECT
87 
88  // Do NOT add a decoder class to this list
89  friend class PlayerContext;
90  friend class CC708Reader;
91  friend class CC608Reader;
92  friend class MythDecoderThread;
93  friend class VideoPerformanceTest;
94  // TODO remove these
95  friend class TV;
96  friend class Transcode;
97 
98  signals:
99  void CheckCallbacks();
100  void SeekingSlow(int Count);
101  void SeekingComplete();
102  void PauseChanged(bool Paused);
103  void RequestResetCaptions();
104  void SignalTracksChanged(uint Type);
105 
106  public:
107  explicit MythPlayer(PlayerContext* Context, PlayerFlags Flags = kNoFlags);
108  ~MythPlayer() override;
109 
110  // Initialisation
111  virtual int OpenFile(int Retries = 4);
112  virtual bool InitVideo(void);
113  virtual void ReinitVideo(bool ForceUpdate);
114  virtual void InitFrameInterval();
115 
116  // Public Sets
117  void SetLength(std::chrono::seconds len) { m_totalLength = len; }
118  void SetFramesPlayed(uint64_t played);
119  void SetEof(EofState eof);
120  void SetWatchingRecording(bool mode);
121  void SetKeyframeDistance(int keyframedistance);
122  virtual void SetVideoParams(int w, int h, double fps, float aspect,
123  bool ForceUpdate, int ReferenceFrames,
124  FrameScanType /*scan*/ = kScan_Ignore,
125  const QString& codecName = QString());
126  void SetFileLength(std::chrono::seconds total, int frames);
127  void SetDuration(std::chrono::seconds duration);
128  void SetFrameRate(double fps);
129 
130  // Gets
131  QSize GetVideoBufferSize(void) const { return m_videoDim; }
132  QSize GetVideoSize(void) const { return m_videoDispDim; }
133  float GetVideoAspect(void) const { return m_videoAspect; }
134  float GetFrameRate(void) const { return m_videoFrameRate; }
135  bool IsAudioNeeded(void) { return !FlagIsSet(kVideoIsNull); }
136  int GetFreeVideoFrames(void) const;
137 
138  int GetFFRewSkip(void) const { return m_ffrewSkip; }
139  float GetPlaySpeed(void) const { return m_playSpeed; }
140  AudioPlayer* GetAudio(void) { return &m_audio; }
141  float GetNextPlaySpeed(void) const { return m_nextPlaySpeed; }
142  std::chrono::seconds GetLength(void) const { return m_totalLength; }
143  uint64_t GetTotalFrameCount(void) const { return m_totalFrames; }
144  uint64_t GetCurrentFrameCount(void) const;
145  uint64_t GetFramesPlayed(void) const { return m_framesPlayed; }
146  virtual uint64_t GetBookmark(void);
147  QString GetError(void) const;
148  QString GetEncodingType(void) const;
149  QString GetXDS(const QString &key) const;
150 
151  // Bool Gets
152  bool IsPaused(void) const { return m_allPaused; }
153  bool GetRawAudioState(void) const;
154  bool GetLimitKeyRepeat(void) const { return m_limitKeyRepeat; }
155  EofState GetEof(void) const;
156  bool IsErrored(void) const;
157  bool IsPlaying(std::chrono::milliseconds wait_in_msec = 0ms,
158  bool wait_for = true) const;
159  bool AtNormalSpeed(void) const { return m_nextNormalSpeed; }
160  bool IsReallyNearEnd(void) const;
161  bool IsNearEnd(void);
162  bool HasTVChainNext(void) const;
163  bool IsWatchingInprogress(void) const;
164 
165  virtual InteractiveTV *GetInteractiveTV() { return nullptr; }
166  MythVideoOutput *GetVideoOutput(void) { return m_videoOutput; }
167 
168  // Title stuff
169  virtual bool SwitchTitle(int /*title*/) { return false; }
170  virtual bool NextTitle(void) { return false; }
171  virtual bool PrevTitle(void) { return false; }
172 
173  // Angle stuff
174  virtual bool SwitchAngle(int /*title*/) { return false; }
175  virtual bool NextAngle(void) { return false; }
176  virtual bool PrevAngle(void) { return false; }
177 
178  // Decoder stuff..
179  MythVideoFrame *GetNextVideoFrame(void);
180  void DeLimboFrame(MythVideoFrame *frame);
181  virtual void ReleaseNextVideoFrame(MythVideoFrame *buffer, std::chrono::milliseconds timecode,
182  bool wrap = true);
183  void DiscardVideoFrame(MythVideoFrame *buffer);
184  void DiscardVideoFrames(bool KeyFrame, bool Flushed);
186  DecoderBase *GetDecoder(void) { return m_decoder; }
187  virtual bool HasReachedEof(void) const;
188  void SetDisablePassThrough(bool disabled);
189  void ForceSetupAudioStream(void);
190 
191  // Add data
192  virtual bool PrepareAudioSample(std::chrono::milliseconds &timecode);
193 
194  // Public Closed caption and teletext stuff
195  virtual CC708Reader *GetCC708Reader(uint /*id*/=0) { return &m_cc708; }
196  virtual CC608Reader *GetCC608Reader(uint /*id*/=0) { return &m_cc608; }
197  virtual SubtitleReader *GetSubReader(uint /*id*/=0) { return &m_subReader; }
198  virtual TeletextReader *GetTeletextReader(uint /*id*/=0) { return &m_ttxReader; }
199 
200  // Public Audio/Subtitle/EIA-608/EIA-708 stream selection - thread safe
201  void EnableForcedSubtitles(bool enable);
202  bool ForcedSubtitlesFavored(void) const {
203  return m_allowForcedSubtitles && !m_captionsEnabledbyDefault;
204  }
205  // How to handle forced Subtitles (i.e. when in a movie someone speaks
206  // in a different language than the rest of the movie, subtitles are
207  // forced on even if the user doesn't have them turned on.)
208  // These two functions are not thread-safe (UI thread use only).
209  bool GetAllowForcedSubtitles(void) const { return m_allowForcedSubtitles; }
210 
211  // LiveTV public stuff
212  void CheckTVChain();
213  void FileChangedCallback();
214 
215  // Chapter public stuff
216  virtual int GetNumChapters(void);
217  virtual int GetCurrentChapter(void);
218  virtual void GetChapterTimes(QList<std::chrono::seconds> &times);
219 
220  // Title public stuff
221  virtual int GetNumTitles(void) const { return 0; }
222  virtual int GetCurrentTitle(void) const { return 0; }
223  virtual std::chrono::seconds GetTitleDuration(int /*title*/) const { return 0s; }
224  virtual QString GetTitleName(int /*title*/) const { return {}; }
225 
226  // Angle public stuff
227  virtual int GetNumAngles(void) const { return 0; }
228  virtual int GetCurrentAngle(void) const { return 0; }
229  virtual QString GetAngleName(int /*title*/) const { return {}; }
230 
231  // DVD public stuff
232  virtual bool IsInStillFrame() const { return false; }
233 
234  // Position Map Stuff
235  bool PosMapFromEnc(uint64_t start, frm_pos_map_t &posMap, frm_pos_map_t &durMap);
236 
237  void SaveTotalDuration(void);
238  void ResetTotalDuration(void);
239 
242  static const double kInaccuracyNone;
243  static const double kInaccuracyDefault;
244  static const double kInaccuracyEditor;
245  static const double kInaccuracyFull;
246  static const double kSeekToEndOffset;
247 
248  void SaveTotalFrames(void);
249  void SetErrored(const QString &reason);
250 
251  protected:
252  // Initialization
253  void OpenDummy(void);
254 
255  // Complicated gets
256  virtual long long CalcMaxFFTime(long long ff, bool setjump = true) const;
257  long long CalcRWTime(long long rw) const;
258  std::chrono::milliseconds TranslatePositionFrameToMs(uint64_t position,
259  bool use_cutlist) const;
260  uint64_t TranslatePositionMsToFrame(std::chrono::milliseconds position,
261  bool use_cutlist) const {
262  return m_deleteMap.TranslatePositionMsToFrame(position,
263  GetFrameRate(),
264  use_cutlist);
265  }
266  // TranslatePositionAbsToRel and TranslatePositionRelToAbs are
267  // used for frame calculations when seeking relative to a number
268  // of frames rather than by time.
269  uint64_t TranslatePositionAbsToRel(uint64_t position) const {
270  return m_deleteMap.TranslatePositionAbsToRel(position);
271  }
272  uint64_t TranslatePositionRelToAbs(uint64_t position) const {
273  return m_deleteMap.TranslatePositionRelToAbs(position);
274  }
275  float ComputeSecs(uint64_t position, bool use_cutlist) const {
276  return TranslatePositionFrameToMs(position, use_cutlist).count() / 1000.0;
277  }
278  uint64_t FindFrame(float offset, bool use_cutlist) const;
279 
280  // Commercial stuff
282  { m_commBreakMap.SetAutoCommercialSkip(autoskip, m_framesPlayed); }
283  void SkipCommercials(int direction)
284  { m_commBreakMap.SkipCommercials(direction); }
285  void SetCommBreakMap(const frm_dir_map_t& NewMap);
287  { return m_commBreakMap.GetAutoCommercialSkip(); }
288 
289  // Start/Reset/Stop playing
290  virtual void ResetPlaying(bool resetframes = true);
291  virtual void StopPlaying(void);
292 
293  // Pause stuff
294  bool PauseDecoder(void);
295  void UnpauseDecoder(void);
296  bool Pause(void);
297  bool Play(float speed = 1.0, bool normal = true, bool unpauseaudio = true);
298 
299  // Seek stuff
300  virtual bool FastForward(float seconds);
301  virtual bool Rewind(float seconds);
302  virtual bool JumpToFrame(uint64_t frame);
303 
304  // Chapter stuff
305  void JumpChapter(int chapter);
306 
307  // Playback
308  virtual bool PrebufferEnoughFrames(int min_buffers = 0);
309  void SetBuffering(bool new_buffering);
310  virtual void VideoEnd(void);
311  virtual void DecoderStart(bool start_paused);
312  virtual void DecoderLoop(bool pause);
313  virtual void DecoderEnd(void);
314  virtual void DecoderPauseCheck(void);
315  virtual void AudioEnd(void);
316 
317  // Edit mode stuff
318  bool GetEditMode(void) const { return m_deleteMap.IsEditing(); }
319  bool IsInDelete(uint64_t frame);
320 
321  bool FlagIsSet(PlayerFlags arg) { return (m_playerFlags & arg) != 0; }
322 
323  protected:
324  // Private Sets
325  void SetPlayingInfo(const ProgramInfo &pginfo);
326  void SetPlaying(bool is_playing);
327  void ResetErrored(void);
328 
329  // Private pausing stuff
330  void PauseVideo(void);
331  void UnpauseVideo(void);
332  void PauseBuffer(void);
333  void UnpauseBuffer(void);
334 
335  // Private decoder stuff
336  virtual void CreateDecoder(TestBufferVec & TestBuffer);
337  void SetDecoder(DecoderBase *dec);
339  const DecoderBase *GetDecoder(void) const { return m_decoder; }
340  virtual void DoFFRewSkip(void);
341  bool DecoderGetFrame(DecodeType decodetype, bool unsafe = false);
342  bool DoGetFrame(DecodeType DecodeType);
343 
344  // These actually execute commands requested by public members
345  bool UpdateFFRewSkip(float ffrewScale = 1.0F);
346  virtual void ChangeSpeed(void);
347  // The "inaccuracy" argument is generally one of the kInaccuracy* values.
348  bool DoFastForward(uint64_t frames, double inaccuracy);
349  bool DoRewind(uint64_t frames, double inaccuracy);
350  void DoJumpToFrame(uint64_t frame, double inaccuracy);
351 
352  // Private seeking stuff
353  void WaitForSeek(uint64_t frame, uint64_t seeksnap_wanted);
354  void ClearAfterSeek(bool clearvideobuffers = true);
355 
356  // Private chapter stuff
357  virtual bool DoJumpChapter(int chapter);
358  virtual int64_t GetChapter(int chapter);
359 
360  // Private A/V Sync Stuff
361  void WrapTimecode(std::chrono::milliseconds &timecode, TCTypes tc_type);
362  void SetFrameInterval(FrameScanType scan, double frame_period);
363 
364  protected:
365  DecoderBase *m_decoder {nullptr};
366 #if QT_VERSION < QT_VERSION_CHECK(5,14,0)
367  mutable QMutex m_decoderChangeLock {QMutex::Recursive};
368 #else
369  mutable QRecursiveMutex m_decoderChangeLock;
370 #endif
371  MythVideoOutput *m_videoOutput {nullptr};
373  PlayerContext *m_playerCtx {nullptr};
374  MythDecoderThread* m_decoderThread {nullptr};
375  QThread *m_playerThread {nullptr};
376 #ifdef Q_OS_ANDROID
377  int m_playerThreadId {0};
378 #endif
380 
381  // State
382  QWaitCondition m_decoderThreadPause;
383  QWaitCondition m_decoderThreadUnpause;
384  mutable QMutex m_decoderPauseLock;
385  mutable QMutex m_decoderSeekLock;
386  mutable QMutex m_bufferPauseLock;
387  mutable QMutex m_videoPauseLock;
388  mutable QMutex m_pauseLock;
389  int64_t m_decoderSeek {-1};
390  bool m_totalDecoderPause {false};
391  bool m_decoderPaused {false};
392  bool m_inJumpToProgramPause {false};
393  bool m_pauseDecoder {false};
394  bool m_unpauseDecoder {false};
395  bool volatile m_killDecoder {false};
396  bool m_decodeOneFrame {false};
397  bool m_renderOneFrame {false};
398  bool m_needNewPauseFrame {false};
399  bool m_bufferPaused {false};
400  bool m_videoPaused {false};
401  bool m_allPaused {false};
402  bool m_playing {false};
403 
404  mutable QWaitCondition m_playingWaitCond;
405  mutable QMutex m_vidExitLock;
406  mutable QMutex m_playingLock;
407  mutable QMutex m_errorLock;
408  QString m_errorMsg;
409  int m_errorType {kError_None};
410  bool m_liveTV {false};
411  bool m_watchingRecording {false};
412  bool m_transcoding {false};
413  bool m_hasFullPositionMap {false};
414  mutable bool m_limitKeyRepeat {false};
415 
416  // Chapter stuff
417  int m_jumpChapter {0};
418 
419  // Bookmark stuff
420  uint64_t m_bookmarkSeek {0};
422 
423  // Seek
426  long long m_ffTime {0};
427 
428  // Playback misc.
430  int m_videobufRetries {0};
431  uint64_t m_framesPlayed {0};
432  uint64_t m_totalFrames {0};
433  std::chrono::seconds m_totalLength {0s};
434  std::chrono::seconds m_totalDuration {0s};
435  long long m_rewindTime {0};
436  std::chrono::milliseconds m_latestVideoTimecode {-1ms};
438 
439  // -- end state stuff --
440 
441  // Input Video Attributes
442  double m_videoFrameRate {29.97};
443  QString m_codecName;
445  QSize m_videoDispDim {0,0};
446  QSize m_videoDim {0,0};
447  int m_maxReferenceFrames {0};
448  float m_videoAspect {4.0F / 3.0F};
449  float m_forcedVideoAspect {-1};
450 
453 
454  // Buffering
455  bool m_buffering {false};
458 
459  // Support for analog captions and teletext
460  // (i.e. Vertical Blanking Interval (VBI) encoded data.)
461  uint m_vbiMode {VBIMode::None};
462  int m_ttPageNum {0x888};
463 
464  // Support for captions, teletext, etc. decoded by libav
469  bool m_captionsEnabledbyDefault {false};
470  bool m_enableForcedSubtitles {false};
471  bool m_disableForcedSubtitles {false};
472  bool m_allowForcedSubtitles {true};
473 
474  // CC608/708
477 
478  // Audio stuff
480 
481  // Commercial filtering
483  bool m_forcePositionMapSync {false};
484  // Manual editing
486 
487  // Playback (output) speed control
489 #if QT_VERSION < QT_VERSION_CHECK(5,14,0)
490  QMutex m_decoderLock {QMutex::Recursive};
491 #else
492  QRecursiveMutex m_decoderLock;
493 #endif
494  float m_nextPlaySpeed {1.0F};
495  float m_playSpeed {1.0F};
496  std::chrono::microseconds m_frameInterval
497  {microsecondsFromFloat(1000000.0F / 30)};
498  int m_fpsMultiplier {1};
499  int m_ffrewSkip {1};
500  bool m_ffrewUseRenderOne {false}; // mediacode work around
501  int m_ffrewAdjust {0};
502  float m_ffrewScale {1.0F};
503  bool m_fileChanged {false};
504  bool m_nextNormalSpeed {true};
505  bool m_normalSpeed {true};
506 
507  // Time Code stuff
508  tctype_arr m_tcWrap {};
509  std::chrono::milliseconds m_savedAudioTimecodeOffset {0ms};
510 
511  // LiveTV
512  bool m_isDummy {false};
513 
514  // Counter for buffering messages
515  int m_bufferingCounter {0};
516 
517  private:
518  Q_DISABLE_COPY(MythPlayer)
519  void syncWithAudioStretch();
520  bool m_disablePassthrough {false};
521 };
522 
523 #endif
MythPlayer::GetTeletextReader
virtual TeletextReader * GetTeletextReader(uint=0)
Definition: mythplayer.h:198
MythPlayer::SetLength
void SetLength(std::chrono::seconds len)
Definition: mythplayer.h:117
CommSkipMode
CommSkipMode
Definition: tv.h:130
StatusCallback
void(*)(int, void *) StatusCallback
Definition: mythplayer.h:52
MythPlayer::PrevTitle
virtual bool PrevTitle(void)
Definition: mythplayer.h:171
tv.h
MythPlayer::m_errorLock
QMutex m_errorLock
Definition: mythplayer.h:407
MythPlayer::AtNormalSpeed
bool AtNormalSpeed(void) const
Definition: mythplayer.h:159
MythPlayer::m_decoderChangeLock
QRecursiveMutex m_decoderChangeLock
Definition: mythplayer.h:369
MythPlayer::TranslatePositionAbsToRel
uint64_t TranslatePositionAbsToRel(uint64_t position) const
Definition: mythplayer.h:269
MythPlayer::GetVideoOutput
MythVideoOutput * GetVideoOutput(void)
Definition: mythplayer.h:166
commbreakmap.h
MythPlayer::GetTotalFrameCount
uint64_t GetTotalFrameCount(void) const
Definition: mythplayer.h:143
MythVideoOutput
Definition: mythvideoout.h:35
deletemap.h
mythvideoout.h
MythPlayerAVSync
Definition: mythplayeravsync.h:20
MythPlayer::m_commBreakMap
CommBreakMap m_commBreakMap
Definition: mythplayer.h:482
MythPlayer::m_subReader
SubtitleReader m_subReader
Definition: mythplayer.h:465
AudioPlayer
Definition: audioplayer.h:26
MythPlayer::m_cc608
CC608Reader m_cc608
Definition: mythplayer.h:475
MythPlayer::kNightModeContrastAdjustment
static const int kNightModeContrastAdjustment
Definition: mythplayer.h:241
MythPlayer::m_decoderThreadUnpause
QWaitCondition m_decoderThreadUnpause
Definition: mythplayer.h:383
MythPlayer::m_avSync
MythPlayerAVSync m_avSync
Definition: mythplayer.h:437
MythPlayer::GetNumAngles
virtual int GetNumAngles(void) const
Definition: mythplayer.h:227
kMusicChoice
@ kMusicChoice
Definition: mythplayer.h:77
MythPlayer::PrevAngle
virtual bool PrevAngle(void)
Definition: mythplayer.h:176
kError_None
@ kError_None
Definition: videoouttypes.h:184
MythPlayer::GetInteractiveTV
virtual InteractiveTV * GetInteractiveTV()
Definition: mythplayer.h:165
Transcode::m_keyframeDist
int m_keyframeDist
Definition: transcode.h:55
mythtvexp.h
MythPlayer::IsPaused
bool IsPaused(void) const
Definition: mythplayer.h:152
MythPlayer::m_decoderSeekLock
QMutex m_decoderSeekLock
Definition: mythplayer.h:385
MythPlayer::GetNumTitles
virtual int GetNumTitles(void) const
Definition: mythplayer.h:221
TC_VIDEO
@ TC_VIDEO
Definition: mythplayer.h:57
microsecondsFromFloat
std::enable_if_t< std::is_floating_point_v< T >, std::chrono::microseconds > microsecondsFromFloat(T value)
Helper function for convert a floating point number to a duration.
Definition: mythchrono.h:102
MythPlayer::GetAngleName
virtual QString GetAngleName(int) const
Definition: mythplayer.h:229
frm_dir_map_t
QMap< uint64_t, MarkTypes > frm_dir_map_t
Frame # -> Mark map.
Definition: programtypes.h:119
FrameScanType
FrameScanType
Definition: videoouttypes.h:94
MythPlayer::m_errorMsg
QString m_errorMsg
Reason why NVP exited with a error.
Definition: mythplayer.h:408
MythPlayer::m_bufferPauseLock
QMutex m_bufferPauseLock
Definition: mythplayer.h:386
osd.h
SubtitleReader
Definition: subtitlereader.h:33
MythPlayer::m_cc708
CC708Reader m_cc708
Definition: mythplayer.h:476
MythMediaBuffer
Definition: mythmediabuffer.h:50
MythPlayer::GetNextPlaySpeed
float GetNextPlaySpeed(void) const
Definition: mythplayer.h:141
MythPlayer::GetFrameRate
float GetFrameRate(void) const
Definition: mythplayer.h:134
cc608reader.h
teletextreader.h
VBIMode::None
@ None
Definition: tv.h:11
MythPlayer::m_pauseLock
QMutex m_pauseLock
Definition: mythplayer.h:388
MythPlayer::GetCC708Reader
virtual CC708Reader * GetCC708Reader(uint=0)
Definition: mythplayer.h:195
PlayerFlags
PlayerFlags
Definition: mythplayer.h:65
subtitlereader.h
MythPlayer
Definition: mythplayer.h:84
MythPlayer::ForcedSubtitlesFavored
bool ForcedSubtitlesFavored(void) const
Definition: mythplayer.h:202
kDecodeLowRes
@ kDecodeLowRes
Definition: mythplayer.h:68
MythPlayer::SkipCommercials
void SkipCommercials(int direction)
Definition: mythplayer.h:283
MythPlayer::m_bufferingLastMsg
QTime m_bufferingLastMsg
Definition: mythplayer.h:457
TCTYPESMAX
static constexpr size_t TCTYPESMAX
Definition: mythplayer.h:62
MythPlayer::GetLimitKeyRepeat
bool GetLimitKeyRepeat(void) const
Definition: mythplayer.h:154
hardwareprofile.scan.scan
def scan(profile, smoonURL, gate)
Definition: scan.py:57
MythPlayer::m_videoPauseLock
QMutex m_videoPauseLock
Definition: mythplayer.h:387
MythPlayer::kInaccuracyNone
static const double kInaccuracyNone
Definition: mythplayer.h:242
programtypes.h
MythPlayer::SetAutoCommercialSkip
void SetAutoCommercialSkip(CommSkipMode autoskip)
Definition: mythplayer.h:281
MythPlayer::SwitchTitle
virtual bool SwitchTitle(int)
Definition: mythplayer.h:169
MythPlayer::GetPlaySpeed
float GetPlaySpeed(void) const
Definition: mythplayer.h:139
EofState
EofState
Definition: decoderbase.h:67
MythPlayer::m_audio
AudioPlayer m_audio
Definition: mythplayer.h:479
TeletextReader
Definition: teletextreader.h:75
MythPlayer::GetFramesPlayed
uint64_t GetFramesPlayed(void) const
Definition: mythplayer.h:145
MythPlayer::ComputeSecs
float ComputeSecs(uint64_t position, bool use_cutlist) const
Definition: mythplayer.h:275
MythDecoderThread
Definition: mythdecoderthread.h:9
MythPlayer::kNightModeBrightenssAdjustment
static const int kNightModeBrightenssAdjustment
Definition: mythplayer.h:240
MythPlayer::GetVideoBufferSize
QSize GetVideoBufferSize(void) const
Definition: mythplayer.h:131
videoouttypes.h
MythPlayer::m_decoderLock
QRecursiveMutex m_decoderLock
Lock for next_play_speed and next_normal_speed.
Definition: mythplayer.h:492
MythPlayer::GetAutoCommercialSkip
CommSkipMode GetAutoCommercialSkip(void)
Definition: mythplayer.h:286
MythPlayer::GetTitleDuration
virtual std::chrono::seconds GetTitleDuration(int) const
Definition: mythplayer.h:223
VideoFrameTypes
std::vector< VideoFrameType > VideoFrameTypes
Definition: mythframe.h:83
MythPlayer::m_decoderPauseLock
QMutex m_decoderPauseLock
Definition: mythplayer.h:384
DecodeType
DecodeType
Definition: decoderbase.h:47
MythPlayer::GetCC608Reader
virtual CC608Reader * GetCC608Reader(uint=0)
Definition: mythplayer.h:196
MythPlayer::IsAudioNeeded
bool IsAudioNeeded(void)
Definition: mythplayer.h:135
mythtypes.h
kDecodeAllowGPU
@ kDecodeAllowGPU
Definition: mythplayer.h:73
MythPlayer::m_bufferingStart
QTime m_bufferingStart
Definition: mythplayer.h:456
MythPlayer::NextTitle
virtual bool NextTitle(void)
Definition: mythplayer.h:170
TCTypes
TCTypes
Timecode types.
Definition: mythplayer.h:55
TestBufferVec
std::vector< char > TestBufferVec
Definition: decoderbase.h:23
MythPlayer::SwitchAngle
virtual bool SwitchAngle(int)
Definition: mythplayer.h:174
kNoITV
@ kNoITV
Definition: mythplayer.h:76
MythPlayer::GetEditMode
bool GetEditMode(void) const
Definition: mythplayer.h:318
uint
unsigned int uint
Definition: compat.h:79
kDecodeNoDecode
@ kDecodeNoDecode
Definition: mythplayer.h:72
MythPlayer::m_endExitPrompt
int m_endExitPrompt
Definition: mythplayer.h:421
MythPlayer::GetCurrentAngle
virtual int GetCurrentAngle(void) const
Definition: mythplayer.h:228
MythPlayer::m_playerFlags
PlayerFlags m_playerFlags
Definition: mythplayer.h:379
MythPlayer::GetAllowForcedSubtitles
bool GetAllowForcedSubtitles(void) const
Definition: mythplayer.h:209
MythPlayer::m_playingLock
QMutex m_playingLock
Definition: mythplayer.h:406
MythPlayer::m_deleteMap
DeleteMap m_deleteMap
Definition: mythplayer.h:485
MythPlayer::GetDecoder
DecoderBase * GetDecoder(void)
Returns the stream decoder currently in use.
Definition: mythplayer.h:186
MythPlayer::m_ttxReader
TeletextReader m_ttxReader
Definition: mythplayer.h:466
MythPlayer::GetSubReader
virtual SubtitleReader * GetSubReader(uint=0)
Definition: mythplayer.h:197
tctype_arr
std::array< std::chrono::milliseconds, TCTYPESMAX > tctype_arr
Definition: mythplayer.h:63
frm_pos_map_t
QMap< long long, long long > frm_pos_map_t
Frame # -> File offset map.
Definition: programtypes.h:46
TC_CC
@ TC_CC
Definition: mythplayer.h:60
kDecodeSingleThreaded
@ kDecodeSingleThreaded
Definition: mythplayer.h:69
volumebase.h
MythPlayer::GetCurrentTitle
virtual int GetCurrentTitle(void) const
Definition: mythplayer.h:222
MTV_PUBLIC
#define MTV_PUBLIC
Definition: mythtvexp.h:15
MythPlayer::GetLength
std::chrono::seconds GetLength(void) const
Definition: mythplayer.h:142
MythPlayer::kSeekToEndOffset
static const double kSeekToEndOffset
Definition: mythplayer.h:246
MythPlayer::GetAudio
AudioPlayer * GetAudio(void)
Definition: mythplayer.h:140
CommBreakMap
Definition: commbreakmap.h:22
kVideoIsNull
@ kVideoIsNull
Definition: mythplayer.h:74
kNoFlags
@ kNoFlags
Definition: mythplayer.h:67
ProgramInfo
Holds information on recordings and videos.
Definition: programinfo.h:67
cc708reader.h
mythmiscutil.h
MythPlayer::m_decoderThreadPause
QWaitCondition m_decoderThreadPause
Definition: mythplayer.h:382
MythVideoFrame::kDefaultRenderFormats
static const VideoFrameTypes kDefaultRenderFormats
Definition: mythframe.h:91
playercontext.h
TC_AUDIO
@ TC_AUDIO
Definition: mythplayer.h:58
MythPlayer::GetTitleName
virtual QString GetTitleName(int) const
Definition: mythplayer.h:224
MythPlayer::GetVideoSize
QSize GetVideoSize(void) const
Definition: mythplayer.h:132
MythPlayer::kInaccuracyEditor
static const double kInaccuracyEditor
Definition: mythplayer.h:244
MythPlayer::TranslatePositionMsToFrame
uint64_t TranslatePositionMsToFrame(std::chrono::milliseconds position, bool use_cutlist) const
Definition: mythplayer.h:260
mythavutil.h
MythPlayer::GetVideoAspect
float GetVideoAspect(void) const
Definition: mythplayer.h:133
kDecodeNoLoopFilter
@ kDecodeNoLoopFilter
Definition: mythplayer.h:71
decoderbase.h
mthread.h
kAudioMuted
@ kAudioMuted
Definition: mythplayer.h:75
PlayerContext
Definition: playercontext.h:53
TC_SUB
@ TC_SUB
Definition: mythplayer.h:59
MythPlayer::m_vidExitLock
QMutex m_vidExitLock
Definition: mythplayer.h:405
audioplayer.h
MythPlayer::FlagIsSet
bool FlagIsSet(PlayerFlags arg)
Definition: mythplayer.h:321
VideoPerformanceTest
Definition: mythavtest.cpp:32
MythPlayer::kInaccuracyFull
static const double kInaccuracyFull
Definition: mythplayer.h:245
MythPlayer::IsInStillFrame
virtual bool IsInStillFrame() const
Definition: mythplayer.h:232
MythVideoFrame
Definition: mythframe.h:88
MythPlayer::GetDecoder
const DecoderBase * GetDecoder(void) const
Returns the stream decoder currently in use.
Definition: mythplayer.h:339
InteractiveTV
This is the interface between an MHEG engine and a MythTV TV object.
Definition: interactivetv.h:15
CC708Reader
Definition: cc708reader.h:16
CC608Reader
Definition: cc608reader.h:78
MythPlayer::kInaccuracyDefault
static const double kInaccuracyDefault
Definition: mythplayer.h:243
MythPlayer::GetFFRewSkip
int GetFFRewSkip(void) const
Definition: mythplayer.h:138
MythPlayer::m_playingWaitCond
QWaitCondition m_playingWaitCond
Definition: mythplayer.h:404
mythplayeravsync.h
DecoderBase
Definition: decoderbase.h:120
kScan_Ignore
@ kScan_Ignore
Definition: videoouttypes.h:96
kDecodeFewBlocks
@ kDecodeFewBlocks
Definition: mythplayer.h:70
MythPlayer::NextAngle
virtual bool NextAngle(void)
Definition: mythplayer.h:175
Transcode
Definition: transcode.h:17
MythPlayer::TranslatePositionRelToAbs
uint64_t TranslatePositionRelToAbs(uint64_t position) const
Definition: mythplayer.h:272
TV
Control TV playback.
Definition: tv_play.h:154
DeleteMap
Definition: deletemap.h:25