mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 08:11:16 +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)) {
|
||||
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);
|
||||
|
|
Loading…
Reference in a new issue