annotate stream/cache2.h @ 27897:b380685ef564

On Darwin, don't use hostinfo on _all_ x86 variants to detect the running CPU, use cpuinfo instead. This allows MPlayer to get one step closer to building in 64 bits mode on Darwin, if one passes --target=x86_64-darwin to configure.
author gpoirier
date Sat, 15 Nov 2008 20:37:08 +0000
parents 77003eb2d9a8
children 9e739bdb049c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
26029
4129c8cfa742 Add MPLAYER_ prefix to multiple inclusion guards.
diego
parents: 25535
diff changeset
1 #ifndef MPLAYER_CACHE2_H
4129c8cfa742 Add MPLAYER_ prefix to multiple inclusion guards.
diego
parents: 25535
diff changeset
2 #define MPLAYER_CACHE2_H
19808
5385740067a1 * remove extern definitions of functions in .c files
attila
parents:
diff changeset
3
26184
7ee4ae1648e6 Add missing header #includes to fix 'make checkheaders'.
diego
parents: 26029
diff changeset
4 #include "stream.h"
7ee4ae1648e6 Add missing header #includes to fix 'make checkheaders'.
diego
parents: 26029
diff changeset
5
19808
5385740067a1 * remove extern definitions of functions in .c files
attila
parents:
diff changeset
6 extern void cache_uninit(stream_t *s);
26833
77003eb2d9a8 Add basic support for stream controls with cache enabled.
reimar
parents: 26184
diff changeset
7 int cache_do_control(stream_t *stream, int cmd, void *arg);
19808
5385740067a1 * remove extern definitions of functions in .c files
attila
parents:
diff changeset
8
26029
4129c8cfa742 Add MPLAYER_ prefix to multiple inclusion guards.
diego
parents: 25535
diff changeset
9 #endif /* MPLAYER_CACHE2_H */