]> git.vomp.tv Git - vompclient.git/blob - player.h
Connection failure detection
[vompclient.git] / player.h
1 /*
2     Copyright 2004-2005 Chris Tallon
3
4     This file is part of VOMP.
5
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.
10
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.
15
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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19 */
20
21 #ifndef PLAYER_H
22 #define PLAYER_H
23
24 #include <stdio.h>
25
26 #include "audio.h"
27 #include "video.h"
28 #include "demuxer.h"
29 #include "vfeed.h"
30 #include "afeed.h"
31 #include "remote.h"
32 #include "thread.h"
33 #include "vdr.h"
34 #include "callback.h"
35 #include "message.h"
36 #include "messagequeue.h"
37
38 class Player : public Thread, public Callback
39 {
40   public:
41     Player(MessageQueue* messageQueue, UCHAR isRecording, UCHAR isRadio);
42     virtual ~Player();
43
44     int init();
45     int shutdown();
46
47     int play();
48     void stop();
49     void togglePause();
50     void toggleFastForward();
51     void toggleFastBackward();
52     void jumpToPercent(int percent);
53     void skipForward(int seconds);
54     void skipBackward(int seconds);
55     void call(void*); // for callback interface
56     void setPosition(ULLONG position);
57     void setLength(ULLONG length);
58     void resyncAudio();
59     ULLONG getPositionTS();
60     ULLONG getEndTS();
61
62     bool isPaused() { return paused; }
63     bool isFfwd() { return ffwd; }
64     bool isFbwd() { return fbwd; }
65
66 #ifdef DEV
67     void test1();
68     void test2();
69 #endif
70
71     void threadMethod();
72     void threadPostStopCleanup();
73
74   private:
75     void resyncVideo();
76     void setStartTS(UINT dataInBuffer);
77     void setEndTS();
78     void doConnectionLost();
79
80    int initted;
81     MessageQueue* commandMessageQueue;
82     Log* logger;
83     Audio* audio;
84     Video* video;
85     Demuxer demuxer;
86     int startup;
87     VFeed vfeed;
88     AFeed afeed;
89
90     ULLONG startTS;
91     ULLONG endTS;
92     ULLONG streamLength;
93     ULLONG feedPosition;
94     UCHAR feedMode;
95     UCHAR isRecording;
96     time_t lastRescan;
97     UINT blockSize;
98     UINT startupBlockSize;
99     const static UCHAR MODE_NORMAL = 1;
100     const static UCHAR MODE_BACKWARDS = 2;
101     UCHAR* threadBuffer;
102
103     bool playing;    // As in not stopped, (playing && paused) can == TRUE
104     bool paused;     // Must be in playing state as well
105     bool ffwd;       // Must be in playing state as well
106     bool fbwd;       // Must be in playing state as well
107 };
108
109 #endif