mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
dvbsrc: show invalid delsys/mod combination if found
This commit is contained in:
parent
31041c3ae9
commit
7597f4dd7a
1 changed files with 2 additions and 1 deletions
|
@ -2563,7 +2563,8 @@ gst_dvbsrc_set_fe_params (GstDvbSrc * object, struct dtv_properties *props)
|
||||||
|
|
||||||
if (!gst_dvbsrc_is_valid_modulation (object->delsys, object->modulation)) {
|
if (!gst_dvbsrc_is_valid_modulation (object->delsys, object->modulation)) {
|
||||||
GST_WARNING_OBJECT (object,
|
GST_WARNING_OBJECT (object,
|
||||||
"Attempting an invalid modulation/delsys combination");
|
"Attempting invalid modulation '%u' for delivery system '%u'",
|
||||||
|
object->modulation, object->delsys);
|
||||||
}
|
}
|
||||||
|
|
||||||
set_prop (props->props, &n, DTV_TUNE, 0);
|
set_prop (props->props, &n, DTV_TUNE, 0);
|
||||||
|
|
Loading…
Reference in a new issue