From 4b7cfbfb7aa9d3af0f483b15b32882aa453f87a7 Mon Sep 17 00:00:00 2001 From: Miguel Freitas Date: Fri, 10 Jan 2003 11:57:15 +0000 Subject: internal input_time is miliseconds now CVS patchset: 3851 CVS date: 2003/01/10 11:57:15 --- src/demuxers/demux_aud.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/demuxers/demux_aud.c') diff --git a/src/demuxers/demux_aud.c b/src/demuxers/demux_aud.c index d2bf415b6..574ac5522 100644 --- a/src/demuxers/demux_aud.c +++ b/src/demuxers/demux_aud.c @@ -32,7 +32,7 @@ * data. This makes seeking conceptually impossible. Upshot: Random * seeking is not supported. * - * $Id: demux_aud.c,v 1.2 2003/01/04 14:48:11 miguelfreitas Exp $ + * $Id: demux_aud.c,v 1.3 2003/01/10 11:57:16 miguelfreitas Exp $ */ #ifdef HAVE_CONFIG_H @@ -177,7 +177,7 @@ static int demux_aud_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 = audio_pts / 90000; + buf->extra_info->input_time = audio_pts / 90; buf->pts = audio_pts; if (chunk_size > buf->max_size) -- cgit v1.2.3