summaryrefslogtreecommitdiff
path: root/src/demuxers/demux_pva.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_pva.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_pva.c')
-rw-r--r--src/demuxers/demux_pva.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/demuxers/demux_pva.c b/src/demuxers/demux_pva.c
index 35105c971..ae324eeee 100644
--- a/src/demuxers/demux_pva.c
+++ b/src/demuxers/demux_pva.c
@@ -21,7 +21,7 @@
* For more information regarding the PVA file format, refer to this PDF:
* http://www.technotrend.de/download/av_format_v1.pdf
*
- * $Id: demux_pva.c,v 1.2 2003/01/04 14:48:12 miguelfreitas Exp $
+ * $Id: demux_pva.c,v 1.3 2003/01/10 11:57:17 miguelfreitas Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -153,7 +153,7 @@ static int demux_pva_send_chunk(demux_plugin_t *this_gen) {
buf->type = BUF_VIDEO_MPEG;
buf->extra_info->input_pos = current_file_pos;
buf->extra_info->input_length = this->data_size;
- buf->extra_info->input_time = buf->pts / 90000;
+ buf->extra_info->input_time = buf->pts / 90;
if (chunk_size > buf->max_size)
buf->size = buf->max_size;