Commit 9035e1a6 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Fix compiler warning

parent 5c0e385a
...@@ -268,12 +268,15 @@ static void Destroy( vlc_object_t *p_this ) ...@@ -268,12 +268,15 @@ static void Destroy( vlc_object_t *p_this )
*****************************************************************************/ *****************************************************************************/
static void Display( vout_thread_t *p_vout, picture_t *p_pic ) static void Display( vout_thread_t *p_vout, picture_t *p_pic )
{ {
video_format_t fmt_in = {0}, fmt_out = {0}; video_format_t fmt_in, fmt_out;
char *psz_filename; char *psz_filename;
char *psz_prefix; char *psz_prefix;
char *psz_tmp; char *psz_tmp;
memset (&fmt_in, 0, sizeof (fmt_in));
memset (&fmt_out, 0, sizeof (fmt_out));
if( p_vout->p_sys->i_frames % p_vout->p_sys->i_ratio != 0 ) if( p_vout->p_sys->i_frames % p_vout->p_sys->i_ratio != 0 )
{ {
p_vout->p_sys->i_frames++; p_vout->p_sys->i_frames++;
......
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