deinterlace: Fix invalid read in yadif

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-good/-/merge_requests/621>
This commit is contained in:
Vivia Nikolaidou 2020-06-12 13:21:02 +03:00
parent 6fba2e3dd3
commit ef78014d15

View file

@ -223,7 +223,7 @@ filter_edges (guint8 * dst,
const int colors, int y_alternates_every)
{
int x;
const int edge = colors * (MAX_ALIGN / bpp - 1);
const int edge = colors * (MAX_ALIGN / bpp);
const int border = 3 * colors;
/* Only edge pixels need to be processed here. A constant value of false
@ -283,7 +283,7 @@ filter_scanline_yadif (GstDeinterlaceSimpleMethod * self,
guint8 *dst = out;
const int bpp = 1; // Hard code 8-bit atm
int w = size / bpp;
int edge = colors * MAX_ALIGN / bpp - 1;
int edge = colors * MAX_ALIGN / bpp;
GstDeinterlaceScanlineData s = *s_orig;
int mode = (s.tt1 == NULL || s.bb1 == NULL || s.ttp == NULL