diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-02-03 13:34:02 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-02-04 03:10:12 +0100 |
commit | d947bce1fcd0115d1ff286965321f1434d62b45a (patch) | |
tree | 480634b11b8e4db3d24936403b80f549aecd3917 | |
parent | 7cb5258483961c6be50975ab40087e51b4b0fa9f (diff) | |
download | ffmpeg-d947bce1fcd0115d1ff286965321f1434d62b45a.tar.gz |
tty.c: rename PKT_FLAG_KEY to AV_PKT_FLAG_KEY.
Signed-off-by: Mans Rullgard <mans@mansr.com>
(cherry picked from commit a9d921cbad7ec7e88bdb81b046faa9c1c6ac6d3d)
-rw-r--r-- | libavformat/tty.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/tty.c b/libavformat/tty.c index 0adbaf1f11..1003157ee0 100644 --- a/libavformat/tty.c +++ b/libavformat/tty.c @@ -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; } |