diff options
author | Zaheer Abbas Merali <zaheerabbas@merali.org> | 2007-10-29 15:54:04 +0000 |
---|---|---|
committer | Zaheer Abbas Merali <zaheerabbas@merali.org> | 2007-10-29 15:54:04 +0000 |
commit | 7f30d23b0c735baad9670fb2c8973fcbe72a41bf (patch) | |
tree | 74c00bc477855e65390be79e9a0e5665e54a3f53 /sys | |
parent | 5e3b2d2bf60dfa3d4401386169c9193a0826b3bb (diff) | |
download | gst-plugins-bad-7f30d23b0c735baad9670fb2c8973fcbe72a41bf.tar.gz gst-plugins-bad-7f30d23b0c735baad9670fb2c8973fcbe72a41bf.tar.bz2 gst-plugins-bad-7f30d23b0c735baad9670fb2c8973fcbe72a41bf.zip |
sys/dvb/dvbbasebin.c: Uncomment the line that sets the pid filter. Wrong way to work-around driver issues.
Original commit message from CVS:
* sys/dvb/dvbbasebin.c:
Uncomment the line that sets the pid filter. Wrong way to
work-around driver issues.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dvb/dvbbasebin.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/dvb/dvbbasebin.c b/sys/dvb/dvbbasebin.c index f609dc82..df52907d 100644 --- a/sys/dvb/dvbbasebin.c +++ b/sys/dvb/dvbbasebin.c @@ -607,9 +607,8 @@ dvb_base_bin_rebuild_filter (DvbBaseBin * dvbbasebin) GST_INFO_OBJECT (dvbbasebin, "rebuilt filter %s", dvbbasebin->filter); - /* FIXME: disable this until we find a way to filter out unwanted pids - g_object_set (dvbbasebin->dvbsrc, "pids", dvbbasebin->filter, NULL); - */ + /* FIXME: find a way to not add unwanted pids controlled by app */ + g_object_set (dvbbasebin->dvbsrc, "pids", dvbbasebin->filter, NULL); g_free (dvbbasebin->filter); dvbbasebin->filter = NULL; } |