summaryrefslogtreecommitdiffstats
path: root/stream
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-12-07 11:58:07 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-12-07 11:58:07 +0000
commit18004d2d98875ceb46484d3dd39ba51342d8bd0e (patch)
tree2b91c9b46bb66c69a3389ae6bdaeb91eb46fc14f /stream
parente15d11c89edfddaabd460a0c87a4d6d379d59189 (diff)
downloadmpv-18004d2d98875ceb46484d3dd39ba51342d8bd0e.tar.bz2
mpv-18004d2d98875ceb46484d3dd39ba51342d8bd0e.tar.xz
Hack around libavutil/bswap.h compilation problems due to always_inline undefined.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21523 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'stream')
-rw-r--r--stream/realrtsp/real.c2
-rw-r--r--stream/stream_cdda.c2
-rw-r--r--stream/stream_netstream.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/stream/realrtsp/real.c b/stream/realrtsp/real.c
index 2d6140e8f6..a0c92a87fc 100644
--- a/stream/realrtsp/real.c
+++ b/stream/realrtsp/real.c
@@ -32,7 +32,7 @@
#include "../config.h"
#include "libavutil/common.h"
-#include "libavutil/bswap.h"
+#include "mpbswap.h"
#include "real.h"
#include "asmrp.h"
#include "sdpplin.h"
diff --git a/stream/stream_cdda.c b/stream/stream_cdda.c
index 3601a46725..efb9afcb7f 100644
--- a/stream/stream_cdda.c
+++ b/stream/stream_cdda.c
@@ -7,7 +7,7 @@
#include "m_option.h"
#include "m_struct.h"
#include "libavutil/common.h"
-#include "libavutil/bswap.h"
+#include "mpbswap.h"
#include "libmpdemux/demuxer.h"
#include "cdd.h"
diff --git a/stream/stream_netstream.c b/stream/stream_netstream.c
index f8205ae87c..78af5d632f 100644
--- a/stream/stream_netstream.c
+++ b/stream/stream_netstream.c
@@ -61,7 +61,7 @@
#include "m_option.h"
#include "m_struct.h"
#include "libavutil/common.h"
-#include "libavutil/bswap.h"
+#include "mpbswap.h"
#include "netstream.h"
#include "tcp.h"