Skip to content
Snippets Groups Projects
Commit a9d921cb authored by Anton Khirnov's avatar Anton Khirnov Committed by Mans Rullgard
Browse files

tty.c: rename PKT_FLAG_KEY to AV_PKT_FLAG_KEY.


Signed-off-by: default avatarMans Rullgard <mans@mansr.com>
parent 151595fe
No related branches found
No related tags found
No related merge requests found
...@@ -120,7 +120,7 @@ static int read_packet(AVFormatContext *avctx, AVPacket *pkt) ...@@ -120,7 +120,7 @@ static int read_packet(AVFormatContext *avctx, AVPacket *pkt)
pkt->size = av_get_packet(avctx->pb, pkt, n); pkt->size = av_get_packet(avctx->pb, pkt, n);
if (pkt->size <= 0) if (pkt->size <= 0)
return AVERROR(EIO); return AVERROR(EIO);
pkt->flags |= PKT_FLAG_KEY; pkt->flags |= AV_PKT_FLAG_KEY;
return 0; return 0;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment