diff --git a/libavformat/mpc8.c b/libavformat/mpc8.c index 2951c27e78..0b1f6b6e49 100644 --- a/libavformat/mpc8.c +++ b/libavformat/mpc8.c @@ -274,7 +274,7 @@ static int mpc8_read_packet(AVFormatContext *s, AVPacket *pkt) if(av_get_packet(s->pb, pkt, size) < 0) return AVERROR(ENOMEM); pkt->stream_index = 0; - pkt->pts = c->frame; + pkt->pts = c->frame++; return 0; } if(tag == TAG_STREAMEND)