diff --git a/libavformat/ffm.c b/libavformat/ffm.c index 6c79a9d733..deb30a6e7d 100644 --- a/libavformat/ffm.c +++ b/libavformat/ffm.c @@ -260,7 +260,7 @@ static int ffm_write_packet(AVFormatContext *s, AVPacket *pkt) ffm_write_data(s, header, FRAME_HEADER_SIZE, pts, 1); ffm_write_data(s, pkt->data, size, pts, 0); - fst->pts += duration; + fst->pts += pkt->duration; return 0; }