diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2006-03-02 19:50:21 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2006-03-02 19:50:21 +0000 |
commit | 38cf2a723c65d81a0183379e7dae438930fbcff9 (patch) | |
tree | c4b912d544e6150cf14e238180225e18e1f2378d /libavformat/asf.c | |
parent | 26f86eaf03be9acf95676f67897b75f7f0c40238 (diff) | |
download | ffmpeg-38cf2a723c65d81a0183379e7dae438930fbcff9.tar.gz |
timebase fix
Originally committed as revision 5099 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/asf.c')
-rw-r--r-- | libavformat/asf.c | 2 |
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){ |