manpage: Remove "MPlayer only" notes
[mplayer/glamo.git] / TOOLS / realcodecs / drv3.c
blob38639c277bdeda9f7905100f3c2a6795f2119d2d
1 /*
2 * This is a small DLL that works as a wrapper for the actual realdrv3.so.6.0
3 * DLL from RealPlayer 8.0.
5 * This file is part of MPlayer.
7 * MPlayer is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * MPlayer is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 Assuming that RACloseCodec is the last call.
26 #include <stddef.h>
27 #include <stdio.h>
28 #include <stdlib.h>
29 #include <string.h>
30 #include <dlfcn.h>
31 #include <sys/time.h>
33 typedef unsigned long ulong;
35 ulong (*rvyuvCustomMessage)(ulong,ulong);
36 ulong (*rvyuvFree)(ulong);
37 ulong (*rvyuvHiveMessage)(ulong,ulong);
38 ulong (*rvyuvInit)(ulong,ulong);
39 ulong (*rvyuvTransform)(ulong,ulong,ulong,ulong,ulong);
40 ulong (*rvyuvRNFRUFree)(ulong);
41 ulong (*rvyuvRNFRUGetFrame)(ulong,ulong,ulong);
42 ulong (*rvyuvRNFRUInit)(ulong,ulong,ulong);
43 ulong (*rvyuvRNFRUSetup)(ulong,ulong,ulong,ulong,ulong,ulong,ulong,ulong);
45 //void (*setDLLAccessPath)(ulong);
47 int b_dlOpened=0;
48 void *handle=NULL;
50 /* exits program when failure */
51 void loadSyms(void) {
52 fputs("loadSyms()\n", stderr);
53 if (!b_dlOpened) {
54 char *error;
56 fputs("opening dll...\n",stderr);
57 handle = dlopen ("/usr/local/RealPlayer8/Codecs/realdrv3.so.6.0", RTLD_LAZY);
58 if (!handle) {
59 fputs (dlerror(), stderr);
60 exit(1);
63 rvyuvCustomMessage = dlsym(handle, "RV20toYUV420CustomMessage");
64 if ((error = dlerror()) != NULL) {
65 fprintf (stderr, "dlsym(rvyuvCustomMessage): %s\n", error);
66 exit(1);
68 fprintf(stderr, "RV20toYUV420CustomMessage()=0x%0x\n", rvyuvCustomMessage);
69 rvyuvFree = dlsym(handle, "RV20toYUV420Free");
70 if ((error = dlerror()) != NULL) {
71 fprintf (stderr, "dlsym(rvyuvFree): %s\n", error);
72 exit(1);
74 fprintf(stderr, "RV20toYUV420Free()=0x%0x\n", rvyuvFree);
75 rvyuvHiveMessage = dlsym(handle, "RV20toYUV420HiveMessage");
76 if ((error = dlerror()) != NULL) {
77 fprintf (stderr, "dlsym(rvyuvHiveMessage): %s\n", error);
78 exit(1);
80 fprintf(stderr, "RV20toYUV420HiveMessage()=0x%0x\n", rvyuvHiveMessage);
81 rvyuvInit = dlsym(handle, "RV20toYUV420Init");
82 if ((error = dlerror()) != NULL) {
83 fprintf (stderr, "dlsym(rvyuvInit): %s\n", error);
84 exit(1);
86 fprintf(stderr, "RV20toYUV420Init()=0x%0x\n", rvyuvInit);
87 rvyuvTransform = dlsym(handle, "RV20toYUV420Transform");
88 if ((error = dlerror()) != NULL) {
89 fprintf (stderr, "dlsym(rvyuvTransform): %s\n", error);
90 exit(1);
92 fprintf(stderr, "RV20toYUV420Transform()=0x%0x\n", rvyuvTransform);
93 rvyuvRNFRUFree = dlsym(handle, "RV20toYUV420_RN_FRU_Free");
94 if ((error = dlerror()) != NULL) {
95 fprintf (stderr, "dlsym(rvyuvRNFRUFree): %s\n", error);
96 exit(1);
98 fprintf(stderr, "RV20toYUV420_RN_FRU_Free()=0x%0x\n", rvyuvRNFRUFree);
99 rvyuvRNFRUGetFrame = dlsym(handle, "RV20toYUV420_RN_FRU_GetFrame");
100 if ((error = dlerror()) != NULL) {
101 fprintf (stderr, "dlsym(rvyuvRNFRUGetFrame): %s\n", error);
102 exit(1);
104 fprintf(stderr, "RV20toYUV420_RN_FRU_GetFrame()=0x%0x\n", rvyuvRNFRUGetFrame);
105 rvyuvRNFRUInit = dlsym(handle, "RV20toYUV420_RN_FRU_Init");
106 if ((error = dlerror()) != NULL) {
107 fprintf (stderr, "dlsym(rvyuvRNFRUInit): %s\n", error);
108 exit(1);
110 fprintf(stderr, "RV20toYUV420_RN_FRU_Init()=0x%0x\n", rvyuvRNFRUInit);
111 rvyuvRNFRUSetup = dlsym(handle, "RV20toYUV420_RN_FRU_Setup");
112 if ((error = dlerror()) != NULL) {
113 fprintf (stderr, "dlsym(rvyuvRNFRUSetup): %s\n", error);
114 exit(1);
116 fprintf(stderr, "RV20toYUV420_RN_FRU_Setup()=0x%0x\n", rvyuvRNFRUSetup);
118 /* setDLLAccessPath = dlsym(handle, "SetDLLAccessPath");
119 if ((error = dlerror()) != NULL) {
120 fprintf (stderr, "dlsym(SetDLLAccessPath): %s\n", error);
121 exit(1);
123 */ b_dlOpened=1;
127 void closeDll(void) {
128 if (handle) {
129 b_dlOpened=0;
130 dlclose(handle);
131 handle=NULL;
135 void _init(void) {
136 loadSyms();
139 struct timezone tz;
140 struct timeval tv1, tv2;
142 void tic(void) {
143 gettimeofday(&tv1, &tz);
146 void toc(void) {
147 long secs, usecs;
148 gettimeofday(&tv2, &tz);
149 secs=tv2.tv_sec-tv1.tv_sec;
150 usecs=tv2.tv_usec-tv1.tv_usec;
151 if (usecs<0) {
152 usecs+=1000000;
153 --secs;
155 // fprintf(stderr, "Duration: %ld.%.6lds\n", secs, usecs);
159 static void hexdump(void *pos, int len) {
160 unsigned char *cpos=pos, *cpos1;
161 int lines=(len+15)>>4;
162 while(lines--) {
163 int len1=len, i;
164 fprintf(stderr, "#R# %0x ", (int)cpos-(int)pos);
165 cpos1=cpos;
166 for (i=0;i<16;i++) {
167 if (len1>0) {
168 fprintf(stderr, "%02x ", *(cpos++));
169 } else {
170 fprintf(stderr, " ");
172 len1--;
174 fputs(" ", stderr);
175 cpos=cpos1;
176 for (i=0;i<16;i++) {
177 if (len>0) {
178 unsigned char ch=(*(cpos++));
179 if ((ch<32)||(ch>127)) ch='.';
180 fputc(ch, stderr);
182 len--;
184 fputs("\n", stderr);
186 fputc('\n', stderr);
190 ulong RV20toYUV420CustomMessage(ulong* p1,ulong p2) {
191 ulong result;
192 // ulong *pp1=p1;
193 ulong temp[16];
194 fprintf(stderr, "#R# => RV20toYUV420CustomMessage(%p,%p) [%ld,%ld,%ld] \n", p1, p2, p1[0],p1[1],p1[2]);
195 if(p1[0]==0x24){
196 hexdump(p1[2],16);
197 memset(temp,0x77,16*4);
198 memcpy(temp,p1[2],16);
199 p1[2]=temp;
200 } else {
201 return 0;
204 // fprintf(stderr, "ulong p2=0x%0lx(%ld))\n", p2, p2);
205 // hexdump((void*)p1, 12);
206 // if (pp1[0]==0x24) {
207 // hexdump((void*)(pp1[2]),128);
208 // }
209 // tic();
210 result=(*rvyuvCustomMessage)(p1,p2);
211 // toc();
212 fprintf(stderr, "#R# <= RV20toYUV420CustomMessage --> 0x%0lx(%ld)\n", result, result);
213 return result;
216 ulong RV20toYUV420Free(ulong p1) {
217 ulong result;
218 fprintf(stderr, "RV20toYUV420Free(ulong p1=0x%0lx(%ld))\n", p1, p1);
219 // hexdump((void*)p1, 44);
220 tic();
221 result=(*rvyuvFree)(p1);
222 toc();
223 // hexdump((void*)p1, 44);
224 fprintf(stderr, "RV20toYUV420Free --> 0x%0lx(%ld)\n\n\n", result, result);
225 return result;
228 char h_temp[32768];
230 ulong RV20toYUV420HiveMessage(ulong *p1,ulong p2) {
231 ulong result;
232 fprintf(stderr, "#R# RV20toYUV420HiveMessage(%p,%p)\n", p1, p2);
233 // p1->constant,p1->width,p1->height,p1->format1,p1->format2);
234 // fprintf(stderr, "ulong p2=0x%0lx(%ld))\n", p2, p2);
235 // hexdump((void*)p1, sizeof(struct init_data));
237 fprintf(stderr,">HIVE %ld %p\n",p1[0],p1[1]);
239 fprintf(stderr,"COPY INIT DATA!\n");
240 memset(h_temp,0x77,1000);
241 memcpy(h_temp,p1,4);
242 fprintf(stderr,"COPY OK!\n");
244 // tic();
245 // result=(*rvyuvHiveMessage)(p1,p2);
246 result=(*rvyuvHiveMessage)(h_temp,p2);
247 // toc();
249 fprintf(stderr,"COPY INIT DATA!\n");
250 memcpy(p1,h_temp,8);
251 fprintf(stderr,"COPY OK!\n");
253 memset(h_temp,0x77,1000);
255 // p1[0]=0;
256 // p1[1]=0x20000000;
258 fprintf(stderr,"<HIVE %ld %p\n",p1[0],p1[1]);
260 // hexdump((void*)p1, sizeof(struct init_data));
261 // hexdump((void*)p1, 8);
262 fprintf(stderr, "#R# RV20toYUV420HiveMessage --> 0x%0lx(%ld)\n\n", result, result);
263 return result;
266 struct init_data {
267 short constant; //=0xb;
268 short width, height;
269 short x1,x2,x3;
270 // 12
271 ulong format1;
272 long x4;
273 ulong format2;
274 // long unknown[32];
277 static char i_temp[32768];
279 ulong RV20toYUV420Init(ulong p1,ulong p2) {
280 ulong result;
281 fprintf(stderr, "#R# RV20toYUV420Init(ulong p1=0x%0lx(%ld), ", p1, p1);
282 fprintf(stderr, "ulong p2=0x%0lx(%ld))\n", p2, p2);
284 fprintf(stderr,"COPY INIT DATA!\n");
285 memcpy(i_temp,p1,24);
286 p1=i_temp;
287 fprintf(stderr,"COPY OK!\n");
289 hexdump((void*)p1, 24);
290 tic();
291 result=(*rvyuvInit)(p1,p2);
292 toc();
293 hexdump((void*)p1, 24);
295 memset(i_temp,0x77,1000);
297 // hexdump(*((void**)p2), 512);
298 fprintf(stderr, "#R# RV20toYUV420Init --> 0x%0lx(%ld)\n\n\n", result, result);
299 return result;
302 unsigned long build_crc(unsigned char *pch, unsigned long len) {
303 unsigned long crc=0, a;
304 // unsigned long b;
305 // it's not the real crc function, but so what...
306 while (len--) {
307 a=*(pch++);
308 // a=a+(a<<6);
309 // a^=0x555;
310 // b=(crc>>29)&7;
311 // crc=((crc<<3)+b)^a;
312 crc^=a;
314 return crc;
317 #define MIN(a,b) ((a)<(b)?(a):(b))
319 // p1=input data (stream)
320 // p2=output buffer
321 // p3=input struct
322 // p4=output struct
323 // p5=rvyuv_main
324 ulong RV20toYUV420Transform(ulong p1,ulong p2,ulong p3,ulong p4,ulong p5) {
326 //result=RV20toYUV420Transform(char *input_stream, char *output_data,
327 // struct transin *, struct transout *, struct rvyuvMain *);
329 ulong result;
330 ulong *pp3=p3;
331 ulong *pp4=p4;
332 void *v;
333 ulong temp[128];
334 int i;
336 unsigned long crc_src, crc0;
337 // unsigned long len, crc1, crc2;
338 unsigned char *pch=(char *)p1;
339 fprintf(stderr, "#R# RV20toYUV420Transform(in=%p,out=%p,tin=%p,tout=%p,yuv=%p)\n",p1,p2,p3,p4,p5);
340 // input data, length=*p3
341 // hexdump((void*)p1, /*MIN(64,*/ *((ulong*)p3) /*)*/ );
342 // v=p5;
343 // v+=0x3c;
344 // v=*((void **)v);
345 // pp3=v;
346 // len=pp3[3]*pp3[4]*3/2;
347 // pch=p2;
348 // while(--len) *(pch++)=0;
349 // hexdump((char*)p2, 64);
350 // hexdump((void*)p3, 32);
351 // hexdump((void*)p5, 64);
352 // pp3=p3;
353 // if (pp3[3]>1024) {
354 // hexdump((void*)(pp3[3]),32);
355 // pp3=pp3[3];
356 // }
358 pp3=p3;
359 // it's not the real crc function, but so what...
360 pch=p1;
361 crc_src=build_crc(pch, pp3[0]);
363 pp4=pp3[3];
364 fprintf(stderr,"transin1[%p]: {%ld/%ld} ",pp4,pp3[2],pp3[0]);
365 // pp4[0],pp4[1],pp4[2],pp4[3],
366 // pp4[4],pp4[5],pp4[6],pp4[7]);
368 memset(temp,0x77,128*4);
370 memcpy(temp,pp4,8*(pp3[2]+1));
371 for(i=0;i<=pp3[2];i++){
372 fprintf(stderr," %p(%ld)",temp[i*2],temp[i*2+1]);
374 fprintf(stderr,"\n");
377 pp3[3]=pp4=temp;
379 // pp4[2]=
380 // pp4[3]=
381 // pp4[4]=NULL;
383 //pp4[6]=pp4[5];
385 v=p5;
386 /* fprintf(stderr, "rvyuvMain=0x%0x\n", v);
387 v+=0x3c;
388 v=*((void **)v);
389 fprintf(stderr, "[$+3ch]=0x%0x\n", v);
390 hexdump(v, 512);
391 v+=0x60;
392 v=*((void **)v);
393 fprintf(stderr, "[$+60h]=0x%0x\n", v);
394 hexdump(v, 512);
395 v+=0x28;
396 v=*((void **)v);
397 fprintf(stderr, "[$+28h]=0x%0x\n", v);
398 hexdump(v, 512);
400 /* v+=0x178;
401 hexdump(v, 16);
402 v=*((void **)v);
403 if (v>0x8000000) {
404 fprintf(stderr, "[$+178h]=0x%0x\n", v);
405 hexdump(v, 128);
408 // tic();
409 result=(*rvyuvTransform)(p1,p2,p3,p4,p5);
410 // toc();
412 crc0=build_crc(p2, 176*144);
413 // crc1=build_crc(p2+pp4[3]*pp4[4]/2, pp4[3]*pp4[4]/2);
414 // crc2=build_crc(p2+pp4[3]*pp4[4], pp4[3]*pp4[4]/2);
416 // pp3=p3;
417 // TRANSFORM: <timestamp> <numblocks> <len> <crc_src> <crc_dest> <p4[4]>
418 // fprintf(stderr, "TRAFO:\t%ld\t%ld\t%ld\t%.8lX\t%.8lX\t%ld\n",
419 // pp3[5], pp3[2], pp3[0], crc_src, crc0, pp3[4]);
420 fprintf(stderr, "#R# Decode: %ld(%ld) [%08lX] pts=%ld -> %ld [%08lX]\n",
421 pp3[0],pp3[2],crc_src,pp3[5],
422 result,crc0);
424 // output
425 // hexdump((char*)p2, /*64*/ pp4[3]*pp4[4]/2);
426 // hexdump((void*)p4, 20);
427 // hexdump((void*)p5, 512);
428 // fprintf(stderr, "RV20toYUV420Transform --> 0x%0lx(%ld)\n\n\n", result, result);
429 return result;
432 ulong RV20toYUV420_RN_FRU_Free(ulong p1) {
433 ulong result;
434 fprintf(stderr, "RV20toYUV420_RN_FRU_Free(ulong p1=0x%0lx(%ld))\n", p1, p1);
435 tic();
436 result=(*rvyuvRNFRUFree)(p1);
437 toc();
438 fprintf(stderr, "RV20toYUV420_RN_FRU_Free --> 0x%0lx(%ld)\n\n\n", result, result);
439 return result;
442 ulong RV20toYUV420_RN_FRU_GetFrame(ulong p1,ulong p2,ulong p3) {
443 ulong result;
444 // fprintf(stderr, "RV20toYUV420_RN_FRU_GetFrame(ulong p1=0x%0lx(%ld), ", p1, p1);
445 // fprintf(stderr, "ulong p2=0x%0lx(%ld),\n\t", p2, p2);
446 // fprintf(stderr, "ulong p3=0x%0lx(%ld))\n", p3, p3);
447 // hexdump((void*)p1, 44);
448 tic();
449 result=(*rvyuvRNFRUGetFrame)(p1,p2,p3);
450 toc();
451 // hexdump((void*)p1, 44);
452 // fprintf(stderr, "RV20toYUV420_RN_FRU_GetFrame --> 0x%0lx(%ld)\n\n\n", result, result);
453 return result;
456 ulong RV20toYUV420_RN_FRU_Init(ulong p1,ulong p2,ulong p3) {
457 ulong result;
458 // fprintf(stderr, "RV20toYUV420_RN_FRU_Init(ulong p1=0x%0lx(%ld), ", p1, p1);
459 // fprintf(stderr, "ulong p2=0x%0lx(%ld),\n\t", p2, p2);
460 // fprintf(stderr, "ulong p3=0x%0lx(%ld))\n", p3, p3);
461 // hexdump((void*)p1, 44);
462 tic();
463 result=(*rvyuvRNFRUInit)(p1,p2,p3);
464 toc();
465 // hexdump((void*)p1, 44);
466 // fprintf(stderr, "RV20toYUV420_RN_FRU_Init --> 0x%0lx(%ld)\n\n\n", result, result);
467 return result;
470 ulong RV20toYUV420_RN_FRU_Setup(ulong p1,ulong p2,ulong p3,ulong p4,
471 ulong p5,ulong p6,ulong p7,ulong p8) {
472 ulong result;
473 // fprintf(stderr, "RV20toYUV420_RN_FRU_Setup(ulong p1=0x%0lx(%ld), ", p1, p1);
474 // fprintf(stderr, "ulong p2=0x%0lx(%ld),\n\t", p2, p2);
475 // fprintf(stderr, "ulong p3=0x%0lx(%ld), ", p3, p3);
476 // fprintf(stderr, "ulong p4=0x%0lx(%ld),\n\t", p4, p4);
477 // fprintf(stderr, "ulong p5=0x%0lx(%ld), ", p5, p5);
478 // fprintf(stderr, "ulong p6=0x%0lx(%ld),\n\t", p6, p6);
479 // fprintf(stderr, "ulong p7=0x%0lx(%ld), ", p7, p7);
480 // fprintf(stderr, "ulong p8=0x%0lx(%ld))\n", p8, p8);
481 // hexdump((void*)p1, 44);
482 tic();
483 result=(*rvyuvRNFRUSetup)(p1,p2,p3,p4,p5,p6,p7,p8);
484 toc();
485 // hexdump((void*)p1, 44);
486 // fprintf(stderr, "RV20toYUV420_RN_FRU_Setup --> 0x%0lx(%ld)\n\n\n", result, result);
487 return result;
490 /*void SetDLLAccessPath(ulong p1) {
491 fprintf(stderr, "SetDLLAccessPath(ulong p1=0x%0lx(%ld))\n", p1, p1);
492 hexdump((void*)p1, 44);
493 (*setDLLAccessPath)(p1);
494 hexdump((void*)p1, 44);
495 fprintf(stderr, "--> void\n\n\n");