summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/xine-engine/metronom.c7
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;