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.
32 #include "threadwin.h"
43 #include "teletextdecodervbiebu.h"
55 class Player : public Thread_TYPE, public Callback
58 Player(MessageQueue* messageQueue, void* messageReceiver, OSDReceiver* osdReceiver);
61 int init(bool p_isPesRecording,double framespersec);
63 void setStartFrame(ULONG frameNum);
64 void setLengthBytes(ULLONG length);
65 void setLengthFrames(ULONG length);
66 void setAudioChannel(int newChannel, int type);
67 void setSubtitleChannel(int newChannel);
68 bool toggleSubtitles();
69 void turnSubtitlesOn(bool ison);
70 bool isSubtitlesOn() { return subtitlesShowing; }
77 void jumpToPercent(double percent);
78 void skipForward(int seconds);
79 void skipBackward(int seconds);
80 void jumpToMark(int mark);
81 void jumpToFrameP(int newFrame);
83 UCHAR getState() { return state; }
84 ULONG getCurrentFrameNum();
85 ULONG getLengthFrames();
86 UCHAR getIScanRate() { return ifactor; }
87 bool* getDemuxerMpegAudioChannels();
88 bool* getDemuxerAc3AudioChannels();
89 bool* getDemuxerSubtitleChannels();
90 int *getTeletxtSubtitlePages();
91 int getCurrentAudioChannel();
92 int getCurrentSubtitleChannel();
93 bool isPesRecording() { return is_pesrecording; }
94 Channel getDemuxerChannel();
96 TeletextDecoderVBIEBU * getTeletextDecoder() { return teletext; }
98 void call(void*); // for callback interface
100 const static UCHAR S_PLAY = 1;
101 const static UCHAR S_PAUSE_P = 2;
102 const static UCHAR S_PAUSE_I = 3;
103 const static UCHAR S_FFWD = 4;
104 const static UCHAR S_FBWD = 5;
105 const static UCHAR S_STOP = 6;
106 const static UCHAR S_JUMP = 7;
107 const static UCHAR S_JUMP_PI = 8; // Jump to Pause_I mode
111 // FIXME so far this just duplicates the old system + the wss
113 const static UCHAR CONNECTION_LOST = 1;
114 const static UCHAR STOP_PLAYBACK = 2;
115 const static UCHAR STREAM_END = 3;
116 const static UCHAR ASPECT43 = 4;
117 const static UCHAR ASPECT169 = 5;
126 void threadPostStopCleanup();
129 void switchState(UCHAR newState, ULONG jumpFrame=0);
131 void threadFeedPlay();
132 void threadFeedScan();
134 void doConnectionLost();
135 void restartAtFrame(ULONG newFrame);
136 void restartAtFramePI(ULONG newFrame);
138 bool subtitlesShowing;
139 MessageQueue* messageQueue;
140 void* messageReceiver;
141 OSDReceiver* osdReceiver;
146 DVBSubtitles* subtitles;
151 TeletextDecoderVBIEBU *teletext;
159 bool is_pesrecording;
163 pthread_mutex_t mutex;
172 ULONG currentFrameNumber;
174 UINT startupBlockSize;
187 Play, Pause, FFwd, FBwd, (Stop), [Jump]