diff options
author | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2001-10-23 21:58:11 +0000 |
---|---|---|
committer | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2001-10-23 21:58:11 +0000 |
commit | e4b47e8b5cabdc77872656bd68b7dc02dc6dadf4 (patch) | |
tree | 580202cb689e0e4b50a25f61f9ec3744250213b0 | |
parent | a5ded93f8774fc5b87ce64879d26507cfb87772c (diff) | |
download | xine-lib-e4b47e8b5cabdc77872656bd68b7dc02dc6dadf4.tar.gz xine-lib-e4b47e8b5cabdc77872656bd68b7dc02dc6dadf4.tar.bz2 |
A tempory fix to audio sync with navdvd.
CVS patchset: 872
CVS date: 2001/10/23 21:58:11
-rw-r--r-- | src/xine-engine/metronom.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/xine-engine/metronom.c b/src/xine-engine/metronom.c index 652c34457..bd07696e8 100644 --- a/src/xine-engine/metronom.c +++ b/src/xine-engine/metronom.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: metronom.c,v 1.30 2001/10/18 18:50:53 guenter Exp $ + * $Id: metronom.c,v 1.31 2001/10/23 21:58:11 jcdutton Exp $ */ #ifdef HAVE_CONFIG_H @@ -537,7 +537,10 @@ static uint32_t metronom_got_video_frame (metronom_t *this, uint32_t pts) { } static void metronom_got_audio_still (metronom_t *this) { - + /* This code does not seem to work. */ + /* A simple return works ok for now. */ + return; + pthread_mutex_lock (&this->lock); this->audio_vpts += this->pts_per_frame + this->video_pts_delta; |