2 Copyright 2004-2006 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
32 #include "threadwin.h"
47 class PlayerRadio : public Thread_TYPE, public Callback
50 PlayerRadio(MessageQueue* messageQueue, void* messageReceiver, bool isRecording);
51 virtual ~PlayerRadio();
53 int init(ULLONG lengthBytes, ULONG lengthPackets);
55 void setStartBytes(ULLONG startBytes);
58 void play(ULONG apid); // Live radio
61 void jumpToPercent(double percent);
62 void skipForward(UINT seconds);
63 void skipBackward(UINT seconds);
65 UCHAR getState() { return state; }
66 ULONG getCurrentSeconds();
67 ULONG getLengthSeconds();
69 void call(void*); // for callback interface
71 const static UCHAR S_PLAY = 1;
72 const static UCHAR S_PAUSE_P = 2;
73 const static UCHAR S_STOP = 6;
74 const static UCHAR S_JUMP = 7;
78 const static UCHAR CONNECTION_LOST = 1;
79 const static UCHAR STOP_PLAYBACK = 2;
80 const static UCHAR STREAM_END = 3;
84 void threadPostStopCleanup();
87 void switchState(UCHAR newState, ULONG jumpPacket=0);
89 void threadFeedLive();
90 void threadFeedPlay();
91 void threadFeedScan();
93 void doConnectionLost();
94 void restartAtPacket(ULONG newPacket);
95 bool setLengthSeconds();
97 MessageQueue* messageQueue;
98 void* messageReceiver;
114 pthread_mutex_t mutex;
124 ULONG currentPacketNumber;
126 UINT startupBlockSize;
139 Play, Pause, FFwd, FBwd, (Stop), [Jump]