mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
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:
parent
e1cc846edc
commit
6077bc0124
2 changed files with 8 additions and 1 deletions
|
@ -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),
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue