gst/videoscale/vs_4tap.c: Update tmpbuf for all neccesary rows, not just one, as is required when downscaling.

Original commit message from CVS:
* gst/videoscale/vs_4tap.c: (vs_image_scale_4tap_Y):
Update tmpbuf for all neccesary rows, not just one, as is required
when downscaling.
Fixes #402076.
This commit is contained in:
Michael Smith 2007-06-15 15:23:36 +00:00
parent e1cc846edc
commit 6077bc0124
2 changed files with 8 additions and 1 deletions

View file

@ -1,3 +1,10 @@
2007-06-15 Michael Smith <msmith@fluendo.com>
* gst/videoscale/vs_4tap.c: (vs_image_scale_4tap_Y):
Update tmpbuf for all neccesary rows, not just one, as is required
when downscaling.
Fixes #402076.
2007-06-15 Michael Smith <msmith@fluendo.com> 2007-06-15 Michael Smith <msmith@fluendo.com>
* tests/check/pipelines/oggmux.c: (validate_ogg_page), (is_video), * tests/check/pipelines/oggmux.c: (validate_ogg_page), (is_video),

View file

@ -172,7 +172,7 @@ vs_image_scale_4tap_Y (const VSImage * dest, const VSImage * src,
j = yacc >> 16; j = yacc >> 16;
if (j > k) { while (j > k) {
k++; k++;
if (k + 3 < src->height) { if (k + 3 < src->height) {
xacc = 0; xacc = 0;