From 6d21b4675803d8d619c97686daf5cfb195a68cd3 Mon Sep 17 00:00:00 2001 From: Andreas Monzner Date: Tue, 11 Apr 2006 09:46:29 +0000 Subject: [PATCH] fix FIXMEE :) (don't open recording filter with pid 0x1234.. use -1) --- lib/dvb/demux.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/dvb/demux.cpp b/lib/dvb/demux.cpp index b4204924..d391420c 100644 --- a/lib/dvb/demux.cpp +++ b/lib/dvb/demux.cpp @@ -379,7 +379,7 @@ RESULT eDVBTSRecorder::start() dmx_pes_filter_params flt; flt.pes_type = (dmx_pes_type_t)DMX_TAP_TS; - flt.pid = 0x1234; /* FIXME */ + flt.pid = -1; flt.input = DMX_IN_FRONTEND; flt.output = DMX_OUT_TAP; flt.flags = 0; -- 2.30.2