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.
22 #include <libavutil/intreadwrite.h>
33 #include "vd_internal.h"
34 #include "loader/wine/windef.h"
36 static const vd_info_t info
= {
40 "Florian Schneider, Arpad Gereoffy, Alex Beregszaszi, Donnie Smith",
41 "binary real video codecs"
48 * Structures for data packets. These used to be tables of unsigned ints, but
49 * that does not work on 64 bit platforms (e.g. Alpha). The entries that are
50 * pointers get truncated. Pointers on 64 bit platforms are 8 byte longs.
51 * So we have to use structures so the compiler will assign the proper space
54 typedef struct cmsg_data_s
{
60 typedef struct transform_in_s
{
69 static unsigned long (*rvyuv_custom_message
)(cmsg_data_t
* ,void*);
70 static unsigned long (*rvyuv_free
)(void*);
71 static unsigned long (*rvyuv_init
)(void*, void*); // initdata,context
72 static unsigned long (*rvyuv_transform
)(char*, char*,transform_in_t
*,unsigned int*,void*);
73 #ifdef CONFIG_WIN32DLL
74 static unsigned long WINAPI (*wrvyuv_custom_message
)(cmsg_data_t
* ,void*);
75 static unsigned long WINAPI (*wrvyuv_free
)(void*);
76 static unsigned long WINAPI (*wrvyuv_init
)(void*, void*); // initdata,context
77 static unsigned long WINAPI (*wrvyuv_transform
)(char*, char*,transform_in_t
*,unsigned int*,void*);
80 static void *rv_handle
=NULL
;
81 static int initialized
=0;
82 static uint8_t *buffer
= NULL
;
84 #ifdef CONFIG_WIN32DLL
85 static int dll_type
= 0; /* 0 = unix dlopen, 1 = win32 dll */
88 void *__builtin_vec_new(unsigned long size
);
89 void __builtin_vec_delete(void *mem
);
90 void __pure_virtual(void);
92 void *__builtin_vec_new(unsigned long size
) {
96 void __builtin_vec_delete(void *mem
) {
100 void __pure_virtual(void) {
101 printf("FATAL: __pure_virtual() called!\n");
105 #if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonFly__)
106 void ___brk_addr(void) {exit(0);}
107 char **__environ
={NULL
};
112 // to set/get/query special features/parameters
113 static int control(sh_video_t
*sh
,int cmd
,void* arg
,...){
115 // case VDCTRL_QUERY_MAX_PP_LEVEL:
117 // case VDCTRL_SET_PP_LEVEL:
118 // vfw_set_postproc(sh,10*(*((int*)arg)));
119 // return CONTROL_OK;
121 return CONTROL_UNKNOWN
;
124 /* exits program when failure */
126 static int load_syms_linux(char *path
) {
129 mp_msg(MSGT_DECVIDEO
,MSGL_V
, "opening shared obj '%s'\n", path
);
130 handle
= dlopen (path
, RTLD_LAZY
);
132 mp_msg(MSGT_DECVIDEO
,MSGL_WARN
,"Error: %s\n",dlerror());
136 rvyuv_custom_message
= dlsym(handle
, "RV20toYUV420CustomMessage");
137 rvyuv_free
= dlsym(handle
, "RV20toYUV420Free");
138 rvyuv_init
= dlsym(handle
, "RV20toYUV420Init");
139 rvyuv_transform
= dlsym(handle
, "RV20toYUV420Transform");
141 if(rvyuv_custom_message
&&
150 rvyuv_custom_message
= dlsym(handle
, "RV40toYUV420CustomMessage");
151 rvyuv_free
= dlsym(handle
, "RV40toYUV420Free");
152 rvyuv_init
= dlsym(handle
, "RV40toYUV420Init");
153 rvyuv_transform
= dlsym(handle
, "RV40toYUV420Transform");
155 if(rvyuv_custom_message
&&
164 mp_msg(MSGT_DECVIDEO
,MSGL_WARN
,"Error resolving symbols! (version incompatibility?)\n");
170 #ifdef CONFIG_WIN32DLL
173 #include "loader/ldt_keeper.h"
175 void* WINAPI
LoadLibraryA(char* name
);
176 void* WINAPI
GetProcAddress(void* handle
,char* func
);
177 int WINAPI
FreeLibrary(void *handle
);
180 void * WINAPI
GetModuleHandleA(char *);
181 static int patch_dll(uint8_t *patchpos
, const uint8_t *oldcode
,
182 const uint8_t *newcode
, int codesize
) {
183 void *handle
= GetModuleHandleA("kernel32");
184 int WINAPI (*VirtProt
)(void *, unsigned, int, int *);
187 VirtProt
= GetProcAddress(handle
, "VirtualProtect");
188 // change permissions to PAGE_WRITECOPY
190 !VirtProt(patchpos
, codesize
, 0x08, &prot
)) {
191 mp_msg(MSGT_DECVIDEO
, MSGL_WARN
, "VirtualProtect failed at %p\n", patchpos
);
194 if (memcmp(patchpos
, oldcode
, codesize
) == 0) {
195 memcpy(patchpos
, newcode
, codesize
);
198 VirtProt(patchpos
, codesize
, prot
, &tmp
);
203 static int load_syms_windows(char *path
) {
206 mp_msg(MSGT_DECVIDEO
,MSGL_V
, "opening win32 dll '%s'\n", path
);
210 handle
= LoadLibraryA(path
);
211 mp_msg(MSGT_DECVIDEO
,MSGL_V
,"win32 real codec handle=%p \n",handle
);
213 mp_msg(MSGT_DECVIDEO
,MSGL_WARN
,"Error loading dll\n");
217 wrvyuv_custom_message
= GetProcAddress(handle
, "RV20toYUV420CustomMessage");
218 wrvyuv_free
= GetProcAddress(handle
, "RV20toYUV420Free");
219 wrvyuv_init
= GetProcAddress(handle
, "RV20toYUV420Init");
220 wrvyuv_transform
= GetProcAddress(handle
, "RV20toYUV420Transform");
222 if(wrvyuv_custom_message
&&
231 if (strstr(path
, "drv43260.dll")) {
233 // patch away multithreaded decoding, it causes crashes
234 static const uint8_t oldcode
[13] = {
235 0x83, 0xbb, 0xf8, 0x05, 0x00, 0x00, 0x01,
236 0x0f, 0x86, 0xd0, 0x00, 0x00, 0x00 };
237 static const uint8_t newcode
[13] = {
239 0x89, 0x83, 0xf8, 0x05, 0x00, 0x00,
240 0xe9, 0xd0, 0x00, 0x00, 0x00 };
242 (char*)wrvyuv_transform
+ 0x634132fa - 0x634114d0,
243 oldcode
, newcode
, sizeof(oldcode
));
245 mp_msg(MSGT_DECVIDEO
, MSGL_WARN
, "Could not patch Real codec, this might crash on multi-CPU systems\n");
252 wrvyuv_custom_message
= GetProcAddress(handle
, "RV40toYUV420CustomMessage");
253 wrvyuv_free
= GetProcAddress(handle
, "RV40toYUV420Free");
254 wrvyuv_init
= GetProcAddress(handle
, "RV40toYUV420Init");
255 wrvyuv_transform
= GetProcAddress(handle
, "RV40toYUV420Transform");
256 if(wrvyuv_custom_message
&&
265 mp_msg(MSGT_DECVIDEO
,MSGL_WARN
,"Error resolving symbols! (version incompatibility?)\n");
271 /* we need exact positions */
284 static int init(sh_video_t
*sh
){
285 //unsigned int out_fmt;
288 // we export codec id and sub-id from demuxer in bitmapinfohdr:
289 unsigned char* extrahdr
=(unsigned char*)(sh
->bih
+1);
290 unsigned int extrahdr_size
= sh
->bih
->biSize
- sizeof(*sh
->bih
);
291 struct rv_init_t init_data
;
293 if(extrahdr_size
< 8) {
294 mp_msg(MSGT_DECVIDEO
,MSGL_ERR
,"realvideo: extradata too small (%u)\n", extrahdr_size
);
297 init_data
= (struct rv_init_t
){11, sh
->disp_w
, sh
->disp_h
, 0, 0, AV_RB32(extrahdr
), 1, AV_RB32(extrahdr
+ 4)}; // rv30
299 mp_msg(MSGT_DECVIDEO
,MSGL_V
,"realvideo codec id: 0x%08X sub-id: 0x%08X\n",init_data
.format
,init_data
.subformat
);
301 path
= malloc(strlen(codec_path
) + strlen(sh
->codec
->dll
) + 2);
303 sprintf(path
, "%s/%s", codec_path
, sh
->codec
->dll
);
305 /* first try to load linux dlls, if failed and we're supporting win32 dlls,
306 then try to load the windows ones */
308 if(strstr(sh
->codec
->dll
,".dll") || !load_syms_linux(path
))
310 #ifdef CONFIG_WIN32DLL
311 if (!load_syms_windows(sh
->codec
->dll
))
314 mp_tmsg(MSGT_DECVIDEO
,MSGL_ERR
,"ERROR: Could not open required DirectShow codec %s.\n",sh
->codec
->dll
);
315 mp_msg(MSGT_DECVIDEO
,MSGL_HINT
,"Read the RealVideo section of the DOCS!\n");
320 // only I420 supported
321 // if((sh->format!=0x30335652) && !mpcodecs_config_vo(sh,sh->disp_w,sh->disp_h,IMGFMT_I420)) return 0;
324 #ifdef CONFIG_WIN32DLL
326 result
=(*wrvyuv_init
)(&init_data
, &sh
->context
);
329 result
=(*rvyuv_init
)(&init_data
, &sh
->context
);
331 mp_msg(MSGT_DECVIDEO
,MSGL_ERR
,"Couldn't open RealVideo codec, error code: 0x%X \n",result
);
334 // setup rv30 codec (codec sub-type and image dimensions):
335 if((sh
->format
<=0x30335652) && AV_RB32(extrahdr
+ 4)>=0x20200002){
337 uint32_t cmsg24
[16]={sh
->disp_w
,sh
->disp_h
};
338 cmsg_data_t cmsg_data
={0x24,1+(extrahdr
[1]&7), &cmsg24
[0]};
340 mp_msg(MSGT_DECVIDEO
,MSGL_V
,"realvideo: using cmsg24 with %u elements.\n",extrahdr
[1]&7);
341 cmsg_cnt
= (extrahdr
[1]&7)*2;
342 if (extrahdr_size
-8 < cmsg_cnt
) {
343 mp_msg(MSGT_DECVIDEO
,MSGL_WARN
,"realvideo: not enough extradata (%u) to make %u cmsg24 elements.\n",extrahdr_size
-8,extrahdr
[1]&7);
344 cmsg_cnt
= extrahdr_size
-8;
346 for (i
= 0; i
< cmsg_cnt
; i
++)
347 cmsg24
[2+i
] = extrahdr
[8+i
]*4;
348 if (extrahdr_size
-8 > cmsg_cnt
)
349 mp_msg(MSGT_DECVIDEO
,MSGL_WARN
,"realvideo: %u bytes of unknown extradata remaining.\n",extrahdr_size
-8-cmsg_cnt
);
351 #ifdef CONFIG_WIN32DLL
353 (*wrvyuv_custom_message
)(&cmsg_data
,sh
->context
);
356 (*rvyuv_custom_message
)(&cmsg_data
,sh
->context
);
358 mp_msg(MSGT_DECVIDEO
,MSGL_V
,"INFO: RealVideo codec init OK!\n");
363 static void uninit(sh_video_t
*sh
){
364 #ifdef CONFIG_WIN32DLL
367 if (wrvyuv_free
) wrvyuv_free(sh
->context
);
370 if(rvyuv_free
) rvyuv_free(sh
->context
);
372 #ifdef CONFIG_WIN32DLL
375 if (rv_handle
) FreeLibrary(rv_handle
);
379 if(rv_handle
) dlclose(rv_handle
);
389 static mp_image_t
* decode(sh_video_t
*sh
,void* data
,int len
,int flags
){
391 unsigned long result
;
394 int extra_size
= 8*(chunks
+1);
395 uint32_t data_size
= len
-1-extra_size
;
396 unsigned char* dp_data
=buf
+extra_size
;
397 uint32_t* extra
=(uint32_t*)buf
;
400 unsigned int transform_out
[5];
401 transform_in_t transform_in
={
402 data_size
, // length of the packet (sub-packets appended)
403 0, // unknown, seems to be unused
404 chunks
, // number of sub-packets - 1
405 extra
, // table of sub-packet offsets
406 0, // unknown, seems to be unused
407 0, // timestamp (should be unneded)
410 if(len
<=0 || flags
&2) return NULL
; // skipped frame || hardframedrop
412 if (bufsz
< sh
->disp_w
*sh
->disp_h
*3/2) {
414 bufsz
= sh
->disp_w
*sh
->disp_h
*3/2;
415 buffer
=malloc(bufsz
);
416 if (!buffer
) return 0;
419 for (i
=0; i
<2*(chunks
+1); i
++)
420 extra
[i
] = le2me_32(extra
[i
]);
422 #ifdef CONFIG_WIN32DLL
424 result
=(*wrvyuv_transform
)(dp_data
, buffer
, &transform_in
,
425 transform_out
, sh
->context
);
428 result
=(*rvyuv_transform
)(dp_data
, buffer
, &transform_in
,
429 transform_out
, sh
->context
);
431 if(!initialized
){ // rv30 width/height now known
432 sh
->aspect
=(float)sh
->disp_w
/(float)sh
->disp_h
;
433 sh
->disp_w
=transform_out
[3];
434 sh
->disp_h
=transform_out
[4];
435 if (!mpcodecs_config_vo(sh
,sh
->disp_w
,sh
->disp_h
,IMGFMT_I420
)) return 0;
438 mpi
=mpcodecs_get_image(sh
, MP_IMGTYPE_EXPORT
, 0 /*MP_IMGFLAG_ACCEPT_STRIDE*/,
439 sh
->disp_w
, sh
->disp_h
);
440 if(!mpi
) return NULL
;
441 mpi
->planes
[0] = buffer
;
442 mpi
->stride
[0] = sh
->disp_w
;
443 mpi
->planes
[1] = buffer
+ sh
->disp_w
*sh
->disp_h
;
444 mpi
->stride
[1] = sh
->disp_w
/ 2;
445 mpi
->planes
[2] = buffer
+ sh
->disp_w
*sh
->disp_h
*5/4;
446 mpi
->stride
[2] = sh
->disp_w
/ 2;
448 if(transform_out
[0] &&
449 (sh
->disp_w
!= transform_out
[3] || sh
->disp_h
!= transform_out
[4]))
452 return result
? NULL
: mpi
;