You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
mpc8: fix pts
Fixes Ticket1254 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -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)
|
||||
|
Reference in New Issue
Block a user