diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-08-23 21:40:05 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-08-23 21:40:05 +0000 |
commit | 9af0f9b8e5cf19ac23ddf3e1ff62629b0109d253 (patch) | |
tree | f675c9458bb600f1b0c7843e882b1263f84083c9 /src/xine-engine/xine.c | |
parent | d08d8d6d67096518a67a3cd4467d3c0b1186d3e8 (diff) | |
download | xine-lib-9af0f9b8e5cf19ac23ddf3e1ff62629b0109d253.tar.gz xine-lib-9af0f9b8e5cf19ac23ddf3e1ff62629b0109d253.tar.bz2 |
re-enabled audio resampling, correct a/v sync, corrected code style/indentation. corrected delay() behaviour according to what's specified in the header file comment: return delay(offset) instead of absolute time
CVS patchset: 473
CVS date: 2001/08/23 21:40:05
Diffstat (limited to 'src/xine-engine/xine.c')
-rw-r--r-- | src/xine-engine/xine.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xine-engine/xine.c b/src/xine-engine/xine.c index 17fd9385b..4d4033934 100644 --- a/src/xine-engine/xine.c +++ b/src/xine-engine/xine.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: xine.c,v 1.45 2001/08/21 19:39:50 jcdutton Exp $ + * $Id: xine.c,v 1.46 2001/08/23 21:40:05 guenter Exp $ * * top-level xine functions * @@ -515,7 +515,7 @@ xine_t *xine_init (vo_driver_t *vo, video_decoder_init (this); if(ao) { - this->audio_out = ao_new_instance (ao, this->metronom); + this->audio_out = ao_new_instance (ao, this->metronom, config); // this->audio_out = ao; // this->audio_out->connect (this->audio_out, this->metronom); } |