diff options
Diffstat (limited to 'remux')
-rw-r--r-- | remux/ts2ps.c | 3 | ||||
-rw-r--r-- | remux/ts2ps.h | 4 |
2 files changed, 7 insertions, 0 deletions
diff --git a/remux/ts2ps.c b/remux/ts2ps.c index 2a97dee..69274ad 100644 --- a/remux/ts2ps.c +++ b/remux/ts2ps.c @@ -1,3 +1,5 @@ +#ifdef STREAMDEV_PS + #include "remux/ts2ps.h" #include "server/streamer.h" #include <vdr/channels.h> @@ -216,3 +218,4 @@ uchar *cTS2PSRemux::Get(int &Count) return resultData; } +#endif diff --git a/remux/ts2ps.h b/remux/ts2ps.h index 2380c15..0c1f0fb 100644 --- a/remux/ts2ps.h +++ b/remux/ts2ps.h @@ -1,3 +1,5 @@ +#ifdef STREAMDEV_PS + #ifndef VDR_STREAMDEV_TS2PSREMUX_H #define VDR_STREAMDEV_TS2PSREMUX_H @@ -34,3 +36,5 @@ public: } // namespace Streamdev #endif // VDR_STREAMDEV_TS2PSREMUX_H + +#endif |