summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2006-03-02 19:50:21 +0000
committerMichael Niedermayer <michaelni@gmx.at>2006-03-02 19:50:21 +0000
commit38cf2a723c65d81a0183379e7dae438930fbcff9 (patch)
treec4b912d544e6150cf14e238180225e18e1f2378d /libavformat
parent26f86eaf03be9acf95676f67897b75f7f0c40238 (diff)
timebase fix
Originally committed as revision 5099 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/asf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/asf.c b/libavformat/asf.c
index 29af3172a4..f4a920d3e7 100644
--- a/libavformat/asf.c
+++ b/libavformat/asf.c
@@ -802,7 +802,7 @@ static int64_t asf_read_pts(AVFormatContext *s, int stream_index, int64_t *ppos,
return AV_NOPTS_VALUE;
}
- pts= pkt->pts * 1000 / AV_TIME_BASE;
+ pts= pkt->pts;
av_free_packet(pkt);
if(pkt->flags&PKT_FLAG_KEY){