summaryrefslogtreecommitdiff
path: root/src/demuxers/demux_aiff.c
diff options
context:
space:
mode:
authorMiguel Freitas <miguelfreitas@users.sourceforge.net>2003-01-10 11:57:15 +0000
committerMiguel Freitas <miguelfreitas@users.sourceforge.net>2003-01-10 11:57:15 +0000
commit4b7cfbfb7aa9d3af0f483b15b32882aa453f87a7 (patch)
tree36073c846d54ce98a71d255651e78abe69dc2035 /src/demuxers/demux_aiff.c
parenta4318a6700f307c76487a66a196860986bd1b781 (diff)
downloadxine-lib-4b7cfbfb7aa9d3af0f483b15b32882aa453f87a7.tar.gz
xine-lib-4b7cfbfb7aa9d3af0f483b15b32882aa453f87a7.tar.bz2
internal input_time is miliseconds now
CVS patchset: 3851 CVS date: 2003/01/10 11:57:15
Diffstat (limited to 'src/demuxers/demux_aiff.c')
-rw-r--r--src/demuxers/demux_aiff.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/demuxers/demux_aiff.c b/src/demuxers/demux_aiff.c
index 57e1c5e4b..948a1a096 100644
--- a/src/demuxers/demux_aiff.c
+++ b/src/demuxers/demux_aiff.c
@@ -19,7 +19,7 @@
*
* AIFF File Demuxer by Mike Melanson (melanson@pcisys.net)
*
- * $Id: demux_aiff.c,v 1.22 2003/01/06 06:06:52 tmmm Exp $
+ * $Id: demux_aiff.c,v 1.23 2003/01/10 11:57:15 miguelfreitas Exp $
*
*/
@@ -208,7 +208,7 @@ static int demux_aiff_send_chunk (demux_plugin_t *this_gen) {
buf->type = this->audio_type;
buf->extra_info->input_pos = current_file_pos;
buf->extra_info->input_length = this->data_size;
- buf->extra_info->input_time = current_pts / 90000;
+ buf->extra_info->input_time = current_pts / 90;
buf->pts = current_pts;
if (remaining_sample_bytes > buf->max_size)