1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

lavd/kmsgrab: Fix packet flag setting

Found-by: James Almer <jamrial@gmail.com>
This commit is contained in:
Mark Thompson 2017-09-14 09:14:36 +01:00
parent 6561cdd70c
commit 16b44d9ab9

View File

@ -190,10 +190,10 @@ static int kmsgrab_read_packet(AVFormatContext *avctx, AVPacket *pkt)
if (!pkt->buf)
return AVERROR(ENOMEM);
pkt->data = (uint8_t*)frame;
pkt->size = sizeof(*frame);
pkt->pts = now;
pkt->flags = AV_PKT_FLAG_TRUSTED;
pkt->data = (uint8_t*)frame;
pkt->size = sizeof(*frame);
pkt->pts = now;
pkt->flags |= AV_PKT_FLAG_TRUSTED;
return 0;
}