]> git.vomp.tv Git - vompclient.git/blob - draintarget.h
Remove manual sync buttons
[vompclient.git] / draintarget.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 DRAINTARGET_H
22 #define DRAINTARGET_H
23
24 #include "defines.h"
25 #include <list>
26
27
28
29
30 struct MediaPacket{
31   ULLONG recording_byte_pos; //position in recording
32   ULLONG pts;
33   ULONG pos_buffer; //position in stream buffer
34   ULONG length; //length of the packet
35   //The last to are only needed on windows, for memory reasons they can be excluded in mvp
36   long long presentation_time;/* in 100 ns units*/
37   bool synched;
38   bool disconti;
39 };
40
41 using namespace std;
42
43 typedef list<MediaPacket> MediaPacketList;
44
45
46 class DrainTarget {
47 public:
48   DrainTarget();
49   virtual ~DrainTarget();
50   virtual UINT DeliverMediaSample(MediaPacket packet, UCHAR* buffer,
51         UINT *samplepos)=0;
52
53 /* This function behaviour should be:
54 Try to deliver the Data from packet.pos_buffer+samplepos to packet.pos_buffer+packet.length,
55 with considering the bufferwraparound according to buffersize.
56 Then increasing samplepos, so that on the next call delivering can proceed. So if writebytes are
57 writen samplepos=samplepos+writebytes!
58 If samplepos>=packet.length is returned, the next packet can be used for the next call.*/
59
60   virtual long long SetStartOffset(long long curreftime, bool *rsync)=0;
61 };
62
63
64
65
66 #endif