summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThibaut Mattern <tmattern@users.sourceforge.net>2003-10-15 21:57:02 +0000
committerThibaut Mattern <tmattern@users.sourceforge.net>2003-10-15 21:57:02 +0000
commitebc608666da90cf219296588a7060efd8926e1e9 (patch)
treec81f2c11bf2d3869d2495a31106a0f3ab833e77a
parent4aab11f4c7847681289438f65c46c0082c88fdc2 (diff)
downloadxine-lib-ebc608666da90cf219296588a7060efd8926e1e9.tar.gz
xine-lib-ebc608666da90cf219296588a7060efd8926e1e9.tar.bz2
Revert the bad fix.
CVS patchset: 5527 CVS date: 2003/10/15 21:57:02
-rw-r--r--src/xine-engine/metronom.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/xine-engine/metronom.c b/src/xine-engine/metronom.c
index f24695a57..317edcff1 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.122 2003/10/14 22:48:00 tmattern Exp $
+ * $Id: metronom.c,v 1.123 2003/10/15 21:57:02 tmattern Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -323,12 +323,6 @@ static void metronom_handle_video_discontinuity (metronom_t *this, int type,
this->audio_vpts);
}
- if (this->video_vpts > this->audio_vpts) {
- this->audio_vpts = this->video_vpts;
- } else {
- this->video_vpts = this->audio_vpts;
- }
-
#ifdef LOG
printf ("metronom: video_vpts: %lld, audio_vpts: %lld\n", this->video_vpts, this->audio_vpts);
#endif