openbsd-ports/x11/mplayer/patches/patch-libavcodec_bitstream_h
ajacoutot c2b0a0cb83 - add live555 support
- regen patches while here

from brad
ok robert@
2007-04-19 08:37:09 +00:00

13 lines
446 B
Plaintext

$OpenBSD: patch-libavcodec_bitstream_h,v 1.5 2007/04/19 08:37:09 ajacoutot Exp $
--- libavcodec/bitstream.h.orig Sun Jun 11 20:35:48 2006
+++ libavcodec/bitstream.h Thu Apr 19 09:41:02 2007
@@ -374,7 +374,7 @@ for examples see get_bits, show_bits, skip_bits, get_v
static inline int unaligned32_be(const void *v)
{
-#ifdef CONFIG_ALIGN
+#if 1
const uint8_t *p=v;
return (((p[0]<<8) | p[1])<<16) | (p[2]<<8) | (p[3]);
#else