Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>2007-06-24 18:29:52 +0400
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>2007-06-24 18:29:52 +0400
commitc08be350da88ee8243043a2ed47cd7ee2e94daec (patch)
tree3c00a35ec5a9190ce7c6910cc43efb516efb6253 /libavutil/intreadwrite.h
parentca3e90825c1c455a84b27a15ae5dd61cdee87b97 (diff)
intreadwrite.h needs bswap.h if HAVE_FAST_UNALIGNED is set, so include it.
Originally committed as revision 9414 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/intreadwrite.h')
-rw-r--r--libavutil/intreadwrite.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavutil/intreadwrite.h b/libavutil/intreadwrite.h
index 6e265eaa17..085aaadb9d 100644
--- a/libavutil/intreadwrite.h
+++ b/libavutil/intreadwrite.h
@@ -20,6 +20,7 @@
#define INTREADWRITE_H
#include <stdint.h>
+#include "bswap.h"
#ifdef __GNUC__