1 /*****************************************************************************
2 * fake.c: decoder reading from a fake stream, outputting a fixed image
3 *****************************************************************************
4 * Copyright (C) 2005 the VideoLAN team
7 * Authors: Christophe Massiot <massiot@via.ecp.fr>
8 * Jean-Paul Saman <jpsaman at m2x dot nl>
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23 *****************************************************************************/
25 /*****************************************************************************
27 *****************************************************************************/
32 #include <vlc_common.h>
33 #include <vlc_plugin.h>
34 #include <vlc_codec.h>
36 #include <vlc_image.h>
37 #include <vlc_filter.h>
38 #include <vlc_charset.h>
40 /*****************************************************************************
42 *****************************************************************************/
43 static int OpenDecoder ( vlc_object_t * );
44 static void CloseDecoder ( vlc_object_t * );
46 static picture_t *DecodeBlock ( decoder_t *, block_t ** );
47 static int FakeCallback( vlc_object_t *, char const *,
48 vlc_value_t, vlc_value_t, void * );
50 /*****************************************************************************
52 *****************************************************************************/
53 #define FILE_TEXT N_("Image file")
54 #define FILE_LONGTEXT N_( \
55 "Path of the image file for fake input." )
56 #define RELOAD_TEXT N_("Reload image file")
57 #define RELOAD_LONGTEXT N_( \
58 "Reload image file every n seconds." )
59 #define WIDTH_TEXT N_("Video width")
60 #define WIDTH_LONGTEXT N_( \
61 "Output video width." )
62 #define HEIGHT_TEXT N_("Video height")
63 #define HEIGHT_LONGTEXT N_( \
64 "Output video height." )
65 #define KEEP_AR_TEXT N_("Keep aspect ratio")
66 #define KEEP_AR_LONGTEXT N_( \
67 "Consider width and height as maximum values." )
68 #define ASPECT_RATIO_TEXT N_("Background aspect ratio")
69 #define ASPECT_RATIO_LONGTEXT N_( \
70 "Aspect ratio of the image file (4:3, 16:9). Default is square pixels." )
71 #define DEINTERLACE_TEXT N_("Deinterlace video")
72 #define DEINTERLACE_LONGTEXT N_( \
73 "Deinterlace the image after loading it." )
74 #define DEINTERLACE_MODULE_TEXT N_("Deinterlace module")
75 #define DEINTERLACE_MODULE_LONGTEXT N_( \
76 "Deinterlace module to use." )
77 #define CHROMA_TEXT N_("Chroma used.")
78 #define CHROMA_LONGTEXT N_( \
79 "Force use of a specific chroma for output. Default is I420." )
81 static const char *const ppsz_deinterlace_type[] =
83 "deinterlace", "ffmpeg-deinterlace"
87 set_category( CAT_INPUT )
88 set_subcategory( SUBCAT_INPUT_VCODEC )
89 set_shortname( N_("Fake") )
90 set_description( N_("Fake video decoder") )
91 set_capability( "decoder", 1000 )
92 set_callbacks( OpenDecoder, CloseDecoder )
93 add_shortcut( "fake" )
95 add_file( "fake-file", "", NULL, FILE_TEXT,
96 FILE_LONGTEXT, false )
97 add_integer( "fake-file-reload", 0, NULL, RELOAD_TEXT,
98 RELOAD_LONGTEXT, false )
99 add_integer( "fake-width", 0, NULL, WIDTH_TEXT,
100 WIDTH_LONGTEXT, true )
101 add_integer( "fake-height", 0, NULL, HEIGHT_TEXT,
102 HEIGHT_LONGTEXT, true )
103 add_bool( "fake-keep-ar", 0, NULL, KEEP_AR_TEXT, KEEP_AR_LONGTEXT,
105 add_string( "fake-aspect-ratio", "", NULL,
106 ASPECT_RATIO_TEXT, ASPECT_RATIO_LONGTEXT, true )
107 add_bool( "fake-deinterlace", 0, NULL, DEINTERLACE_TEXT,
108 DEINTERLACE_LONGTEXT, false )
109 add_string( "fake-deinterlace-module", "deinterlace", NULL,
110 DEINTERLACE_MODULE_TEXT, DEINTERLACE_MODULE_LONGTEXT,
112 change_string_list( ppsz_deinterlace_type, 0, 0 )
113 add_string( "fake-chroma", "I420", NULL, CHROMA_TEXT, CHROMA_LONGTEXT,
127 /*****************************************************************************
128 * OpenDecoder: probe the decoder and return score
129 *****************************************************************************/
130 static int OpenDecoder( vlc_object_t *p_this )
132 decoder_t *p_dec = (decoder_t*)p_this;
134 image_handler_t *p_handler;
135 video_format_t fmt_in, fmt_out;
137 char *psz_file, *psz_chroma;
141 if( p_dec->fmt_in.i_codec != VLC_FOURCC('f','a','k','e') )
146 p_dec->p_sys = calloc( 1, sizeof( *p_dec->p_sys ) );
150 psz_file = var_CreateGetNonEmptyStringCommand( p_dec, "fake-file" );
153 msg_Err( p_dec, "specify a file with --fake-file=..." );
154 free( p_dec->p_sys );
157 var_AddCallback( p_dec, "fake-file", FakeCallback, p_dec );
159 memset( &fmt_in, 0, sizeof(fmt_in) );
160 memset( &fmt_out, 0, sizeof(fmt_out) );
162 val.i_int = var_CreateGetIntegerCommand( p_dec, "fake-file-reload" );
165 p_dec->p_sys->b_reload = true;
166 p_dec->p_sys->i_reload = (mtime_t)(val.i_int * 1000000);
167 p_dec->p_sys->i_next = (mtime_t)(p_dec->p_sys->i_reload + mdate());
169 var_AddCallback( p_dec, "fake-file-reload", FakeCallback , p_dec );
171 psz_chroma = var_CreateGetString( p_dec, "fake-chroma" );
172 if( strlen( psz_chroma ) != 4 )
174 msg_Warn( p_dec, "Invalid chroma (%s). Using I420.", psz_chroma );
175 fmt_out.i_chroma = VLC_FOURCC('I','4','2','0');
179 fmt_out.i_chroma = VLC_FOURCC( psz_chroma[0],
186 var_Create( p_dec, "fake-keep-ar", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
187 var_Get( p_dec, "fake-keep-ar", &val );
188 b_keep_ar = val.b_bool;
190 var_Create( p_dec, "fake-width", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
191 var_Create( p_dec, "fake-height", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
192 var_Create( p_dec, "fake-aspect-ratio",
193 VLC_VAR_STRING | VLC_VAR_DOINHERIT );
195 var_Get( p_dec, "fake-aspect-ratio", &val );
196 if ( val.psz_string )
198 char *psz_parser = strchr( val.psz_string, ':' );
202 *psz_parser++ = '\0';
203 i_aspect = atoi( val.psz_string )
204 * VOUT_ASPECT_FACTOR / atoi( psz_parser );
206 free( val.psz_string );
211 var_Get( p_dec, "fake-width", &val );
212 fmt_out.i_width = val.i_int;
213 var_Get( p_dec, "fake-height", &val );
214 fmt_out.i_height = val.i_int;
217 p_handler = image_HandlerCreate( p_dec );
218 p_image = image_ReadUrl( p_handler, psz_file, &fmt_in, &fmt_out );
219 image_HandlerDelete( p_handler );
221 if ( p_image == NULL )
223 msg_Err( p_dec, "unable to read image file %s", psz_file );
225 free( p_dec->p_sys );
228 msg_Dbg( p_dec, "file %s loaded successfully", psz_file );
234 picture_t *p_old = p_image;
235 int i_width, i_height;
237 var_Get( p_dec, "fake-width", &val );
239 var_Get( p_dec, "fake-height", &val );
240 i_height = val.i_int;
242 if ( i_width && i_height )
244 int i_image_ar = fmt_out.i_width * VOUT_ASPECT_FACTOR
246 int i_region_ar = i_width * VOUT_ASPECT_FACTOR / i_height;
249 if ( i_aspect == i_image_ar )
251 fmt_out.i_width = i_width;
252 fmt_out.i_height = i_height;
254 else if ( i_image_ar > i_region_ar )
256 fmt_out.i_width = i_width;
257 fmt_out.i_height = i_width * VOUT_ASPECT_FACTOR
259 i_aspect = i_image_ar;
263 fmt_out.i_height = i_height;
264 fmt_out.i_width = i_height * i_image_ar
265 / VOUT_ASPECT_FACTOR;
266 i_aspect = i_image_ar;
269 p_handler = image_HandlerCreate( p_dec );
270 p_image = image_Convert( p_handler, p_old, &fmt_in, &fmt_out );
271 image_HandlerDelete( p_handler );
273 if ( p_image == NULL )
275 msg_Warn( p_dec, "couldn't load resizing module" );
281 picture_Release( p_old );
288 fmt_out.i_aspect = i_aspect;
292 fmt_out.i_aspect = fmt_out.i_width
293 * VOUT_ASPECT_FACTOR / fmt_out.i_height;
296 var_Create( p_dec, "fake-deinterlace", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
297 var_Get( p_dec, "fake-deinterlace", &val );
300 picture_t *p_old = p_image;
302 var_Create( p_dec, "fake-deinterlace-module",
303 VLC_VAR_STRING | VLC_VAR_DOINHERIT );
304 var_Get( p_dec, "fake-deinterlace-module", &val );
306 p_handler = image_HandlerCreate( p_dec );
307 p_image = image_Filter( p_handler, p_old, &fmt_out, val.psz_string );
308 image_HandlerDelete( p_handler );
309 free( val.psz_string );
311 if ( p_image == NULL )
313 msg_Warn( p_dec, "couldn't load deinterlace module" );
318 picture_Release( p_old );
322 /* Set output properties */
323 p_dec->fmt_out.i_cat = VIDEO_ES;
324 p_dec->fmt_out.i_codec = fmt_out.i_chroma;
325 p_dec->fmt_out.video = fmt_out;
328 p_dec->pf_decode_video = DecodeBlock;
330 p_dec->p_sys->p_image = p_image;
331 vlc_mutex_init( &p_dec->p_sys->lock );
336 /****************************************************************************
337 * DecodeBlock: the whole thing
338 ****************************************************************************/
339 static picture_t *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
341 decoder_sys_t *p_sys = (decoder_sys_t*) p_dec->p_sys;
344 if( pp_block == NULL || !*pp_block ) return NULL;
345 p_pic = decoder_NewPicture( p_dec );
348 msg_Err( p_dec, "cannot get picture" );
352 if( p_sys->b_reload && (mdate() >= p_sys->i_next) )
354 var_TriggerCallback( p_dec, "fake-file" );
356 p_sys->i_next = (mtime_t)(p_sys->i_reload + mdate());
358 vlc_mutex_lock( &p_dec->p_sys->lock );
359 picture_Copy( p_pic, p_dec->p_sys->p_image );
360 vlc_mutex_unlock( &p_dec->p_sys->lock );
362 p_pic->date = (*pp_block)->i_pts;
365 block_Release( *pp_block );
371 /*****************************************************************************
372 * CloseDecoder: fake decoder destruction
373 *****************************************************************************/
374 static void CloseDecoder( vlc_object_t *p_this )
376 decoder_t *p_dec = (decoder_t *)p_this;
377 picture_t *p_image = p_dec->p_sys->p_image;
379 if( p_image != NULL )
380 picture_Release( p_image );
382 vlc_mutex_destroy( &p_dec->p_sys->lock );
383 free( p_dec->p_sys );
386 /*****************************************************************************
387 * FakeCallback: Image source change callback.
388 *****************************************************************************/
389 static int FakeCallback( vlc_object_t *p_this, char const *psz_var,
390 vlc_value_t oldval, vlc_value_t newval,
393 VLC_UNUSED(p_this); VLC_UNUSED(oldval);
394 decoder_t *p_dec = (decoder_t *)p_data;
396 if( !strcmp( psz_var, "fake-file" ) )
398 image_handler_t *p_handler;
399 picture_t *p_new_image;
400 video_format_t fmt_in, fmt_out;
401 char *psz_file = newval.psz_string;
404 vlc_mutex_lock( &p_dec->p_sys->lock );
405 p_image = p_dec->p_sys->p_image;
407 if( !psz_file || !*psz_file )
409 msg_Err( p_dec, "fake-file value must be non empty." );
410 vlc_mutex_unlock( &p_dec->p_sys->lock );
413 msg_Dbg( p_dec, "Changing fake-file to %s.", psz_file );
415 memset( &fmt_in, 0, sizeof(fmt_in) );
416 fmt_out = p_dec->fmt_out.video;
417 p_handler = image_HandlerCreate( p_dec );
418 p_new_image = image_ReadUrl( p_handler, psz_file, &fmt_in, &fmt_out );
419 image_HandlerDelete( p_handler );
423 msg_Err( p_dec, "error while reading image (%s)", psz_file );
424 vlc_mutex_unlock( &p_dec->p_sys->lock );
428 p_dec->p_sys->p_image = p_new_image;
429 picture_Release( p_image );
430 vlc_mutex_unlock( &p_dec->p_sys->lock );
432 else if( !strcmp( psz_var, "fake-file-reload" ) )
434 if( newval.i_int > 0)
436 p_dec->p_sys->b_reload = true;
437 p_dec->p_sys->i_reload = (mtime_t)(newval.i_int * 1000000);
438 p_dec->p_sys->i_next = (mtime_t)(p_dec->p_sys->i_reload + mdate());
442 p_dec->p_sys->b_reload = false;