mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
dvb: parsechannels: replace missleadign error message
Possible failure cases also include not finding the requested channel.
This commit is contained in:
parent
6c0d9ecc35
commit
61b7b1856e
1 changed files with 4 additions and 4 deletions
|
@ -901,8 +901,8 @@ set_properties_for_channel (GstElement * dvbbasebin,
|
|||
case CHANNEL_CONF_FORMAT_DVBV5:
|
||||
if (!parse_and_configure_from_v5_conf_file (dvbbasebin, filename,
|
||||
channel_name, error)) {
|
||||
GST_WARNING_OBJECT (dvbbasebin, "Could not parse libdvbv5 channel "
|
||||
"configuration file '%s'", filename);
|
||||
GST_WARNING_OBJECT (dvbbasebin, "Problem finding information for "
|
||||
"channel '%s' in configuration file '%s'", channel_name, filename);
|
||||
} else {
|
||||
GST_INFO_OBJECT (dvbbasebin, "Parsed libdvbv5 channel configuration "
|
||||
"file");
|
||||
|
@ -912,8 +912,8 @@ set_properties_for_channel (GstElement * dvbbasebin,
|
|||
case CHANNEL_CONF_FORMAT_ZAP:
|
||||
if (!parse_and_configure_from_zap_conf_file (dvbbasebin, filename,
|
||||
channel_name, error)) {
|
||||
GST_WARNING_OBJECT (dvbbasebin, "Could not parse ZAP channel "
|
||||
"configuration file '%s'", filename);
|
||||
GST_WARNING_OBJECT (dvbbasebin, "Problem finding information for "
|
||||
"channel '%s' in configuration file '%s'", channel_name, filename);
|
||||
} else {
|
||||
GST_INFO_OBJECT (dvbbasebin, "Parsed ZAP channel configuration file");
|
||||
ret = TRUE;
|
||||
|
|
Loading…
Reference in a new issue