Mercurial > mplayer.hg
annotate loader/qtx/qtxload.c @ 29318:3c3406fa63a0
Drop redundant setting of message language to English when all languages
are enabled. This is the default anyway.
author | diego |
---|---|
date | Sun, 14 Jun 2009 12:31:35 +0000 |
parents | 0f1b5b68af32 |
children | 008338d7679f |
rev | line source |
---|---|
2501 | 1 #include <stdio.h> |
2796 | 2 #include <stdlib.h> |
3 #include <string.h> | |
4 | |
2501 | 5 #include "qtxsdk/components.h" |
2778 | 6 #include "qtxsdk/select.h" |
26537
4120a65789a8
Add missing ldt_keeper.h #include; this fixes a bunch of implicit declaration
diego
parents:
26530
diff
changeset
|
7 #include "ldt_keeper.h" |
26530 | 8 #include "mp_msg.h" |
2501 | 9 |
27772
145dec34e7d8
Translate a Hungarian comment, thanks to Denes Balatoni.
diego
parents:
27757
diff
changeset
|
10 /* this is what a plain component looks like */ |
2501 | 11 ComponentResult ComponentDummy( |
2778 | 12 ComponentParameters *params, |
2501 | 13 void **globals, |
25589
276d47411414
Fix compilation by replacing a broken macro with in-place code.
diego
parents:
18889
diff
changeset
|
14 ComponentResult (*ComponentDispatch)(ComponentParameters *, void **)) |
2501 | 15 { |
16 printf("ComponentDummy(params: %p, globals: %p, dispatcher: %p) called!\n", | |
17 params, globals, ComponentDispatch); | |
18 printf(" Dummy: global datas: %p\n", *globals); | |
19 printf(" Dummy: returning 0\n"); | |
26757
0fdf04b07ecb
cosmetics: Remove pointless parentheses from return statements.
diego
parents:
26538
diff
changeset
|
20 return 0; |
2501 | 21 } |
22 | |
18889
e60c8c7399d2
get_path as const, patch by Stefan Huehner, stefan AT huehner-org
reynaldo
parents:
16194
diff
changeset
|
23 char *get_path(const char* x){ return strdup(x);} |
2796 | 24 |
3935 | 25 void* LoadLibraryA(char* name); |
2796 | 26 void* GetProcAddress(void* handle,char* func); |
27 | |
28 #define __stdcall __attribute__((__stdcall__)) | |
29 #define __cdecl __attribute__((__cdecl__)) | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28599
diff
changeset
|
30 #define APIENTRY |
2501 | 31 |
3935 | 32 unsigned int* x_table[0x00001837]; |
33 | |
8268 | 34 static OSErr (*InitializeQTML)(long flags); |
35 | |
28599
3ff0da40013d
cosmetics: Replace unused 'argc/argv' in main declarations by 'void'.
diego
parents:
27772
diff
changeset
|
36 int main(void) { |
2501 | 37 void *handler; |
8268 | 38 void *handler2; |
39 void* theqtdp=NULL; | |
40 void* compcall=NULL; | |
41 void* compcallws=NULL; | |
16194 | 42 ComponentResult (*dispatcher)(ComponentParameters *params, Globals glob); |
2796 | 43 ComponentResult ret; |
44 ComponentParameters *params; | |
45 ComponentDescription desc; | |
46 void *globals=NULL; | |
26528
da85ae10987e
Comment out variables only used in commented-out code, fixes the warnings:
diego
parents:
25794
diff
changeset
|
47 //unsigned int esp=0; |
da85ae10987e
Comment out variables only used in commented-out code, fixes the warnings:
diego
parents:
25794
diff
changeset
|
48 //int i; |
2501 | 49 |
8268 | 50 mp_msg_init(); |
25590
62959db3a504
Comment out non-existing mp_msg_set_level function to fix linking.
diego
parents:
25589
diff
changeset
|
51 //mp_msg_set_level(10); |
8268 | 52 |
2501 | 53 Setup_LDT_Keeper(); |
8268 | 54 printf("loading qts\n"); |
55 // handler = LoadLibraryA("/root/.wine/fake_windows/Windows/System/QuickTime.qts"); | |
56 handler = LoadLibraryA("QuickTime.qts"); | |
57 theqtdp = GetProcAddress(handler, "theQuickTimeDispatcher"); | |
25794
2c8cdb9123b8
Fix a ton of illegal identifiers. Identifiers starting with __ or _ and a
diego
parents:
25593
diff
changeset
|
58 compcall = GetProcAddress(handler, "CallComponent"); |
2c8cdb9123b8
Fix a ton of illegal identifiers. Identifiers starting with __ or _ and a
diego
parents:
25593
diff
changeset
|
59 compcallws = GetProcAddress(handler, "CallComponentFunctionWithStorage"); |
8268 | 60 |
61 InitializeQTML = 0x6299e590;//GetProcAddress(handler, "InitializeQTML"); | |
62 InitializeQTML(6+16); | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28599
diff
changeset
|
63 |
8268 | 64 printf("loading svq3\n"); |
65 handler2= LoadLibraryA("/root/.wine/fake_windows/Windows/System/QuickTime/QuickTimeEssentials.qtx"); | |
66 printf("done\n"); | |
67 dispatcher = GetProcAddress(handler2, "SMD_ComponentDispatch"); | |
25593 | 68 // handler = expLoadLibraryA("/usr/local/lib/codecs/On2_VP3.qtx"); |
2796 | 69 // dispatcher = GetProcAddress(handler, "CDComponentDispatcher"); |
8268 | 70 printf("handler: %p, dispatcher: %p theqtdp: %p\n", handler, dispatcher, theqtdp); |
71 | |
72 // printf("theQuickTimeDispatcher = %p\n",GetProcAddress(handler, "theQuickTimeDispatcher")); | |
2796 | 73 |
8268 | 74 // patch svq3 dll: |
75 *((void**)0x63214c98) = NULL; | |
76 *((void**)0x63214c9c) = theqtdp; // theQt... | |
77 *((void**)0x63214ca0) = compcall; //0xdeadbeef; //dispatcher; // CallCOmponent_ptr | |
78 *((void**)0x63214ca4) = compcallws; //0xdeadbef2; //dispatcher; // CallComponentWithStorage_ptr | |
3935 | 79 |
2796 | 80 desc.componentType=0; |
81 desc.componentSubType=0; | |
82 desc.componentManufacturer=0; | |
83 desc.componentFlags=0; | |
84 desc.componentFlagsMask=0; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28599
diff
changeset
|
85 |
2796 | 86 params = malloc(sizeof(ComponentParameters)+2048); |
2501 | 87 |
2796 | 88 params->flags = 0; |
8268 | 89 params->paramSize = 4; |
90 params->what = kComponentOpenSelect; | |
91 params->params[0] = 0x830000; //0x820000|i; //(i<<16)|0x24; //0x820024; | |
3935 | 92 ret = dispatcher(params, &globals); |
93 printf("!!! CDComponentDispatch() => 0x%X glob=%p\n",ret,globals); | |
94 | |
95 // memset(x_table,12,4*0x00001837); | |
96 | |
97 //for(i=0;i<=255;i++){ | |
2778 | 98 |
2796 | 99 // params->what = kComponentVersionSelect; |
100 // params->what = kComponentRegisterSelect; | |
8268 | 101 // params->what = kComponentOpenSelect; |
2796 | 102 // params->what = kComponentCanDoSelect; |
2778 | 103 |
2796 | 104 printf("params: flags: %d, paramSize: %d, what: %d, params[0] = %x\n", |
105 params->flags, params->paramSize, params->what, params->params[0]); | |
2778 | 106 |
27757
b5a46071062a
Replace all occurrences of '__volatile__' and '__volatile' by plain 'volatile'.
diego
parents:
26757
diff
changeset
|
107 // __asm__ volatile ("movl %%esp, %0\n\t" : "=a" (esp) :: "memory" ); |
3935 | 108 // printf("ESP=%p\n",esp); |
109 | |
110 *((void**)0x62b7d640) = &x_table[0]; //malloc(0x00001837 * 4); // ugly hack? | |
111 | |
112 printf("params=%p &glob=%p x_table=%p\n",params,&globals, &x_table[0]); | |
2778 | 113 |
2796 | 114 ret = dispatcher(params, &globals); |
115 | |
27757
b5a46071062a
Replace all occurrences of '__volatile__' and '__volatile' by plain 'volatile'.
diego
parents:
26757
diff
changeset
|
116 // __asm__ volatile ("movl %%esp, %0\n\t" : "=a" (esp) :: "memory" ); |
3935 | 117 // printf("ESP=%p\n",esp); |
2778 | 118 |
3935 | 119 printf("!!! CDComponentDispatch() => %d glob=%p\n",ret,globals); |
120 // if(ret!=-3000) break; | |
121 //} | |
122 | |
123 // for(i=0;i<0x00001837;i++) | |
124 // if(x_table[i]) printf("x_table[0x%X] = %p\n",i,x_table[i]); | |
26538
1b05ff23d572
Remove calls to Restore_LDT_Keeper, exit() is called immediately afterwards
diego
parents:
26537
diff
changeset
|
125 |
2796 | 126 exit(0); |
127 //return 0; | |
2501 | 128 } |