Commit 28e63524 authored by michael's avatar michael

timebase fix


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@5099 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 144918cf
...@@ -802,7 +802,7 @@ static int64_t asf_read_pts(AVFormatContext *s, int stream_index, int64_t *ppos, ...@@ -802,7 +802,7 @@ static int64_t asf_read_pts(AVFormatContext *s, int stream_index, int64_t *ppos,
return AV_NOPTS_VALUE; return AV_NOPTS_VALUE;
} }
pts= pkt->pts * 1000 / AV_TIME_BASE; pts= pkt->pts;
av_free_packet(pkt); av_free_packet(pkt);
if(pkt->flags&PKT_FLAG_KEY){ if(pkt->flags&PKT_FLAG_KEY){
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment