]> git.sesse.net Git - vlc/blob - modules/codec/realvideo.c
Use var_InheritString for --decklink-video-connection.
[vlc] / modules / codec / realvideo.c
1 /*****************************************************************************
2  * realvideo.c: a realvideo decoder that uses the real's dll
3  *****************************************************************************
4  * Copyright (C) 2005 the VideoLAN team
5  * Copyright (C) 2008 Wang Bo
6  *
7  * This program 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.
11  *
12  * This program 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.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
20  *****************************************************************************/
21
22 /*****************************************************************************
23  * Preamble
24  *****************************************************************************/
25 #ifdef HAVE_CONFIG_H
26 # include "config.h"
27 #endif
28
29 #include <vlc_common.h>
30 #include <vlc_plugin.h>
31 #include <vlc_codec.h>
32
33 #ifdef LOADER
34 /* Need the w32dll loader from mplayer */
35 #   include <wine/winerror.h>
36 #   include <ldt_keeper.h>
37 #   include <wine/windef.h>
38
39 void *WINAPI LoadLibraryA( char *name );
40 void *WINAPI GetProcAddress( void *handle, char *func );
41 int WINAPI FreeLibrary( void *handle );
42 #endif
43
44 #ifndef WINAPI
45 #   define WINAPI
46 #endif
47
48 #if defined(HAVE_DL_DLOPEN)
49 #   if defined(HAVE_DLFCN_H) /* Linux, BSD, Hurd */
50 #       include <dlfcn.h>
51 #   endif
52 #   if defined(HAVE_SYS_DL_H)
53 #       include <sys/dl.h>
54 #   endif
55 #endif
56
57 typedef struct cmsg_data_s
58 {
59     uint32_t data1;
60     uint32_t data2;
61     uint32_t* dimensions;
62 } cmsg_data_t;
63
64 typedef struct transform_in_s
65 {
66     uint32_t len;
67     uint32_t unknown1;
68     uint32_t chunks;
69     uint32_t* extra;
70     uint32_t unknown2;
71     uint32_t timestamp;
72 } transform_in_t;
73
74 // copypaste from demux_real.c - it should match to get it working!
75 typedef struct dp_hdr_s
76 {
77     uint32_t chunks;    // number of chunks
78     uint32_t timestamp;    // timestamp from packet header
79     uint32_t len;    // length of actual data
80     uint32_t chunktab;    // offset to chunk offset array
81 } dp_hdr_t;
82
83 /* we need exact positions */
84 struct rv_init_t
85 {
86     short unk1;
87     short w;
88     short h;
89     short unk3;
90     int unk2;
91     unsigned int * subformat;
92     int unk5;
93     unsigned int * format;
94 } rv_init_t;
95
96 struct decoder_sys_t
97 {
98     /* library */
99 #ifdef LOADER
100     ldt_fs_t    *ldt_fs;
101 #endif
102     void        *handle;
103     void         *rv_handle;
104     int          inited;
105     char         *plane;
106 };
107
108 int dll_type = 1;
109
110 static unsigned long (*rvyuv_custom_message)(cmsg_data_t* ,void*);
111 static unsigned long (*rvyuv_free)(void*);
112 static unsigned long (*rvyuv_init)(void*, void*); // initdata,context
113 static unsigned long (*rvyuv_transform)(char*, char*,transform_in_t*,unsigned int*,void*);
114 #ifdef WIN32
115 static unsigned long WINAPI (*wrvyuv_custom_message)(cmsg_data_t* ,void*);
116 static unsigned long WINAPI (*wrvyuv_free)(void*);
117 static unsigned long WINAPI (*wrvyuv_init)(void*, void*); // initdata,context
118 static unsigned long WINAPI (*wrvyuv_transform)(char*, char*,transform_in_t*,unsigned int*,void*);
119 #endif
120
121 /*****************************************************************************
122  * Module descriptor
123  *****************************************************************************/
124 static int  Open ( vlc_object_t * );
125 static void Close( vlc_object_t * );
126
127 //static int  OpenPacketizer( vlc_object_t * );
128 static picture_t *DecodeVideo( decoder_t *, block_t ** );
129
130 vlc_module_begin ()
131     set_description( N_("RealVideo library decoder") )
132     set_capability( "decoder", 10 )
133     set_category( CAT_INPUT )
134     set_subcategory( SUBCAT_INPUT_VCODEC )
135     set_callbacks( Open, Close )
136 vlc_module_end ()
137
138
139 /*****************************************************************************
140  * Local prototypes
141  *****************************************************************************/
142
143 #ifdef WIN32
144 static void * load_syms(decoder_t *p_dec, const char *path) 
145 {
146     void *handle;
147
148     msg_Dbg( p_dec, "opening win32 dll '%s'", path);
149 #ifdef LOADER
150     Setup_LDT_Keeper();
151 #endif
152     handle = LoadLibraryA(path);
153     msg_Dbg( p_dec, "win32 real codec handle=%p",handle);
154     if (!handle)
155     {
156         msg_Err( p_dec, "Error loading dll");
157         return NULL;
158     }
159
160     wrvyuv_custom_message = GetProcAddress(handle, "RV20toYUV420CustomMessage");
161     wrvyuv_free = GetProcAddress(handle, "RV20toYUV420Free");
162     wrvyuv_init = GetProcAddress(handle, "RV20toYUV420Init");
163     wrvyuv_transform = GetProcAddress(handle, "RV20toYUV420Transform");
164
165     if (wrvyuv_custom_message && wrvyuv_free && wrvyuv_init && wrvyuv_transform)
166     {
167         dll_type = 1;
168         return handle;
169     }
170     msg_Err( p_dec, "Error resolving symbols! (version incompatibility?)");
171     FreeLibrary(handle);
172     return NULL; // error
173 }
174 #else
175 static void * load_syms_linux(decoder_t *p_dec, const char *path) 
176 {
177     void *handle;
178
179     msg_Dbg( p_dec, "opening shared obj '%s'", path);
180
181     handle = dlopen (path, RTLD_LAZY);
182     if (!handle) 
183     {
184         msg_Err( p_dec,"Error: %s",dlerror());
185         return NULL;
186     }
187
188     rvyuv_custom_message = dlsym(handle, "RV20toYUV420CustomMessage");
189     rvyuv_free = dlsym(handle, "RV20toYUV420Free");
190     rvyuv_init = dlsym(handle, "RV20toYUV420Init");
191     rvyuv_transform = dlsym(handle, "RV20toYUV420Transform");
192
193     if(rvyuv_custom_message && rvyuv_free && rvyuv_init && rvyuv_transform)
194     {
195         dll_type = 0;
196         return handle;
197     }
198
199     msg_Err( p_dec,"Error resolving symbols! (version incompatibility?)");
200     dlclose(handle);
201     return 0;
202 }
203 #endif
204
205 static vlc_mutex_t rm_mutex = VLC_STATIC_MUTEX;
206
207 static int InitVideo(decoder_t *p_dec)
208 {
209     int result;
210     struct rv_init_t init_data;
211     char fcc[4];
212     char *g_decode_path;
213
214     int  i_vide = p_dec->fmt_in.i_extra;
215     unsigned int *p_vide = p_dec->fmt_in.p_extra;
216     decoder_sys_t *p_sys = calloc( 1, sizeof( decoder_sys_t ) );
217
218     if( !p_sys )
219         return VLC_ENOMEM;
220
221     if( i_vide < 8 )
222     {
223             msg_Err( p_dec, "missing extra info" );
224             free( p_sys );
225             return VLC_EGENERIC;
226     }
227     free( p_sys->plane );
228     p_sys->plane = malloc (p_dec->fmt_in.video.i_width*p_dec->fmt_in.video.i_height*3/2 + 1024 );
229     if (NULL == p_sys->plane)
230     {
231         msg_Err( p_dec, "cannot alloc plane buffer" );
232         free( p_sys );
233         return VLC_EGENERIC;
234     }
235
236     p_dec->p_sys = p_sys;
237     p_dec->pf_decode_video = DecodeVideo;
238
239     memcpy( fcc, &p_dec->fmt_in.i_codec, 4 );
240     init_data.unk1 = 11;
241     init_data.w = p_dec->fmt_in.video.i_width ;
242     init_data.h = p_dec->fmt_in.video.i_height ;
243     init_data.unk3 = 0;
244     init_data.unk2 = 0;
245     init_data.subformat = (unsigned int*)p_vide[0];
246     init_data.unk5 = 1;
247     init_data.format = (unsigned int*)p_vide[1];
248
249     /* first try to load linux dlls, if failed and we're supporting win32 dlls,
250        then try to load the windows ones */
251     bool b_so_opened = false;
252
253 #ifdef WIN32
254     g_decode_path="plugins\\drv43260.dll";
255
256     if( (p_sys->rv_handle = load_syms(p_dec, g_decode_path)) )
257         b_so_opened = true;
258 #else
259     static const char psz_paths[] =
260     {
261         "/usr/lib/win32\0"
262         "/usr/lib/codecs\0"
263         "/usr/local/RealPlayer8/Codecs\0"
264         "/usr/RealPlayer8/Codecs\0"
265         "/usr/lib/RealPlayer8/Codecs\0"
266         "/opt/RealPlayer8/Codecs\0"
267         "/usr/lib/RealPlayer9/users/Real/Codecs\0"
268         "/usr/lib/RealPlayer10/codecs\0"
269         "/usr/lib/RealPlayer10GOLD/codecs\0"
270         "/usr/lib/helix/player/codecs\0"
271         "/usr/lib64/RealPlayer8/Codecs\0"
272         "/usr/lib64/RealPlayer9/users/Real/Codecs\0"
273         "/usr/lib64/RealPlayer10/codecs\0"
274         "/usr/lib64/RealPlayer10GOLD/codecs\0"
275         "/usr/local/lib/codecs\0"
276         "\0"
277     };
278
279     for( size_t i = 0; psz_paths[i]; i += strlen( psz_paths + i ) + 1 )
280     {
281         if( asprintf( &g_decode_path, "%s/drv4.so.6.0", psz_paths + i ) != -1 )
282         {
283             p_sys->rv_handle = load_syms_linux(p_dec, g_decode_path);
284             free( g_decode_path );
285         }
286         if( p_sys->rv_handle )
287         {
288             b_so_opened = true;
289             break;
290         }
291
292         if( asprintf( &g_decode_path, "%s/drv3.so.6.0", psz_paths + i ) != -1 )
293         {
294             p_sys->rv_handle = load_syms_linux(p_dec, g_decode_path);
295             free( g_decode_path );
296         }
297         if( p_sys->rv_handle )
298         {
299             b_so_opened = true;
300             break;
301         }
302
303         msg_Dbg( p_dec, "Cannot load real decoder library: %s", g_decode_path);
304     }
305 #endif
306
307     if(!b_so_opened )
308     {
309         msg_Err( p_dec, "Cannot any real decoder library" );
310         free( p_sys );
311         return VLC_EGENERIC;
312     }
313
314     vlc_mutex_lock( &rm_mutex );
315
316     p_sys->handle=NULL;
317     #ifdef WIN32
318     if (dll_type == 1)
319         result=(*wrvyuv_init)(&init_data, &p_sys->handle);
320     else
321     #endif
322         result=(*rvyuv_init)(&init_data, &p_sys->handle);
323     if (result)
324     {
325         msg_Err( p_dec, "Cannot Init real decoder library: %s",  g_decode_path);
326         free( p_sys );
327         return VLC_EGENERIC;
328     }
329
330     /* setup rv30 codec (codec sub-type and image dimensions): */
331     /*if ( p_dec->fmt_in.i_codec == VLC_CODEC_RV30 )*/
332     if (p_vide[1]>=0x20200002)
333     {
334         int i, cmsg_cnt;
335         uint32_t cmsg24[16]={p_dec->fmt_in.video.i_width,p_dec->fmt_in.video.i_height};
336         cmsg_data_t cmsg_data={0x24,1+(p_vide[1]&7), &cmsg24[0]};
337         cmsg_cnt = (p_vide[1]&7)*2;
338         if (i_vide - 8 < cmsg_cnt) {
339                     cmsg_cnt = i_vide - 8;
340         }
341         for (i = 0; i < cmsg_cnt; i++)
342             cmsg24[2+i] = p_vide[8+i]*4;
343         #ifdef WIN32
344         if (dll_type == 1)
345             (*wrvyuv_custom_message)(&cmsg_data,p_sys->handle);
346         else
347         #endif
348             (*rvyuv_custom_message)(&cmsg_data,p_sys->handle);
349     }
350     /*
351     es_format_Init( &p_dec->fmt_out, VIDEO_ES, VLC_CODEC_YV12);
352     es_format_Init( &p_dec->fmt_out, VIDEO_ES, VLC_CODEC_YUYV);
353      */
354     es_format_Init( &p_dec->fmt_out, VIDEO_ES, VLC_CODEC_I420);
355      
356     p_dec->fmt_out.video.i_width = p_dec->fmt_in.video.i_width;
357     p_dec->fmt_out.video.i_height= p_dec->fmt_in.video.i_height;
358     p_dec->fmt_out.video.i_sar_num = 1;
359     p_dec->fmt_out.video.i_sar_den = 1;
360     p_sys->inited = 0;
361
362     vlc_mutex_unlock( &rm_mutex );
363     return VLC_SUCCESS;
364 }
365
366 /*****************************************************************************
367  * Open: probe the decoder and return score
368  *****************************************************************************
369  * Tries to launch a decoder and return score so that the interface is able
370  * to choose.
371  *****************************************************************************/
372 static int Open( vlc_object_t *p_this )
373 {
374     decoder_t *p_dec = (decoder_t*)p_this;
375
376     switch ( p_dec->fmt_in.i_codec )
377     {
378     case VLC_CODEC_RV10: 
379     case VLC_CODEC_RV20: 
380     case VLC_CODEC_RV30:
381     case VLC_CODEC_RV40: 
382         p_dec->p_sys = NULL;
383         p_dec->pf_decode_video = DecodeVideo;
384         return InitVideo(p_dec);
385
386     default:
387         return VLC_EGENERIC;
388     }
389 }
390
391 /*****************************************************************************
392  * Close:
393  *****************************************************************************/
394 static void Close( vlc_object_t *p_this )
395 {
396     decoder_t     *p_dec = (decoder_t*)p_this;
397     decoder_sys_t *p_sys = p_dec->p_sys;
398
399     /* get lock, avoid segfault */
400     vlc_mutex_lock( &rm_mutex );
401
402     #ifdef WIN32
403     if (dll_type == 1)
404     {
405         if (wrvyuv_free)
406             wrvyuv_free(p_sys->handle);
407     }
408     else
409     #endif
410         if (rvyuv_free)
411             rvyuv_free(p_sys->handle);
412 #ifdef WIN32
413     if (dll_type == 1)
414     {
415         if (p_sys->rv_handle)
416             FreeLibrary(p_sys->rv_handle);
417     }
418     else
419 #endif
420         p_sys->rv_handle=NULL;
421
422     free( p_sys->plane );
423     p_sys->plane = NULL;
424
425     msg_Dbg( p_dec, "FreeLibrary ok." );
426 #ifdef LOADER
427     Restore_LDT_Keeper( p_sys->ldt_fs );
428     msg_Dbg( p_dec, "Restore_LDT_Keeper" );
429 #endif
430     p_sys->inited = 0;
431
432     vlc_mutex_unlock( &rm_mutex );
433
434     free( p_sys );
435 }
436
437 /*****************************************************************************
438  * DecodeVideo:
439  *****************************************************************************/
440 static picture_t *DecodeVideo( decoder_t *p_dec, block_t **pp_block )
441 {
442     decoder_sys_t *p_sys = p_dec->p_sys;
443     block_t       *p_block;
444     picture_t     *p_pic;
445     mtime_t       i_pts;
446     int           result;
447
448     /* We must do open and close in the same thread (unless we do
449      * Setup_LDT_Keeper in the main thread before all others */
450     if ( pp_block == NULL || *pp_block == NULL )
451     {
452         return NULL;
453     }
454     p_block = *pp_block;
455     *pp_block = NULL;
456
457     i_pts = (p_block->i_pts > VLC_TS_INVALID) ? p_block->i_pts : p_block->i_dts;
458
459     vlc_mutex_lock( &rm_mutex );
460
461     p_pic = decoder_NewPicture( p_dec );
462
463     if ( p_pic )
464     {
465         unsigned int transform_out[5];
466         dp_hdr_t dp_hdr;
467         transform_in_t transform_in;
468         uint32_t pkg_len = ((uint32_t*)p_block->p_buffer)[0];
469         unsigned char* dp_data=((unsigned char*)p_block->p_buffer)+8;
470         uint32_t* extra=(uint32_t*)(((char*)p_block->p_buffer)+8+pkg_len);
471         uint32_t img_size;
472
473
474         dp_hdr.len = pkg_len;
475         dp_hdr.chunktab = 8 + pkg_len;
476         dp_hdr.chunks = ((uint32_t*)p_block->p_buffer)[1]-1;
477         dp_hdr.timestamp = i_pts;
478
479         memset(&transform_in, 0, sizeof(transform_in_t));
480
481         transform_in.len = dp_hdr.len;
482         transform_in.extra = extra;
483         transform_in.chunks = dp_hdr.chunks;
484         transform_in.timestamp = dp_hdr.timestamp;
485
486         memset (p_sys->plane, 0, p_dec->fmt_in.video.i_width * p_dec->fmt_in.video.i_height *3/2 );
487
488         #ifdef WIN32
489         if (dll_type == 1)
490             result=(*wrvyuv_transform)(dp_data, p_sys->plane, &transform_in, transform_out, p_sys->handle);
491         else
492         #endif
493             result=(*rvyuv_transform)(dp_data, p_sys->plane, &transform_in, transform_out, p_sys->handle);
494
495         /* msg_Warn(p_dec, "Real Size %d X %d", transform_out[3],
496                  transform_out[4]); */
497         /* some bug rm file will print the messages :
498                 [00000551] realvideo decoder warning: Real Size 320 X 240
499                 [00000551] realvideo decoder warning: Real Size 480 X 272
500                 [00000551] realvideo decoder warning: Real Size 320 X 240
501                 [00000551] realvideo decoder warning: Real Size 320 X 240
502                 ...
503             so it needs fixing!
504         */
505         if ( p_sys->inited == 0 )
506         {
507             /* fix and get the correct image size! */
508             if ( p_dec->fmt_in.video.i_width != transform_out[3]
509              || p_dec->fmt_in.video.i_height  != transform_out[4] )
510             {
511                 msg_Warn(p_dec, "Warning, Real's Header give a wrong "
512                          "information about media's width and height!"
513                          "\tRealHeader: \t %d X %d  \t %d X %d",
514                          p_dec->fmt_in.video.i_width,
515                          p_dec->fmt_in.video.i_height,
516                          transform_out[3],transform_out[4]);
517                 
518                 if ( p_dec->fmt_in.video.i_width * p_dec->fmt_in.video.i_height >= transform_out[3] * transform_out[4] )
519                 {
520                     p_dec->fmt_out.video.i_width = 
521                     p_dec->fmt_out.video.i_visible_width = 
522                     p_dec->fmt_in.video.i_width = transform_out[3] ;
523
524                     p_dec->fmt_out.video.i_height= 
525                     p_dec->fmt_out.video.i_visible_height = 
526                     p_dec->fmt_in.video.i_height= transform_out[4];
527
528                     p_dec->fmt_out.video.i_sar_num = 1;
529                     p_dec->fmt_out.video.i_sar_den = 1;
530                 }
531                 else
532                 {
533                     // TODO: realloc plane's size! but [in fact] it maybe not happen! 
534                     msg_Err(p_dec,"plane space not enough ,skip");
535                 }
536             }
537             p_sys->inited = 1;
538         }
539
540         img_size = p_dec->fmt_in.video.i_width * p_dec->fmt_in.video.i_height;
541         memcpy( p_pic->p[0].p_pixels, p_sys->plane,  img_size);
542         memcpy( p_pic->p[1].p_pixels, p_sys->plane + img_size, img_size/4);
543         memcpy( p_pic->p[2].p_pixels, p_sys->plane + img_size * 5/4, img_size/4);
544         p_pic->date = i_pts ;
545
546         /*  real video frame is small( frame and frame's time-shift is short), 
547             so it will become late picture easier (when render-time changed)and
548             droped by video-output.*/
549         p_pic->b_force = 1;
550     }
551
552     vlc_mutex_unlock( &rm_mutex );
553
554     block_Release( p_block );
555     return p_pic;
556 }
557