fix for streamdev (CVS-HEAD) and vdr-1.3.32

Message ID 4329C362.7000609@fliegl.de
State New
Headers

Commit Message

Deti Fliegl Sept. 15, 2005, 6:54 p.m. UTC
  Hi,

There is a problem compiling streamdev from vdr-1.3.32
This patch fixes the missing include statements.

Deti
  

Patch

diff -ur client/filter.c client/filter.c
--- client/filter.c	2005-02-08 14:59:16.000000000 +0100
+++ client/filter.c	2005-09-15 20:39:41.542144480 +0200
@@ -8,6 +8,7 @@ 
 #include "common.h"
 
 #include <vdr/ringbuffer.h>
+#include <vdr/device.h>
 
 #if VDRVERSNUM >= 10300
 
--- remux/ts2es.h	2005-02-11 17:44:14.000000000 +0100
+++ remux/ts2es.h	2005-09-15 20:47:06.592882276 +0200
@@ -3,6 +3,7 @@ 
 
 #include "remux/tsremux.h"
 #include <vdr/ringbuffer.h>
+#include <vdr/device.h>
 
 class cTS2ES;
 class cRingBufferLinear;
diff -ur remux/ts2ps.c remux/ts2ps.c
--- remux/ts2ps.c	2005-02-11 17:44:15.000000000 +0100
+++ remux/ts2ps.c	2005-09-15 20:43:04.755595829 +0200
@@ -1,6 +1,7 @@ 
 #include "remux/ts2ps.h"
 #include "server/streamer.h"
 #include <vdr/channels.h>
+#include <vdr/device.h>
 
 class cTS2PS {
 	friend void PutPES(uint8_t *Buffer, int Size, void *Data);