2 Copyright 2004-2008 Chris Tallon
4 This file is part of VOMP.
6 VOMP is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 VOMP is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with VOMP; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
31 #include "threadsystem.h"
39 #include "teletextdecodervbiebu.h"
51 class Player : public Thread_TYPE, public Callback
54 Player(MessageQueue* messageQueue, void* messageReceiver, OSDReceiver* osdReceiver);
57 int init(bool p_isPesRecording,double framespersec);
59 void setStartFrame(ULONG frameNum);
60 void setLengthBytes(ULLONG length);
61 void setLengthFrames(ULONG length);
62 void setAudioChannel(int newChannel, int type, int streamtype);
63 void setSubtitleChannel(int newChannel);
64 bool toggleSubtitles();
65 void turnSubtitlesOn(bool ison);
66 bool isSubtitlesOn() { return subtitlesShowing; }
74 void jumpToPercent(double percent);
75 void skipForward(int seconds);
76 void skipBackward(int seconds);
77 void jumpToMark(int mark);
78 void jumpToFrameP(int newFrame);
80 UCHAR getState() { return state; }
81 ULONG getCurrentFrameNum();
82 ULONG getLengthFrames();
83 UCHAR getIScanRate() { return ifactor; }
84 bool* getDemuxerMpegAudioChannels();
85 bool* getDemuxerAc3AudioChannels();
86 bool* getDemuxerSubtitleChannels();
87 int *getTeletxtSubtitlePages();
88 int getCurrentAudioChannel();
89 int getCurrentSubtitleChannel();
90 bool isPesRecording() { return is_pesrecording; }
91 Channel *getDemuxerChannel();
93 TeletextDecoderVBIEBU * getTeletextDecoder() { return teletext; }
95 void call(void*); // for callback interface
97 const static UCHAR S_PLAY = 1;
98 const static UCHAR S_PAUSE_P = 2;
99 const static UCHAR S_PAUSE_I = 3;
100 const static UCHAR S_FFWD = 4;
101 const static UCHAR S_FBWD = 5;
102 const static UCHAR S_STOP = 6;
103 const static UCHAR S_JUMP = 7;
104 const static UCHAR S_JUMP_PI = 8; // Jump to Pause_I mode
108 // FIXME so far this just duplicates the old system + the wss
110 const static UCHAR CONNECTION_LOST = 1;
111 const static UCHAR STOP_PLAYBACK = 2;
112 const static UCHAR STREAM_END = 3;
113 const static UCHAR ASPECT43 = 4;
114 const static UCHAR ASPECT169 = 5;
123 void threadPostStopCleanup();
126 void switchState(UCHAR newState, ULONG jumpFrame=0);
128 void threadFeedPlay();
129 void threadFeedScan();
130 void threadPTSFeedScan();
132 void doConnectionLost();
133 void restartAtFrame(ULONG newFrame);
134 void restartAtFramePI(ULONG newFrame);
136 bool subtitlesShowing;
137 MessageQueue* messageQueue;
138 void* messageReceiver;
139 OSDReceiver* osdReceiver;
144 DVBSubtitles* subtitles;
149 TeletextDecoderVBIEBU *teletext;
157 bool is_pesrecording;
161 pthread_mutex_t mutex;
170 ULONG currentFrameNumber;
172 UINT startupBlockSize;
185 Play, Pause, FFwd, FBwd, (Stop), [Jump]