diff options
author | Connor Worley <connorbworley@gmail.com> | 2024-02-08 11:07:08 -0800 |
---|---|---|
committer | Lynne <dev@lynne.ee> | 2024-02-08 20:36:04 +0100 |
commit | c4e9556cf54609b9182dfb1766d3e2c43299a9d6 (patch) | |
tree | 09caefb002a73d559406284639d1c9e44973e647 /tests/ref | |
parent | f6ec01147f7fdb429495b7bd7f25c208208f39a3 (diff) | |
download | ffmpeg-c4e9556cf54609b9182dfb1766d3e2c43299a9d6.tar.gz |
lavc/texturedsp: fix premult2straight inversion
This function should convert premultiplied alpha to straight, but does the opposite.
Signed-off-by: Connor Worley <connorbworley@gmail.com>
Diffstat (limited to 'tests/ref')
-rw-r--r-- | tests/ref/fate/dds-dxt2 | 2 | ||||
-rw-r--r-- | tests/ref/fate/dds-dxt4 | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/ref/fate/dds-dxt2 b/tests/ref/fate/dds-dxt2 index b5bdfbadc3..1744ef41f6 100644 --- a/tests/ref/fate/dds-dxt2 +++ b/tests/ref/fate/dds-dxt2 @@ -3,4 +3,4 @@ #codec_id 0: rawvideo #dimensions 0: 64x64 #sar 0: 0/1 -0, 0, 0, 1, 16384, 0x11cebeb0 +0, 0, 0, 1, 16384, 0xd7f7241b diff --git a/tests/ref/fate/dds-dxt4 b/tests/ref/fate/dds-dxt4 index 136dfd8006..f22878da56 100644 --- a/tests/ref/fate/dds-dxt4 +++ b/tests/ref/fate/dds-dxt4 @@ -3,4 +3,4 @@ #codec_id 0: rawvideo #dimensions 0: 64x64 #sar 0: 0/1 -0, 0, 0, 1, 16384, 0x31aaacd6 +0, 0, 0, 1, 16384, 0xf18d4216 |