You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/media-sound/ogmtools/files/ogmtools-1.5-endian-fix.patch

12 lines
406 B

--- avilib/avidump.c.orig 2004-11-02 15:30:16.000000000 +0000
+++ avilib/avidump.c 2004-11-17 19:12:02.730255128 +0000
@@ -54,7 +54,7 @@
((x<<8) & 0x00ff0000) |\
((x<<24) & 0xff000000))
# define SWAP8(x) (((SWAP4(x)<<32) & 0xffffffff00000000ULL) |\
- (SWAP4(x)))
+ SWAP4(x))
#else
# define SWAP2(a) (a)
# define SWAP4(a) (a)