mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +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:
|
case CHANNEL_CONF_FORMAT_DVBV5:
|
||||||
if (!parse_and_configure_from_v5_conf_file (dvbbasebin, filename,
|
if (!parse_and_configure_from_v5_conf_file (dvbbasebin, filename,
|
||||||
channel_name, error)) {
|
channel_name, error)) {
|
||||||
GST_WARNING_OBJECT (dvbbasebin, "Could not parse libdvbv5 channel "
|
GST_WARNING_OBJECT (dvbbasebin, "Problem finding information for "
|
||||||
"configuration file '%s'", filename);
|
"channel '%s' in configuration file '%s'", channel_name, filename);
|
||||||
} else {
|
} else {
|
||||||
GST_INFO_OBJECT (dvbbasebin, "Parsed libdvbv5 channel configuration "
|
GST_INFO_OBJECT (dvbbasebin, "Parsed libdvbv5 channel configuration "
|
||||||
"file");
|
"file");
|
||||||
|
@ -912,8 +912,8 @@ set_properties_for_channel (GstElement * dvbbasebin,
|
||||||
case CHANNEL_CONF_FORMAT_ZAP:
|
case CHANNEL_CONF_FORMAT_ZAP:
|
||||||
if (!parse_and_configure_from_zap_conf_file (dvbbasebin, filename,
|
if (!parse_and_configure_from_zap_conf_file (dvbbasebin, filename,
|
||||||
channel_name, error)) {
|
channel_name, error)) {
|
||||||
GST_WARNING_OBJECT (dvbbasebin, "Could not parse ZAP channel "
|
GST_WARNING_OBJECT (dvbbasebin, "Problem finding information for "
|
||||||
"configuration file '%s'", filename);
|
"channel '%s' in configuration file '%s'", channel_name, filename);
|
||||||
} else {
|
} else {
|
||||||
GST_INFO_OBJECT (dvbbasebin, "Parsed ZAP channel configuration file");
|
GST_INFO_OBJECT (dvbbasebin, "Parsed ZAP channel configuration file");
|
||||||
ret = TRUE;
|
ret = TRUE;
|
||||||
|
|
Loading…
Reference in a new issue