summaryrefslogtreecommitdiffstats
path: root/stream
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2012-07-29 17:20:57 +0200
committerwm4 <wm4@nowhere>2012-07-30 01:37:28 +0200
commit74df1d8e05aa226c7e82a6d84f43c873ee234561 (patch)
treec75185bd2d82e06564c03c41577475f425e44edf /stream
parenta4bab723b30fe6190fb137b67bba521e55276cf6 (diff)
downloadmpv-74df1d8e05aa226c7e82a6d84f43c873ee234561.tar.bz2
mpv-74df1d8e05aa226c7e82a6d84f43c873ee234561.tar.xz
Remove compile time/runtime CPU detection, and drop some platforms
mplayer had three ways of enabling CPU specific assembler routines: a) Enable them at compile time; crash if the CPU can't handle it. b) Enable them at compile time, but let the configure script detect your CPU. Your binary will only crash if you try to run it on a different system that has less features than yours. This was the default, I think. c) Runtime detection. The implementation of b) and c) suck. a) is not really feasible (it sucks for users). Remove all code related to this, and use libav's CPU detection instead. Now the configure script will always enable CPU specific features, and disable them at runtime if libav reports them not as available. One implication is that now the compiler is always expected to handle SSE (etc.) inline assembly at runtime, unless it's explicitly disabled. Only checks for x86 CPU specific features are kept, the rest is either unused or barely used. Get rid of all the dump -mpcu, -march etc. flags. Trust the compiler to select decent settings. Get rid of support for the following operating systems: - BSD/OS (some ancient BSD fork) - QNX (don't care) - BeOS (dead, Haiku support is still welcome) - AIX (don't care) - HP-UX (don't care) - OS/2 (dead, actual support has been removed a while ago) Remove the configure code for detecting the endianness. Instead, use the standard header <endian.h>, which can be used if _GNU_SOURCE or _BSD_SOURCE is defined. (Maybe these changes should have been in a separate commit.) Since this is a quite violent code removal orgy, and I'm testing only on x86 32 bit Linux, expect regressions.
Diffstat (limited to 'stream')
-rw-r--r--stream/stream_cdda.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/stream/stream_cdda.c b/stream/stream_cdda.c
index 0fcd3dbc9b..5a11e051ab 100644
--- a/stream/stream_cdda.c
+++ b/stream/stream_cdda.c
@@ -24,6 +24,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
+#include <endian.h>
#include "talloc.h"
@@ -177,7 +178,7 @@ static int fill_buffer(stream_t *s, char *buffer, int max_len)
if (!buf)
return 0;
-#if HAVE_BIGENDIAN
+#if BYTE_ORDER == BIG_ENDIAN
for (i = 0; i < CDIO_CD_FRAMESIZE_RAW / 2; i++)
buf[i] = le2me_16(buf[i]);
#endif