Commit ee038b49 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

modules/audio_filter/converter/dtstospdif.c: We need a starting date. Fix a...

modules/audio_filter/converter/dtstospdif.c: We need a starting date. Fix a typo that cause the starting date not to be set.
parent ca59f1e5
......@@ -139,7 +139,7 @@ static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter,
if( p_filter->p_sys->i_frames < 3 )
{
if( !p_filter->p_sys->i_frames )
if( p_filter->p_sys->i_frames == 1 )
/* We'll need the starting date */
p_filter->p_sys->start_date = p_in_buf->start_date;
......
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