summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xrun/tests2
-rw-r--r--src/lib/image.cc9
-rw-r--r--test/image_test.cc2
3 files changed, 8 insertions, 5 deletions
diff --git a/run/tests b/run/tests
index 8f6b2d3e2..2467c6b34 100755
--- a/run/tests
+++ b/run/tests
@@ -3,7 +3,7 @@
# e.g. --run_tests=foo
set -e
-PRIVATE_GIT="e92043f43b024812f2b5f8c8faed159a15a87aaf"
+PRIVATE_GIT="8bf1138b91512fea16179889d33cd5ec801676ca"
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
source $DIR/environment
diff --git a/src/lib/image.cc b/src/lib/image.cc
index b1557bf47..c948f72ba 100644
--- a/src/lib/image.cc
+++ b/src/lib/image.cc
@@ -822,6 +822,7 @@ alpha_blend_onto_yuv420p(TargetParams const& target, OtherYUVParams const& other
{
auto const ts = target.size;
auto const os = other.size;
+ int const os_width = os.width & ~1;
for (int ty = target.start_y, oy = other.start_y; ty < ts.height && oy < os.height; ++ty, ++oy) {
int const hty = ty / 2;
int const hoy = oy / 2;
@@ -832,7 +833,7 @@ alpha_blend_onto_yuv420p(TargetParams const& target, OtherYUVParams const& other
uint8_t* oU = other.data[1] + (hoy * other.stride[1]) + other.start_x / 2;
uint8_t* oV = other.data[2] + (hoy * other.stride[2]) + other.start_x / 2;
uint8_t* alpha = other.alpha_data[0] + (oy * other.alpha_stride[0]) + other.start_x * other.alpha_bpp;
- for (int tx = target.start_x, ox = other.start_x; tx < ts.width && ox < os.width; ++tx, ++ox) {
+ for (int tx = target.start_x, ox = other.start_x; tx < ts.width && ox < os_width; ++tx, ++ox) {
float const a = get_alpha(alpha);
*tY = *oY * a + *tY * (1 - a);
*tU = *oU * a + *tU * (1 - a);
@@ -859,6 +860,7 @@ alpha_blend_onto_yuv420p10(TargetParams const& target, OtherYUVParams const& oth
{
auto const ts = target.size;
auto const os = other.size;
+ int const os_width = os.width & ~1;
for (int ty = target.start_y, oy = other.start_y; ty < ts.height && oy < os.height; ++ty, ++oy) {
int const hty = ty / 2;
int const hoy = oy / 2;
@@ -869,7 +871,7 @@ alpha_blend_onto_yuv420p10(TargetParams const& target, OtherYUVParams const& oth
uint16_t* oU = reinterpret_cast<uint16_t*>(other.data[1] + (hoy * other.stride[1])) + other.start_x / 2;
uint16_t* oV = reinterpret_cast<uint16_t*>(other.data[2] + (hoy * other.stride[2])) + other.start_x / 2;
uint8_t* alpha = other.alpha_data[0] + (oy * other.alpha_stride[0]) + other.start_x * other.alpha_bpp;
- for (int tx = target.start_x, ox = other.start_x; tx < ts.width && ox < os.width; ++tx, ++ox) {
+ for (int tx = target.start_x, ox = other.start_x; tx < ts.width && ox < os_width; ++tx, ++ox) {
float const a = get_alpha(alpha);
*tY = *oY * a + *tY * (1 - a);
*tU = *oU * a + *tU * (1 - a);
@@ -896,6 +898,7 @@ alpha_blend_onto_yuv422p9or10le(TargetParams const& target, OtherYUVParams const
{
auto const ts = target.size;
auto const os = other.size;
+ int const os_width = os.width & ~1;
for (int ty = target.start_y, oy = other.start_y; ty < ts.height && oy < os.height; ++ty, ++oy) {
uint16_t* tY = reinterpret_cast<uint16_t*>(target.data[0] + (ty * target.stride[0])) + target.start_x;
uint16_t* tU = reinterpret_cast<uint16_t*>(target.data[1] + (ty * target.stride[1])) + target.start_x / 2;
@@ -904,7 +907,7 @@ alpha_blend_onto_yuv422p9or10le(TargetParams const& target, OtherYUVParams const
uint16_t* oU = reinterpret_cast<uint16_t*>(other.data[1] + (oy * other.stride[1])) + other.start_x / 2;
uint16_t* oV = reinterpret_cast<uint16_t*>(other.data[2] + (oy * other.stride[2])) + other.start_x / 2;
uint8_t* alpha = other.alpha_data[0] + (oy * other.alpha_stride[0]) + other.start_x * other.alpha_bpp;
- for (int tx = target.start_x, ox = other.start_x; tx < ts.width && ox < os.width; ++tx, ++ox) {
+ for (int tx = target.start_x, ox = other.start_x; tx < ts.width && ox < os_width; ++tx, ++ox) {
float const a = get_alpha(alpha);
*tY = *oY * a + *tY * (1 - a);
*tU = *oU * a + *tU * (1 - a);
diff --git a/test/image_test.cc b/test/image_test.cc
index 8d19c631e..aa3baeb4f 100644
--- a/test/image_test.cc
+++ b/test/image_test.cc
@@ -217,7 +217,7 @@ alpha_blend_test_rgba64be_onto(AVPixelFormat format, string suffix)
for (int y = 256; y < 384; ++y) {
auto p = reinterpret_cast<uint16_t*>(overlay->data()[0] + y * overlay->stride()[0]);
- for (int x = 0; x < 128; ++x) {
+ for (int x = 0; x < 431; ++x) {
p[x * 4 + 2] = 65535;
p[x * 4 + 3] = 65535;
}