0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

Windows Media Image (WMVP) can be decoded with WMV9 dmo codec

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13599 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
rtognimp 2004-10-09 22:14:36 +00:00
parent 716cfdcf12
commit f30d8e7989
2 changed files with 9 additions and 0 deletions

View File

@ -610,6 +610,7 @@ videocodec wmv9dmo
info "Windows Media Video 9 DMO"
status working
fourcc WMV3
fourcc WMVP
driver dmo
dll "wmv9dmod.dll"
guid 0x724bb6a4, 0xe526, 0x450f, 0xaf, 0xfa, 0xab, 0x9b, 0x45, 0x12, 0x91, 0x11
@ -623,6 +624,7 @@ videocodec wmvdmo
fourcc WMV1
fourcc WMV2
fourcc WMV3
fourcc WMVP
driver dmo
dll "wmvdmod.dll"
guid 0x82d353df, 0x90bd, 0x4382, 0x8b, 0xc2, 0x3f, 0x61, 0x92, 0xb7, 0x6e, 0x34

View File

@ -4694,6 +4694,12 @@ static WIN_BOOL WINAPI expGetOpenFileNameA(/*LPOPENFILENAMEA*/ void* lpfn)
return 1;
}
static double expfloor(double x)
{
dbgprintf("floor(%lf)\n", x);
return floor(x);
}
struct exports
{
char name[64];
@ -4911,6 +4917,7 @@ struct exports exp_msvcrt[]={
FF(fprintf,-1)
FF(printf,-1)
FF(getenv,-1)
FF(floor,-1)
#ifdef MPLAYER
FF(_EH_prolog,-1)
#endif