Commit 2bdea742 authored by Sam Hocevar's avatar Sam Hocevar

* modules/video_output/image.c:

    + Implemented support for --image-out-format.
    + Added support for JPEG output. Still defaults to PNG.
parent abebf6ce
/***************************************************************************** /*****************************************************************************
* image.c : image video output * image.c : image video output
***************************************************************************** *****************************************************************************
* Copyright (C) 2004-2005 the VideoLAN team * Copyright (C) 2004-2006 the VideoLAN team
* $Id$ * $Id$
* *
* Authors: Clment Stenac <zorglub@videolan.org> * Authors: Clment Stenac <zorglub@videolan.org>
...@@ -56,8 +56,8 @@ static void Display ( vout_thread_t *, picture_t * ); ...@@ -56,8 +56,8 @@ static void Display ( vout_thread_t *, picture_t * );
#define PREFIX_LONGTEXT N_( "Set the prefix of the filename. Output filename "\ #define PREFIX_LONGTEXT N_( "Set the prefix of the filename. Output filename "\
"will have the form prefixNUMBER.format" ) "will have the form prefixNUMBER.format" )
static char *psz_format_list[] = { "png" }; static char *psz_format_list[] = { "png", "jpeg" };
static char *psz_format_list_text[] = { "PNG" }; static char *psz_format_list_text[] = { "PNG", "JPEG" };
vlc_module_begin( ); vlc_module_begin( );
set_shortname( _( "Image file" ) ); set_shortname( _( "Image file" ) );
...@@ -68,6 +68,8 @@ vlc_module_begin( ); ...@@ -68,6 +68,8 @@ vlc_module_begin( );
add_string( "image-out-format", "png", NULL, FORMAT_TEXT, FORMAT_LONGTEXT, add_string( "image-out-format", "png", NULL, FORMAT_TEXT, FORMAT_LONGTEXT,
VLC_FALSE ); VLC_FALSE );
add_string( "image-out-format", "jpeg", NULL, FORMAT_TEXT, FORMAT_LONGTEXT,
VLC_FALSE );
change_string_list( psz_format_list, psz_format_list_text, 0 ); change_string_list( psz_format_list, psz_format_list_text, 0 );
add_integer( "image-out-ratio", 3 , NULL, RATIO_TEXT, RATIO_LONGTEXT, add_integer( "image-out-ratio", 3 , NULL, RATIO_TEXT, RATIO_LONGTEXT,
VLC_FALSE ); VLC_FALSE );
...@@ -82,6 +84,7 @@ vlc_module_end(); ...@@ -82,6 +84,7 @@ vlc_module_end();
struct vout_sys_t struct vout_sys_t
{ {
char *psz_prefix; /* Prefix */ char *psz_prefix; /* Prefix */
char *psz_format; /* Format */
int i_ratio; /* Image ratio */ int i_ratio; /* Image ratio */
int i_current; /* Current image */ int i_current; /* Current image */
...@@ -108,6 +111,8 @@ static int Create( vlc_object_t *p_this ) ...@@ -108,6 +111,8 @@ static int Create( vlc_object_t *p_this )
p_vout->p_sys->psz_prefix = p_vout->p_sys->psz_prefix =
var_CreateGetString( p_this, "image-out-prefix" ); var_CreateGetString( p_this, "image-out-prefix" );
p_vout->p_sys->psz_format =
var_CreateGetString( p_this, "image-out-format" );
p_vout->p_sys->i_ratio = p_vout->p_sys->i_ratio =
var_CreateGetInteger( p_this, "image-out-ratio" ); var_CreateGetInteger( p_this, "image-out-ratio" );
p_vout->p_sys->i_current = 0; p_vout->p_sys->i_current = 0;
...@@ -204,6 +209,7 @@ static void Destroy( vlc_object_t *p_this ) ...@@ -204,6 +209,7 @@ static void Destroy( vlc_object_t *p_this )
/* Destroy structure */ /* Destroy structure */
image_HandlerDelete( p_vout->p_sys->p_image ); image_HandlerDelete( p_vout->p_sys->p_image );
FREE( p_vout->p_sys->psz_prefix ); FREE( p_vout->p_sys->psz_prefix );
FREE( p_vout->p_sys->psz_format );
FREE( p_vout->p_sys ); FREE( p_vout->p_sys );
} }
...@@ -224,22 +230,22 @@ static void Display( vout_thread_t *p_vout, picture_t *p_pic ) ...@@ -224,22 +230,22 @@ static void Display( vout_thread_t *p_vout, picture_t *p_pic )
return; return;
} }
p_vout->p_sys->i_frames++; p_vout->p_sys->i_frames++;
psz_filename = (char *)malloc( strlen( p_vout->p_sys->psz_prefix ) + psz_filename = (char *)malloc( 10 + strlen( p_vout->p_sys->psz_prefix )
10 ); + strlen( p_vout->p_sys->psz_format ) );
fmt_in.i_chroma = p_vout->render.i_chroma; fmt_in.i_chroma = p_vout->render.i_chroma;
fmt_out.i_width = fmt_in.i_width = p_vout->render.i_width; fmt_out.i_width = fmt_in.i_width = p_vout->render.i_width;
fmt_out.i_height = fmt_in.i_height = p_vout->render.i_height; fmt_out.i_height = fmt_in.i_height = p_vout->render.i_height;
p_vout->p_sys->i_current++;
sprintf( psz_filename, "%s%.6i.%s", p_vout->p_sys->psz_prefix, sprintf( psz_filename, "%s%.6i.%s", p_vout->p_sys->psz_prefix,
p_vout->p_sys->i_current, p_vout->p_sys->i_current,
"png" ); p_vout->p_sys->psz_format );
image_WriteUrl( p_vout->p_sys->p_image, p_pic, image_WriteUrl( p_vout->p_sys->p_image, p_pic,
&fmt_in, &fmt_out, psz_filename ) ; &fmt_in, &fmt_out, psz_filename ) ;
free( psz_filename ); free( psz_filename );
p_vout->p_sys->i_current++;
return; return;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment