summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog1
-rw-r--r--src/demuxers/demux_ogg.c4
2 files changed, 3 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index a1ff84077..9ad91c7be 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,7 @@ xine-lib (1-beta11)
* fix fastforward bug (slow playback with unused cpu cicles)
* fix input_net (tcp) seeking
* network input plugins do not freeze when no data is available
+ * fix seeking in ogg files
xine-lib (1-beta10)
* loading and displaying png images (e.g. for logos)
diff --git a/src/demuxers/demux_ogg.c b/src/demuxers/demux_ogg.c
index 89d323d7e..6f3f03af2 100644
--- a/src/demuxers/demux_ogg.c
+++ b/src/demuxers/demux_ogg.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: demux_ogg.c,v 1.73 2003/04/13 22:02:18 heinchen Exp $
+ * $Id: demux_ogg.c,v 1.74 2003/04/13 22:18:49 heinchen Exp $
*
* demultiplexer for ogg streams
*
@@ -282,7 +282,7 @@ static void send_ogg_buf (demux_ogg_t *this,
} else
buf->pts = 0;
#ifdef LOG
- printf ("demux_ogg: video granulepos %lld, pts %lld, time %d\n", op->granulepos, buf->pts, buf->pts);
+ printf ("demux_ogg: video granulepos %lld, pts %lld, time %d\n", op->granulepos, buf->pts, buf->pts / 90);
#endif
buf->extra_info->input_pos = this->input->get_current_pos (this->input);