summaryrefslogtreecommitdiffstats
path: root/loader
diff options
context:
space:
mode:
authorwm4 <wm4@mplayer2.org>2012-07-28 18:32:26 +0200
committerwm4 <wm4@mplayer2.org>2012-07-28 20:44:59 +0200
commitb319ae9190f7cdb98444a0fa3381b2b7f02fb920 (patch)
tree953f7382c8cc4dd60aa45e2f3f0d0f47cd489742 /loader
parent6c12e80789c96930913cc4239bda9f2d37b00262 (diff)
downloadmpv-b319ae9190f7cdb98444a0fa3381b2b7f02fb920.tar.bz2
mpv-b319ae9190f7cdb98444a0fa3381b2b7f02fb920.tar.xz
Remove QTX tests
Whatever.
Diffstat (limited to 'loader')
-rw-r--r--loader/qtx/list.c68
-rw-r--r--loader/qtx/qtxload.c125
2 files changed, 0 insertions, 193 deletions
diff --git a/loader/qtx/list.c b/loader/qtx/list.c
deleted file mode 100644
index bbf1684b5d..0000000000
--- a/loader/qtx/list.c
+++ /dev/null
@@ -1,68 +0,0 @@
-/*
- * To compile edit loader/win32.c and change the #if 0 to 1 at line 1326
- * to enable quicktime fix!
- *
- * This file is part of MPlayer.
- *
- * MPlayer is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * MPlayer is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with MPlayer; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- */
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-
-#include "qtxsdk/components.h"
-#include "qtxsdk/select.h"
-#include "loader/ldt_keeper.h"
-#include "loader/wine/winbase.h"
-
-int main(void) {
- void *handler;
- ComponentDescription desc;
- Component (*FindNextComponent)(Component prev,ComponentDescription* desc);
- long (*CountComponents)(ComponentDescription* desc);
- OSErr (*InitializeQTML)(long flags);
- OSErr (*EnterMovies)(void);
- OSErr ret;
-
- Setup_LDT_Keeper();
- handler = LoadLibraryA("/usr/local/lib/codecs/qtmlClient.dll");
- printf("***************************\n");
- InitializeQTML = 0x1000c870; //GetProcAddress(handler, "InitializeQTML");
- EnterMovies = 0x10003ac0; //GetProcAddress(handler, "EnterMovies");
- FindNextComponent = 0x1000d5f0; //GetProcAddress(handler, "FindNextComponent");
- CountComponents = 0x1000d5d0; //GetProcAddress(handler, "CountComponents");
-// = GetProcAddress(handler, "");
- printf("handler: %p, funcs: %p %p %p, %p\n", handler, InitializeQTML, EnterMovies, FindNextComponent,CountComponents);
-
- ret=InitializeQTML(0);
- printf("InitializeQTML->%d\n",ret);
- ret=EnterMovies();
- printf("EnterMovies->%d\n",ret);
-
- memset(&desc,0,sizeof(desc));
- desc.componentType= (((unsigned char)'S')<<24)|
- (((unsigned char)'V')<<16)|
- (((unsigned char)'Q')<<8)|
- (((unsigned char)'5'));
- desc.componentSubType=0;
- desc.componentManufacturer=0;
- desc.componentFlags=0;
- desc.componentFlagsMask=0;
-
- printf("Count = %ld\n",CountComponents(&desc));
-
- exit(0);
-}
diff --git a/loader/qtx/qtxload.c b/loader/qtx/qtxload.c
deleted file mode 100644
index f66d7fc338..0000000000
--- a/loader/qtx/qtxload.c
+++ /dev/null
@@ -1,125 +0,0 @@
-/*
- * This file is part of MPlayer.
- *
- * MPlayer is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * MPlayer is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with MPlayer; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- */
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-
-#include "qtxsdk/components.h"
-#include "qtxsdk/select.h"
-#include "loader/ldt_keeper.h"
-#include "loader/wine/winbase.h"
-#include "mp_msg.h"
-
-unsigned int* x_table[0x00001837];
-
-static OSErr (*InitializeQTML)(long flags);
-
-int main(void) {
- void *handler;
- void *handler2;
- void* theqtdp=NULL;
- void* compcall=NULL;
- void* compcallws=NULL;
- ComponentResult (*dispatcher)(ComponentParameters *params, Globals glob);
- ComponentResult ret;
- ComponentParameters *params;
- ComponentDescription desc;
- void *globals=NULL;
- //unsigned int esp=0;
- //int i;
-
- mp_msg_init();
- //mp_msg_set_level(10);
-
- Setup_LDT_Keeper();
- printf("loading qts\n");
-// handler = LoadLibraryA("/root/.wine/fake_windows/Windows/System/QuickTime.qts");
- handler = LoadLibraryA("QuickTime.qts");
- theqtdp = GetProcAddress(handler, "theQuickTimeDispatcher");
- compcall = GetProcAddress(handler, "CallComponent");
- compcallws = GetProcAddress(handler, "CallComponentFunctionWithStorage");
-
- InitializeQTML = 0x6299e590;//GetProcAddress(handler, "InitializeQTML");
- InitializeQTML(6+16);
-
- printf("loading svq3\n");
- handler2= LoadLibraryA("/root/.wine/fake_windows/Windows/System/QuickTime/QuickTimeEssentials.qtx");
- printf("done\n");
- dispatcher = GetProcAddress(handler2, "SMD_ComponentDispatch");
-// handler = expLoadLibraryA("/usr/local/lib/codecs/On2_VP3.qtx");
-// dispatcher = GetProcAddress(handler, "CDComponentDispatcher");
- printf("handler: %p, dispatcher: %p theqtdp: %p\n", handler, dispatcher, theqtdp);
-
-// printf("theQuickTimeDispatcher = %p\n",GetProcAddress(handler, "theQuickTimeDispatcher"));
-
- // patch svq3 dll:
- *((void**)0x63214c98) = NULL;
- *((void**)0x63214c9c) = theqtdp; // theQt...
- *((void**)0x63214ca0) = compcall; //0xdeadbeef; //dispatcher; // CallCOmponent_ptr
- *((void**)0x63214ca4) = compcallws; //0xdeadbef2; //dispatcher; // CallComponentWithStorage_ptr
-
- desc.componentType=0;
- desc.componentSubType=0;
- desc.componentManufacturer=0;
- desc.componentFlags=0;
- desc.componentFlagsMask=0;
-
- params = malloc(sizeof(ComponentParameters)+2048);
-
- params->flags = 0;
- params->paramSize = 4;
- params->what = kComponentOpenSelect;
- params->params[0] = 0x830000; //0x820000|i; //(i<<16)|0x24; //0x820024;
- ret = dispatcher(params, &globals);
- printf("!!! CDComponentDispatch() => 0x%X glob=%p\n",ret,globals);
-
-// memset(x_table,12,4*0x00001837);
-
-//for(i=0;i<=255;i++){
-
- // params->what = kComponentVersionSelect;
- // params->what = kComponentRegisterSelect;
- // params->what = kComponentOpenSelect;
- // params->what = kComponentCanDoSelect;
-
- printf("params: flags: %d, paramSize: %d, what: %d, params[0] = %x\n",
- params->flags, params->paramSize, params->what, params->params[0]);
-
-// __asm__ volatile ("movl %%esp, %0\n\t" : "=a" (esp) :: "memory" );
-// printf("ESP=%p\n",esp);
-
- *((void**)0x62b7d640) = &x_table[0]; //malloc(0x00001837 * 4); // ugly hack?
-
- printf("params=%p &glob=%p x_table=%p\n",params,&globals, &x_table[0]);
-
- ret = dispatcher(params, &globals);
-
-// __asm__ volatile ("movl %%esp, %0\n\t" : "=a" (esp) :: "memory" );
-// printf("ESP=%p\n",esp);
-
- printf("!!! CDComponentDispatch() => %d glob=%p\n",ret,globals);
-// if(ret!=-3000) break;
-//}
-
-// for(i=0;i<0x00001837;i++)
-// if(x_table[i]) printf("x_table[0x%X] = %p\n",i,x_table[i]);
-
- exit(0);
- //return 0;
-}