2 * This file is part of MPlayer.
4 * MPlayer is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * MPlayer is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
29 #include "ffmpeg_files/intreadwrite.h"
32 #include "vd_internal.h"
33 #include "loader/wine/windef.h"
35 static const vd_info_t info
= {
39 "Florian Schneider, Arpad Gereoffy, Alex Beregszaszi, Donnie Smith",
40 "binary real video codecs"
47 * Structures for data packets. These used to be tables of unsigned ints, but
48 * that does not work on 64 bit platforms (e.g. Alpha). The entries that are
49 * pointers get truncated. Pointers on 64 bit platforms are 8 byte longs.
50 * So we have to use structures so the compiler will assign the proper space
53 typedef struct cmsg_data_s
{
59 typedef struct transform_in_s
{
68 static unsigned long (*rvyuv_custom_message
)(cmsg_data_t
* ,void*);
69 static unsigned long (*rvyuv_free
)(void*);
70 static unsigned long (*rvyuv_init
)(void*, void*); // initdata,context
71 static unsigned long (*rvyuv_transform
)(char*, char*,transform_in_t
*,unsigned int*,void*);
72 #ifdef CONFIG_WIN32DLL
73 static unsigned long WINAPI (*wrvyuv_custom_message
)(cmsg_data_t
* ,void*);
74 static unsigned long WINAPI (*wrvyuv_free
)(void*);
75 static unsigned long WINAPI (*wrvyuv_init
)(void*, void*); // initdata,context
76 static unsigned long WINAPI (*wrvyuv_transform
)(char*, char*,transform_in_t
*,unsigned int*,void*);
79 static void *rv_handle
=NULL
;
80 static int initialized
=0;
81 static uint8_t *buffer
= NULL
;
83 #ifdef CONFIG_WIN32DLL
84 static int dll_type
= 0; /* 0 = unix dlopen, 1 = win32 dll */
87 void *__builtin_vec_new(unsigned long size
) {
91 void __builtin_vec_delete(void *mem
) {
95 void __pure_virtual(void) {
96 printf("FATAL: __pure_virtual() called!\n");
100 #if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonFly__)
101 void ___brk_addr(void) {exit(0);}
102 char **__environ
={NULL
};
107 // to set/get/query special features/parameters
108 static int control(sh_video_t
*sh
,int cmd
,void* arg
,...){
110 // case VDCTRL_QUERY_MAX_PP_LEVEL:
112 // case VDCTRL_SET_PP_LEVEL:
113 // vfw_set_postproc(sh,10*(*((int*)arg)));
114 // return CONTROL_OK;
116 return CONTROL_UNKNOWN
;
119 /* exits program when failure */
121 static int load_syms_linux(char *path
) {
124 mp_msg(MSGT_DECVIDEO
,MSGL_V
, "opening shared obj '%s'\n", path
);
125 handle
= dlopen (path
, RTLD_LAZY
);
127 mp_msg(MSGT_DECVIDEO
,MSGL_WARN
,"Error: %s\n",dlerror());
131 rvyuv_custom_message
= dlsym(handle
, "RV20toYUV420CustomMessage");
132 rvyuv_free
= dlsym(handle
, "RV20toYUV420Free");
133 rvyuv_init
= dlsym(handle
, "RV20toYUV420Init");
134 rvyuv_transform
= dlsym(handle
, "RV20toYUV420Transform");
136 if(rvyuv_custom_message
&&
145 rvyuv_custom_message
= dlsym(handle
, "RV40toYUV420CustomMessage");
146 rvyuv_free
= dlsym(handle
, "RV40toYUV420Free");
147 rvyuv_init
= dlsym(handle
, "RV40toYUV420Init");
148 rvyuv_transform
= dlsym(handle
, "RV40toYUV420Transform");
150 if(rvyuv_custom_message
&&
159 mp_msg(MSGT_DECVIDEO
,MSGL_WARN
,"Error resolving symbols! (version incompatibility?)\n");
165 #ifdef CONFIG_WIN32DLL
168 #include "loader/ldt_keeper.h"
170 void* WINAPI
LoadLibraryA(char* name
);
171 void* WINAPI
GetProcAddress(void* handle
,char* func
);
172 int WINAPI
FreeLibrary(void *handle
);
175 void * WINAPI
GetModuleHandleA(char *);
176 static int patch_dll(uint8_t *patchpos
, const uint8_t *oldcode
,
177 const uint8_t *newcode
, int codesize
) {
178 void *handle
= GetModuleHandleA("kernel32");
179 int WINAPI (*VirtProt
)(void *, unsigned, int, int *);
182 VirtProt
= GetProcAddress(handle
, "VirtualProtect");
183 // change permissions to PAGE_WRITECOPY
185 !VirtProt(patchpos
, codesize
, 0x08, &prot
)) {
186 mp_msg(MSGT_DECVIDEO
, MSGL_WARN
, "VirtualProtect failed at %p\n", patchpos
);
189 if (memcmp(patchpos
, oldcode
, codesize
) == 0) {
190 memcpy(patchpos
, newcode
, codesize
);
193 VirtProt(patchpos
, codesize
, prot
, &tmp
);
198 static int load_syms_windows(char *path
) {
201 mp_msg(MSGT_DECVIDEO
,MSGL_V
, "opening win32 dll '%s'\n", path
);
205 handle
= LoadLibraryA(path
);
206 mp_msg(MSGT_DECVIDEO
,MSGL_V
,"win32 real codec handle=%p \n",handle
);
208 mp_msg(MSGT_DECVIDEO
,MSGL_WARN
,"Error loading dll\n");
212 wrvyuv_custom_message
= GetProcAddress(handle
, "RV20toYUV420CustomMessage");
213 wrvyuv_free
= GetProcAddress(handle
, "RV20toYUV420Free");
214 wrvyuv_init
= GetProcAddress(handle
, "RV20toYUV420Init");
215 wrvyuv_transform
= GetProcAddress(handle
, "RV20toYUV420Transform");
217 if(wrvyuv_custom_message
&&
226 if (strstr(path
, "drv43260.dll")) {
228 // patch away multithreaded decoding, it causes crashes
229 static const uint8_t oldcode
[13] = {
230 0x83, 0xbb, 0xf8, 0x05, 0x00, 0x00, 0x01,
231 0x0f, 0x86, 0xd0, 0x00, 0x00, 0x00 };
232 static const uint8_t newcode
[13] = {
234 0x89, 0x83, 0xf8, 0x05, 0x00, 0x00,
235 0xe9, 0xd0, 0x00, 0x00, 0x00 };
237 (char*)wrvyuv_transform
+ 0x634132fa - 0x634114d0,
238 oldcode
, newcode
, sizeof(oldcode
));
240 mp_msg(MSGT_DECVIDEO
, MSGL_WARN
, "Could not patch Real codec, this might crash on multi-CPU systems\n");
247 wrvyuv_custom_message
= GetProcAddress(handle
, "RV40toYUV420CustomMessage");
248 wrvyuv_free
= GetProcAddress(handle
, "RV40toYUV420Free");
249 wrvyuv_init
= GetProcAddress(handle
, "RV40toYUV420Init");
250 wrvyuv_transform
= GetProcAddress(handle
, "RV40toYUV420Transform");
251 if(wrvyuv_custom_message
&&
260 mp_msg(MSGT_DECVIDEO
,MSGL_WARN
,"Error resolving symbols! (version incompatibility?)\n");
266 /* we need exact positions */
279 static int init(sh_video_t
*sh
){
280 //unsigned int out_fmt;
283 // we export codec id and sub-id from demuxer in bitmapinfohdr:
284 unsigned char* extrahdr
=(unsigned char*)(sh
->bih
+1);
285 unsigned int extrahdr_size
= sh
->bih
->biSize
- sizeof(BITMAPINFOHEADER
);
286 struct rv_init_t init_data
;
288 if(extrahdr_size
< 8) {
289 mp_msg(MSGT_DECVIDEO
,MSGL_ERR
,"realvideo: extradata too small (%u)\n", sh
->bih
->biSize
- sizeof(BITMAPINFOHEADER
));
292 init_data
= (struct rv_init_t
){11, sh
->disp_w
, sh
->disp_h
, 0, 0, AV_RB32(extrahdr
), 1, AV_RB32(extrahdr
+ 4)}; // rv30
294 mp_msg(MSGT_DECVIDEO
,MSGL_V
,"realvideo codec id: 0x%08X sub-id: 0x%08X\n",init_data
.format
,init_data
.subformat
);
296 path
= malloc(strlen(codec_path
) + strlen(sh
->codec
->dll
) + 2);
298 sprintf(path
, "%s/%s", codec_path
, sh
->codec
->dll
);
300 /* first try to load linux dlls, if failed and we're supporting win32 dlls,
301 then try to load the windows ones */
303 if(strstr(sh
->codec
->dll
,".dll") || !load_syms_linux(path
))
305 #ifdef CONFIG_WIN32DLL
306 if (!load_syms_windows(sh
->codec
->dll
))
309 mp_tmsg(MSGT_DECVIDEO
,MSGL_ERR
,"ERROR: Could not open required DirectShow codec %s.\n",sh
->codec
->dll
);
310 mp_msg(MSGT_DECVIDEO
,MSGL_HINT
,"Read the RealVideo section of the DOCS!\n");
315 // only I420 supported
316 // if((sh->format!=0x30335652) && !mpcodecs_config_vo(sh,sh->disp_w,sh->disp_h,IMGFMT_I420)) return 0;
319 #ifdef CONFIG_WIN32DLL
321 result
=(*wrvyuv_init
)(&init_data
, &sh
->context
);
324 result
=(*rvyuv_init
)(&init_data
, &sh
->context
);
326 mp_msg(MSGT_DECVIDEO
,MSGL_ERR
,"Couldn't open RealVideo codec, error code: 0x%X \n",result
);
329 // setup rv30 codec (codec sub-type and image dimensions):
330 if((sh
->format
<=0x30335652) && AV_RB32(extrahdr
+ 4)>=0x20200002){
332 uint32_t cmsg24
[16]={sh
->disp_w
,sh
->disp_h
};
333 cmsg_data_t cmsg_data
={0x24,1+(extrahdr
[1]&7), &cmsg24
[0]};
335 mp_msg(MSGT_DECVIDEO
,MSGL_V
,"realvideo: using cmsg24 with %u elements.\n",extrahdr
[1]&7);
336 cmsg_cnt
= (extrahdr
[1]&7)*2;
337 if (extrahdr_size
-8 < cmsg_cnt
) {
338 mp_msg(MSGT_DECVIDEO
,MSGL_WARN
,"realvideo: not enough extradata (%u) to make %u cmsg24 elements.\n",extrahdr_size
-8,extrahdr
[1]&7);
339 cmsg_cnt
= extrahdr_size
-8;
341 for (i
= 0; i
< cmsg_cnt
; i
++)
342 cmsg24
[2+i
] = extrahdr
[8+i
]*4;
343 if (extrahdr_size
-8 > cmsg_cnt
)
344 mp_msg(MSGT_DECVIDEO
,MSGL_WARN
,"realvideo: %u bytes of unknown extradata remaining.\n",extrahdr_size
-8-cmsg_cnt
);
346 #ifdef CONFIG_WIN32DLL
348 (*wrvyuv_custom_message
)(&cmsg_data
,sh
->context
);
351 (*rvyuv_custom_message
)(&cmsg_data
,sh
->context
);
353 mp_msg(MSGT_DECVIDEO
,MSGL_V
,"INFO: RealVideo codec init OK!\n");
358 static void uninit(sh_video_t
*sh
){
359 #ifdef CONFIG_WIN32DLL
362 if (wrvyuv_free
) wrvyuv_free(sh
->context
);
365 if(rvyuv_free
) rvyuv_free(sh
->context
);
367 #ifdef CONFIG_WIN32DLL
370 if (rv_handle
) FreeLibrary(rv_handle
);
374 if(rv_handle
) dlclose(rv_handle
);
385 static mp_image_t
* decode(sh_video_t
*sh
,void* data
,int len
,int flags
){
387 unsigned long result
;
390 int extra_size
= 8*(chunks
+1);
391 uint32_t data_size
= len
-1-extra_size
;
392 unsigned char* dp_data
=buf
+extra_size
;
393 uint32_t* extra
=(uint32_t*)buf
;
396 unsigned int transform_out
[5];
397 transform_in_t transform_in
={
398 data_size
, // length of the packet (sub-packets appended)
399 0, // unknown, seems to be unused
400 chunks
, // number of sub-packets - 1
401 extra
, // table of sub-packet offsets
402 0, // unknown, seems to be unused
403 0, // timestamp (should be unneded)
406 if(len
<=0 || flags
&2) return NULL
; // skipped frame || hardframedrop
408 if (bufsz
< sh
->disp_w
*sh
->disp_h
*3/2) {
409 if (buffer
) free(buffer
);
410 bufsz
= sh
->disp_w
*sh
->disp_h
*3/2;
411 buffer
=malloc(bufsz
);
412 if (!buffer
) return 0;
415 for (i
=0; i
<2*(chunks
+1); i
++)
416 extra
[i
] = le2me_32(extra
[i
]);
418 #ifdef CONFIG_WIN32DLL
420 result
=(*wrvyuv_transform
)(dp_data
, buffer
, &transform_in
,
421 transform_out
, sh
->context
);
424 result
=(*rvyuv_transform
)(dp_data
, buffer
, &transform_in
,
425 transform_out
, sh
->context
);
427 if(!initialized
){ // rv30 width/height now known
428 sh
->aspect
=(float)sh
->disp_w
/(float)sh
->disp_h
;
429 sh
->disp_w
=transform_out
[3];
430 sh
->disp_h
=transform_out
[4];
431 if (!mpcodecs_config_vo(sh
,sh
->disp_w
,sh
->disp_h
,IMGFMT_I420
)) return 0;
434 mpi
=mpcodecs_get_image(sh
, MP_IMGTYPE_EXPORT
, 0 /*MP_IMGFLAG_ACCEPT_STRIDE*/,
435 sh
->disp_w
, sh
->disp_h
);
436 if(!mpi
) return NULL
;
437 mpi
->planes
[0] = buffer
;
438 mpi
->stride
[0] = sh
->disp_w
;
439 mpi
->planes
[1] = buffer
+ sh
->disp_w
*sh
->disp_h
;
440 mpi
->stride
[1] = sh
->disp_w
/ 2;
441 mpi
->planes
[2] = buffer
+ sh
->disp_w
*sh
->disp_h
*5/4;
442 mpi
->stride
[2] = sh
->disp_w
/ 2;
444 if(transform_out
[0] &&
445 (sh
->disp_w
!= transform_out
[3] || sh
->disp_h
!= transform_out
[4]))
448 return result
? NULL
: mpi
;