Commit 4a71c838 authored by Rémi Duraffort's avatar Rémi Duraffort

video_filter_scene: cleaning

 * p_sys and p_sys->p_scene can't be NULL after the end of Create
 * use calloc instead of malloc+memset
 * remove dead initializations
 * use strdup to copy a string (not asprintf)
parent 37e54c44
...@@ -149,23 +149,21 @@ struct filter_sys_t ...@@ -149,23 +149,21 @@ struct filter_sys_t
static int Create( vlc_object_t *p_this ) static int Create( vlc_object_t *p_this )
{ {
filter_t *p_filter = (filter_t *)p_this; filter_t *p_filter = (filter_t *)p_this;
filter_sys_t *p_sys = NULL; filter_sys_t *p_sys;
config_ChainParse( p_filter, CFG_PREFIX, ppsz_vfilter_options, config_ChainParse( p_filter, CFG_PREFIX, ppsz_vfilter_options,
p_filter->p_cfg ); p_filter->p_cfg );
p_filter->p_sys = p_sys = malloc( sizeof( filter_sys_t ) ); p_filter->p_sys = p_sys = calloc( 1, sizeof( filter_sys_t ) );
if( p_filter->p_sys == NULL ) if( p_filter->p_sys == NULL )
return VLC_ENOMEM; return VLC_ENOMEM;
memset( p_sys, 0, sizeof(filter_sys_t) );
p_sys->p_scene = malloc( sizeof( scene_t ) ); p_sys->p_scene = calloc( 1, sizeof( scene_t ) );
if( !p_sys->p_scene ) if( !p_sys->p_scene )
{ {
free( p_sys ); free( p_sys );
return VLC_ENOMEM; return VLC_ENOMEM;
} }
memset( p_sys->p_scene, 0, sizeof(scene_t) );
p_sys->p_image = image_HandlerCreate( p_this ); p_sys->p_image = image_HandlerCreate( p_this );
if( !p_sys->p_image ) if( !p_sys->p_image )
...@@ -196,10 +194,9 @@ static int Create( vlc_object_t *p_this ) ...@@ -196,10 +194,9 @@ static int Create( vlc_object_t *p_this )
p_sys->psz_path = var_GetNonEmptyString( p_this, CFG_PREFIX "path" ); p_sys->psz_path = var_GetNonEmptyString( p_this, CFG_PREFIX "path" );
if( p_sys->psz_path == NULL ) if( p_sys->psz_path == NULL )
{ {
int i_ret; const char *psz_homedir = config_GetHomeDir();
i_ret = asprintf( &p_sys->psz_path, "%s", config_GetHomeDir()); if( psz_homedir )
if( i_ret == -1 ) p_sys->psz_path = strdup( psz_homedir );
p_sys->psz_path = NULL;
} }
p_filter->pf_video_filter = Filter; p_filter->pf_video_filter = Filter;
...@@ -240,7 +237,7 @@ static void SnapshotRatio( filter_t *p_filter, picture_t *p_pic ) ...@@ -240,7 +237,7 @@ static void SnapshotRatio( filter_t *p_filter, picture_t *p_pic )
{ {
filter_sys_t *p_sys = (filter_sys_t *)p_filter->p_sys; filter_sys_t *p_sys = (filter_sys_t *)p_filter->p_sys;
if( !p_sys || !p_pic ) return; if( !p_pic ) return;
if( p_sys->i_frames % p_sys->i_ratio != 0 ) if( p_sys->i_frames % p_sys->i_ratio != 0 )
{ {
...@@ -249,32 +246,30 @@ static void SnapshotRatio( filter_t *p_filter, picture_t *p_pic ) ...@@ -249,32 +246,30 @@ static void SnapshotRatio( filter_t *p_filter, picture_t *p_pic )
} }
p_sys->i_frames++; p_sys->i_frames++;
if( p_sys->p_scene ) if( p_sys->p_scene->p_pic )
picture_Release( p_sys->p_scene->p_pic );
if( (p_sys->i_width <= 0) && (p_sys->i_height > 0) )
{
p_sys->i_width = (p_pic->format.i_width * p_sys->i_height) / p_pic->format.i_height;
}
else if( (p_sys->i_height <= 0) && (p_sys->i_width > 0) )
{ {
if( p_sys->p_scene->p_pic ) p_sys->i_height = (p_pic->format.i_height * p_sys->i_width) / p_pic->format.i_width;
picture_Release( p_sys->p_scene->p_pic ); }
else if( (p_sys->i_width <= 0) && (p_sys->i_height <= 0) )
{
p_sys->i_width = p_pic->format.i_width;
p_sys->i_height = p_pic->format.i_height;
}
if( (p_sys->i_width <= 0) && (p_sys->i_height > 0) ) p_sys->p_scene->p_pic = picture_New( p_pic->format.i_chroma,
{ p_pic->format.i_width, p_pic->format.i_height,
p_sys->i_width = (p_pic->format.i_width * p_sys->i_height) / p_pic->format.i_height; p_pic->format.i_sar_num );
} if( p_sys->p_scene->p_pic )
else if( (p_sys->i_height <= 0) && (p_sys->i_width > 0) ) {
{ picture_Copy( p_sys->p_scene->p_pic, p_pic );
p_sys->i_height = (p_pic->format.i_height * p_sys->i_width) / p_pic->format.i_width; SavePicture( p_filter, p_sys->p_scene->p_pic );
}
else if( (p_sys->i_width <= 0) && (p_sys->i_height <= 0) )
{
p_sys->i_width = p_pic->format.i_width;
p_sys->i_height = p_pic->format.i_height;
}
p_sys->p_scene->p_pic = picture_New( p_pic->format.i_chroma,
p_pic->format.i_width, p_pic->format.i_height,
p_pic->format.i_sar_num );
if( p_sys->p_scene->p_pic )
{
picture_Copy( p_sys->p_scene->p_pic, p_pic );
SavePicture( p_filter, p_sys->p_scene->p_pic );
}
} }
} }
......
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