From 38cf2a723c65d81a0183379e7dae438930fbcff9 Mon Sep 17 00:00:00 2001
From: Michael Niedermayer <michaelni@gmx.at>
Date: Thu, 2 Mar 2006 19:50:21 +0000
Subject: [PATCH] timebase fix

Originally committed as revision 5099 to svn://svn.ffmpeg.org/ffmpeg/trunk
---
 libavformat/asf.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/asf.c b/libavformat/asf.c
index 29af3172a44..f4a920d3e7f 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){
-- 
GitLab