changeset 13598:7a626d236929

Windows Media Image (WMVP) can be decoded with WMV9 dmo codec
author rtognimp
date Sat, 09 Oct 2004 22:14:36 +0000
parents 4b596caac6dd
children 094b023bd291
files etc/codecs.conf loader/win32.c
diffstat 2 files changed, 9 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/etc/codecs.conf	Sat Oct 09 21:01:29 2004 +0000
+++ b/etc/codecs.conf	Sat Oct 09 22:14:36 2004 +0000
@@ -610,6 +610,7 @@
   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 @@
   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
--- a/loader/win32.c	Sat Oct 09 21:01:29 2004 +0000
+++ b/loader/win32.c	Sat Oct 09 22:14:36 2004 +0000
@@ -4694,6 +4694,12 @@
     return 1;
 }
 
+static double expfloor(double x)
+{
+    dbgprintf("floor(%lf)\n", x);
+    return floor(x);
+}
+
 struct exports
 {
     char name[64];
@@ -4911,6 +4917,7 @@
     FF(fprintf,-1)
     FF(printf,-1)
     FF(getenv,-1)
+    FF(floor,-1)
 #ifdef MPLAYER
     FF(_EH_prolog,-1)
 #endif