1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-21 10:55:51 +02:00

img2dec: do not change packet pts for image2pipe

Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
Paul B Mahol 2013-01-08 16:50:26 +00:00
parent 55d32eed8f
commit 626756aed2

View File

@ -393,7 +393,8 @@ static int img_read_packet(AVFormatContext *s1, AVPacket *pkt)
return AVERROR(ENOMEM);
pkt->stream_index = 0;
pkt->flags |= AV_PKT_FLAG_KEY;
pkt->pts = s->img_number - s->img_first;
if (!s->is_pipe)
pkt->pts = s->img_number - s->img_first;
pkt->size = 0;
for (i = 0; i < 3; i++) {