summaryrefslogtreecommitdiffstats
path: root/stream/stream.c
diff options
context:
space:
mode:
Diffstat (limited to 'stream/stream.c')
-rw-r--r--stream/stream.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/stream/stream.c b/stream/stream.c
index 7d8dc7d64d..ae4335c8b7 100644
--- a/stream/stream.c
+++ b/stream/stream.c
@@ -31,7 +31,6 @@
#include <assert.h>
#include <libavutil/common.h>
-#include "osdep/mpbswap.h"
#include "osdep/atomics.h"
#include "talloc.h"
@@ -860,7 +859,7 @@ static uint16_t stream_read_word_endian(stream_t *s, bool big_endian)
unsigned int y = stream_read_char(s);
y = (y << 8) | stream_read_char(s);
if (big_endian)
- y = bswap_16(y);
+ y = (y >> 8) | ((y << 8) & 0xFF);
return y;
}