Commit 1e686fd2 authored by Jean-Paul Saman's avatar Jean-Paul Saman Committed by Jean-Paul Saman

Sync with trunk.

parent 6ae7bd00
......@@ -2,7 +2,7 @@
* linear.c : linear interpolation resampler
*****************************************************************************
* Copyright (C) 2002, 2006 the VideoLAN team
* $Id$
* $Id: 72cebf385e30a02f5e5b7803ad0aa2a4f12c424d $
*
* Authors: Gildas Bazin <gbazin@netcourrier.com>
* Sigmund Augdal Helberg <dnumgis@videolan.org>
......@@ -108,6 +108,7 @@ static int Create( vlc_object_t *p_this )
msg_Err( p_filter, "out of memory" );
return VLC_ENOMEM;
}
aout_DateInit( &p_sys->end_date, p_filter->output.i_rate );
p_filter->pf_do_work = DoWork;
......@@ -285,6 +286,7 @@ static int OpenFilter( vlc_object_t *p_this )
free( p_sys );
return VLC_ENOMEM;
}
aout_DateInit( &p_sys->end_date, p_filter->fmt_in.audio.i_rate );
p_filter->pf_audio_filter = Resample;
......
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