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:
Gwenole Beauchesne 2014-08-12 18:33:25 +02:00
parent 197001768b
commit 6d8c5221b2

View file

@ -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 */