OSDN Git Service

tty.c: rename PKT_FLAG_KEY to AV_PKT_FLAG_KEY.
authorAnton Khirnov <anton@khirnov.net>
Thu, 3 Feb 2011 13:34:02 +0000 (13:34 +0000)
committerMans Rullgard <mans@mansr.com>
Thu, 3 Feb 2011 13:41:08 +0000 (13:41 +0000)
Signed-off-by: Mans Rullgard <mans@mansr.com>
libavformat/tty.c

index 0adbaf1..1003157 100644 (file)
@@ -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;
 }