Remove mpbswap.h

This was once central, but now it's almost unused. Only vf_divtc still
uses it for extremely weird and incomprehensible reasons. The use in
stream.c is trivial. Replace these, and remove mpbswap.h.
This commit is contained in:
wm4
2014-09-25 19:58:22 +02:00
parent 09b7956ca5
commit debbff76f9
5 changed files with 5 additions and 39 deletions

View File

@@ -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;
}