Mercurial > mplayer.hg
annotate loader/ext.h @ 30387:30d6f38357c7
If audio was identified as DTS in the PMT do not override that with TrueHD
based only on substream id.
Works with all available DTS and TrueHD samples available (2 each).
author | reimar |
---|---|
date | Sun, 24 Jan 2010 20:54:17 +0000 |
parents | 9e739bdb049c |
children |
rev | line source |
---|---|
15166
f5537cc95b02
Mark modified imported files as such to comply with GPL ¡ø2a.
diego
parents:
7386
diff
changeset
|
1 /* |
18783 | 2 * Modified for use with MPlayer, detailed changelog at |
3 * http://svn.mplayerhq.hu/mplayer/trunk/ | |
15166
f5537cc95b02
Mark modified imported files as such to comply with GPL ¡ø2a.
diego
parents:
7386
diff
changeset
|
4 */ |
f5537cc95b02
Mark modified imported files as such to comply with GPL ¡ø2a.
diego
parents:
7386
diff
changeset
|
5 |
26045 | 6 #ifndef MPLAYER_EXT_H |
7 #define MPLAYER_EXT_H | |
1307
d8c1b0b38edc
Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
diff
changeset
|
8 |
7386 | 9 #include "wine/windef.h" |
1307
d8c1b0b38edc
Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
diff
changeset
|
10 |
28051 | 11 LPVOID FILE_dommap( int unix_handle, LPVOID start, |
12 DWORD size_high, DWORD size_low, | |
13 DWORD offset_high, DWORD offset_low, | |
14 int prot, int flags ); | |
15 int FILE_munmap( LPVOID start, DWORD size_high, DWORD size_low ); | |
16 int wcsnicmp( const unsigned short* s1, const unsigned short* s2, int n ); | |
17 int __vprintf( const char *format, ... ); | |
1307
d8c1b0b38edc
Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
diff
changeset
|
18 |
26045 | 19 #endif /* MPLAYER_EXT_H */ |