You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
lavf/vividas: Support demuxing on big-endian hardware.
This commit is contained in:
@@ -130,7 +130,7 @@ static void xor_block(void *p1, void *p2, unsigned size, int key, unsigned *key_
|
||||
size >>= 2;
|
||||
|
||||
while (size > 0) {
|
||||
*d2 = *d1 ^ k;
|
||||
*d2 = *d1 ^ (HAVE_BIGENDIAN ? av_bswap32(k) : k);
|
||||
k += key;
|
||||
d1++;
|
||||
d2++;
|
||||
|
Reference in New Issue
Block a user