mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-06 23:48:53 +00:00
codecs: h265picture: Minor update for coding style
It's GstH265Dpb, not GstH265Decoder Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/1755>
This commit is contained in:
parent
db10288382
commit
d1f397e754
1 changed files with 2 additions and 2 deletions
|
@ -492,7 +492,7 @@ gst_h265_dpb_get_picture (GstH265Dpb * dpb, guint32 system_frame_number)
|
||||||
}
|
}
|
||||||
|
|
||||||
static gboolean
|
static gboolean
|
||||||
gst_h265_decoder_check_latency_count (GstH265Dpb * dpb, guint32 max_latency)
|
gst_h265_dpb_check_latency_count (GstH265Dpb * dpb, guint32 max_latency)
|
||||||
{
|
{
|
||||||
gint i;
|
gint i;
|
||||||
|
|
||||||
|
@ -537,7 +537,7 @@ gst_h265_dpb_needs_bump (GstH265Dpb * dpb, guint max_num_reorder_pics,
|
||||||
}
|
}
|
||||||
|
|
||||||
if (dpb->num_output_needed && max_latency_increase &&
|
if (dpb->num_output_needed && max_latency_increase &&
|
||||||
gst_h265_decoder_check_latency_count (dpb, max_latency_increase)) {
|
gst_h265_dpb_check_latency_count (dpb, max_latency_increase)) {
|
||||||
GST_TRACE ("has late picture, max_latency_increase: %d",
|
GST_TRACE ("has late picture, max_latency_increase: %d",
|
||||||
max_latency_increase);
|
max_latency_increase);
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
|
Loading…
Reference in a new issue