summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-05-26 16:34:09 +0100
committerCarl Hetherington <cth@carlh.net>2016-05-26 16:34:09 +0100
commit3d3d9d7aaeadbd9325ba8609f0d31961149c35a4 (patch)
treed60b6a646bdb95d4539018ec0a4868b983b65767 /src/lib
parentb0f078d851e2a84d2f9d2ae085f6aad837747eb1 (diff)
Fix slightly inexplicable RGB/BGR confusion; before this the colour of subtitles is wrong.
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/image.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/lib/image.cc b/src/lib/image.cc
index a2b3bf519..2a413c83e 100644
--- a/src/lib/image.cc
+++ b/src/lib/image.cc
@@ -426,6 +426,7 @@ Image::make_transparent ()
void
Image::alpha_blend (shared_ptr<const Image> other, Position<int> position)
{
+ /* We're blending RGBA images; first byte is blue, second byte is green, third byte blue, fourth byte alpha */
DCPOMATIC_ASSERT (other->pixel_format() == AV_PIX_FMT_RGBA);
int const other_bpp = 4;
@@ -448,15 +449,16 @@ Image::alpha_blend (shared_ptr<const Image> other, Position<int> position)
switch (_pixel_format) {
case AV_PIX_FMT_RGB24:
{
+ /* Going onto RGB24. First byte is red, second green, third blue */
int const this_bpp = 3;
for (int ty = start_ty, oy = start_oy; ty < size().height && oy < other->size().height; ++ty, ++oy) {
uint8_t* tp = data()[0] + ty * stride()[0] + start_tx * this_bpp;
uint8_t* op = other->data()[0] + oy * other->stride()[0];
for (int tx = start_tx, ox = start_ox; tx < size().width && ox < other->size().width; ++tx, ++ox) {
float const alpha = float (op[3]) / 255;
- tp[0] = op[0] * alpha + tp[0] * (1 - alpha);
+ tp[0] = op[2] * alpha + tp[0] * (1 - alpha);
tp[1] = op[1] * alpha + tp[1] * (1 - alpha);
- tp[2] = op[2] * alpha + tp[2] * (1 - alpha);
+ tp[2] = op[0] * alpha + tp[2] * (1 - alpha);
tp += this_bpp;
op += other_bpp;