mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-07 07:58:51 +00:00
dvbsrc: var rename in _output_frontend_params()
Now it matches the rest of its status peers. Underscore was a leftover from previous times.
This commit is contained in:
parent
530d56fac3
commit
05ebd33887
1 changed files with 3 additions and 3 deletions
|
@ -2066,7 +2066,7 @@ static void
|
||||||
gst_dvbsrc_output_frontend_stats (GstDvbSrc * src)
|
gst_dvbsrc_output_frontend_stats (GstDvbSrc * src)
|
||||||
{
|
{
|
||||||
fe_status_t status;
|
fe_status_t status;
|
||||||
guint16 snr, _signal;
|
guint16 snr, signal;
|
||||||
guint32 ber, bad_blks;
|
guint32 ber, bad_blks;
|
||||||
GstMessage *message;
|
GstMessage *message;
|
||||||
GstStructure *structure;
|
GstStructure *structure;
|
||||||
|
@ -2084,9 +2084,9 @@ gst_dvbsrc_output_frontend_stats (GstDvbSrc * src)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
LOOP_WHILE_EINTR (err, ioctl (fe_fd, FE_READ_SIGNAL_STRENGTH, &_signal));
|
LOOP_WHILE_EINTR (err, ioctl (fe_fd, FE_READ_SIGNAL_STRENGTH, &signal));
|
||||||
if (!err)
|
if (!err)
|
||||||
gst_structure_set (structure, "signal", G_TYPE_INT, _signal, NULL);
|
gst_structure_set (structure, "signal", G_TYPE_INT, signal, NULL);
|
||||||
|
|
||||||
LOOP_WHILE_EINTR (err, ioctl (fe_fd, FE_READ_SNR, &snr));
|
LOOP_WHILE_EINTR (err, ioctl (fe_fd, FE_READ_SNR, &snr));
|
||||||
if (!err)
|
if (!err)
|
||||||
|
|
Loading…
Reference in a new issue