[SCM] libav/experimental: timebase fix

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 15:46:49 UTC 2013


The following commit has been merged in the experimental branch:
commit 38cf2a723c65d81a0183379e7dae438930fbcff9
Author: Michael Niedermayer <michaelni at gmx.at>
Date:   Thu Mar 2 19:50:21 2006 +0000

    timebase fix
    
    Originally committed as revision 5099 to svn://svn.ffmpeg.org/ffmpeg/trunk

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

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list