mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
dvbsrc: clarify consequence of passing a wrong ID to the substream filter
This commit is contained in:
parent
fe7dd131f5
commit
e41b1c510a
1 changed files with 2 additions and 2 deletions
|
@ -2557,8 +2557,8 @@ gst_dvbsrc_set_fe_params (GstDvbSrc * object, struct dtv_properties *props)
|
||||||
case SYS_DVBT:
|
case SYS_DVBT:
|
||||||
case SYS_DVBT2:
|
case SYS_DVBT2:
|
||||||
if (object->delsys == SYS_DVBT2 && object->stream_id > 255) {
|
if (object->delsys == SYS_DVBT2 && object->stream_id > 255) {
|
||||||
GST_WARNING_OBJECT (object, "Wrong DVB-T2 stream ID '%d'. Value "
|
GST_WARNING_OBJECT (object, "Invalid (> 255) DVB-T2 stream ID '%d'. "
|
||||||
"can't be greater than 255", object->stream_id);
|
"Disabling sub-stream filtering", object->stream_id);
|
||||||
object->stream_id = NO_STREAM_ID_FILTER;
|
object->stream_id = NO_STREAM_ID_FILTER;
|
||||||
}
|
}
|
||||||
set_prop (props->props, &n, DTV_BANDWIDTH_HZ, object->bandwidth);
|
set_prop (props->props, &n, DTV_BANDWIDTH_HZ, object->bandwidth);
|
||||||
|
|
Loading…
Reference in a new issue