diff options
Diffstat (limited to 'ringbuffer.c')
-rw-r--r-- | ringbuffer.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ringbuffer.c b/ringbuffer.c index e825b83..a9912ff 100644 --- a/ringbuffer.c +++ b/ringbuffer.c @@ -7,7 +7,7 @@ * Parts of this file were inspired by the 'ringbuffy.c' from the * LinuxDVB driver (see linuxtv.org). * - * $Id: ringbuffer.c 2.0 2007/11/17 13:49:34 kls Exp $ + * $Id: ringbuffer.c 2.1 2009/02/24 11:32:14 kls Exp $ */ #include "ringbuffer.h" @@ -335,11 +335,12 @@ void cRingBufferLinear::Del(int Count) // --- cFrame ---------------------------------------------------------------- -cFrame::cFrame(const uchar *Data, int Count, eFrameType Type, int Index) +cFrame::cFrame(const uchar *Data, int Count, eFrameType Type, int Index, uint32_t Pts) { count = abs(Count); type = Type; index = Index; + pts = Pts; if (Count < 0) data = (uchar *)Data; else { |