mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-23 23:21:06 +01:00
swscale/alphablend: fix pointer cast
Commit 7c72a4bbd3 was slightly wrong
Signed-off-by: Ganesh Ajjanagadde <gajjanagadde@gmail.com>
This commit is contained in:
parent
14f97bb2bc
commit
eb3cfa7dd3
1 changed files with 1 additions and 1 deletions
|
|
@ -131,7 +131,7 @@ int ff_sws_alphablendaway(SwsContext *c, const uint8_t *src[],
|
|||
if (sixteen_bits) {
|
||||
const uint16_t *s = (const uint16_t *)(src[0] + srcStride[0] * y + 2*!alpha_pos);
|
||||
const uint16_t *a = (const uint16_t *)(src[0] + srcStride[0] * y + alpha_pos);
|
||||
uint16_t *d = (const uint16_t *)(dst[0] + dstStride[0] * y);
|
||||
uint16_t *d = ( uint16_t *)(dst[0] + dstStride[0] * y);
|
||||
if ((!isBE(c->srcFormat)) == !HAVE_BIGENDIAN) {
|
||||
for (x = 0; x < w; x++) {
|
||||
for (plane = 0; plane < plane_count; plane++) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue