diff options
Diffstat (limited to 'src/demuxers/demux_vqa.c')
-rw-r--r-- | src/demuxers/demux_vqa.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/demuxers/demux_vqa.c b/src/demuxers/demux_vqa.c index 063d9ef14..9658614a1 100644 --- a/src/demuxers/demux_vqa.c +++ b/src/demuxers/demux_vqa.c @@ -27,7 +27,7 @@ * block needs information from the previous audio block in order to be * decoded, thus making random seeking difficult. * - * $Id: demux_vqa.c,v 1.25 2003/01/04 14:48:12 miguelfreitas Exp $ + * $Id: demux_vqa.c,v 1.26 2003/01/10 11:57:18 miguelfreitas Exp $ */ #ifdef HAVE_CONFIG_H @@ -183,7 +183,7 @@ static int demux_vqa_send_chunk(demux_plugin_t *this_gen) { buf->type = BUF_AUDIO_VQA_IMA; buf->extra_info->input_pos = current_file_pos; buf->extra_info->input_length = this->filesize; - 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) @@ -224,7 +224,7 @@ static int demux_vqa_send_chunk(demux_plugin_t *this_gen) { buf->type = BUF_VIDEO_VQA; buf->extra_info->input_pos = current_file_pos; buf->extra_info->input_length = this->filesize; - buf->extra_info->input_time = this->video_pts / 90000; + buf->extra_info->input_time = this->video_pts / 90; buf->pts = this->video_pts; if (chunk_size > buf->max_size) |