This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
lavf/vividas: Support demuxing on big-endian hardware.
tags/n4.2
Carl Eugen Hoyos
7 years ago
parent
17aed996bc
commit
01db03f158
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavformat/vividas.c
+ 1
- 1
libavformat/vividas.c
View File
@@ -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++;
Write
Preview
Loading…
Cancel
Save