annotate mpbswap.h @ 24573:6815406607cf

Fix building without network. When _network=='no' then _nemesi, _live and _native_rtsp would keep their default values, in the the case of _native_rtsp this happens to be 'yes'. Clearing them also produces nicer output.
author iive
date Sat, 22 Sep 2007 16:14:20 +0000
parents 2606b8c645de
children 4129c8cfa742
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
21507
fa99b3d31d13 Hack around libavutil/bswap.h compilation problems due to always_inline undefined.
reimar
parents:
diff changeset
1 #ifndef MPBSWAP_H
fa99b3d31d13 Hack around libavutil/bswap.h compilation problems due to always_inline undefined.
reimar
parents:
diff changeset
2 #define MPBSWAP_H
fa99b3d31d13 Hack around libavutil/bswap.h compilation problems due to always_inline undefined.
reimar
parents:
diff changeset
3
fa99b3d31d13 Hack around libavutil/bswap.h compilation problems due to always_inline undefined.
reimar
parents:
diff changeset
4 #include "libavutil/bswap.h"
23639
2606b8c645de Hide our swab prototype when the system has swab since at least the
reimar
parents: 23638
diff changeset
5 #ifndef HAVE_SWAB
23638
a81e246e3b38 Make sure we always have a swab() prototype when we use it,
reimar
parents: 21557
diff changeset
6 void swab(const void *from, void *to, ssize_t n);
23639
2606b8c645de Hide our swab prototype when the system has swab since at least the
reimar
parents: 23638
diff changeset
7 #endif
21507
fa99b3d31d13 Hack around libavutil/bswap.h compilation problems due to always_inline undefined.
reimar
parents:
diff changeset
8
fa99b3d31d13 Hack around libavutil/bswap.h compilation problems due to always_inline undefined.
reimar
parents:
diff changeset
9 #endif /* MPBSWAP_H */