diff options
Diffstat (limited to 'multimedia/libmpeg3/patches/patch-af')
-rw-r--r-- | multimedia/libmpeg3/patches/patch-af | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/multimedia/libmpeg3/patches/patch-af b/multimedia/libmpeg3/patches/patch-af new file mode 100644 index 00000000000..e890d31e5a9 --- /dev/null +++ b/multimedia/libmpeg3/patches/patch-af @@ -0,0 +1,22 @@ +$NetBSD: patch-af,v 1.1 2004/06/26 18:00:21 grant Exp $ + +--- video/reconstruct.c.orig Tue Jul 31 17:23:42 2001 ++++ video/reconstruct.c Tue Jul 31 17:24:52 2001 +@@ -572,7 +572,7 @@ + } + } + +-static inline void recv(unsigned char *s, unsigned char *d, int lx, int lx2, int h) ++static inline void xxrecv(unsigned char *s, unsigned char *d, int lx, int lx2, int h) + { + unsigned char *dp,*sp,*sp2; + int j; +@@ -971,7 +971,7 @@ + case 0x0: recc(s, d, lx2, h); break; + case 0x7: recva(s, d, lx, lx2, h); break; + case 0x6: recvac(s, d, lx, lx2, h); break; +- case 0x5: recv(s, d, lx, lx2, h); break; ++ case 0x5: xxrecv(s, d, lx, lx2, h); break; + case 0x4: recvc(s, d, lx, lx2, h); break; + case 0x9: rech(s, d, lx2, h); break; + case 0x8: rechc(s, d, lx2, h); break; |