mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-04 23:30:05 +00:00
vaapipostproc: disable discontinuity detection code.
The "discontinuity" tracking code, whereby lost frames are tentatively detected, is inoperant if the sink pad buffer timestamps are not right to begin with. This is a temporary workaround until the following bug is fixed: https://bugzilla.gnome.org/show_bug.cgi?id=734386
This commit is contained in:
parent
197001768b
commit
6d8c5221b2
1 changed files with 1 additions and 1 deletions
|
@ -518,7 +518,7 @@ gst_vaapipostproc_process_vpp(GstBaseTransform *trans, GstBuffer *inbuf,
|
|||
|
||||
deint_method = postproc->deinterlace_method;
|
||||
deint_refs = deint_method_is_advanced(deint_method);
|
||||
if (deint_refs) {
|
||||
if (deint_refs && 0) {
|
||||
GstBuffer * const prev_buf = ds_get_buffer(ds, 0);
|
||||
GstClockTime prev_pts, pts = GST_BUFFER_TIMESTAMP(inbuf);
|
||||
/* Reset deinterlacing state when there is a discontinuity */
|
||||
|
|
Loading…
Reference in a new issue