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.
This commit is contained in:
Zaheer Abbas Merali 2007-10-29 15:54:04 +00:00
parent 5e3b2d2bf6
commit 7f30d23b0c
2 changed files with 8 additions and 3 deletions

View file

@ -1,3 +1,9 @@
2007-10-29 Zaheer Abbas Merali <zaheerabbas at merali dot org>
* sys/dvb/dvbbasebin.c:
Uncomment the line that sets the pid filter. Wrong way to
work-around driver issues.
2007-10-28 Tim-Philipp Müller <tim at centricular dot net>
* ext/faac/gstfaac.c: (gst_faac_profile_get_type),

View file

@ -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;
}