mirror of https://git.ffmpeg.org/ffmpeg.git
tty.c: rename PKT_FLAG_KEY to AV_PKT_FLAG_KEY.
Signed-off-by: Mans Rullgard <mans@mansr.com>
(cherry picked from commit a9d921cbad
)
This commit is contained in:
parent
7cb5258483
commit
d947bce1fc
|
@ -120,7 +120,7 @@ static int read_packet(AVFormatContext *avctx, AVPacket *pkt)
|
|||
pkt->size = av_get_packet(avctx->pb, pkt, n);
|
||||
if (pkt->size <= 0)
|
||||
return AVERROR(EIO);
|
||||
pkt->flags |= PKT_FLAG_KEY;
|
||||
pkt->flags |= AV_PKT_FLAG_KEY;
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue