[FFmpeg-cvslog] tty.c: rename PKT_FLAG_KEY to AV_PKT_FLAG_KEY.
Anton Khirnov
git
Fri Feb 4 03:37:02 CET 2011
ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Thu Feb 3 13:34:02 2011 +0000| [d947bce1fcd0115d1ff286965321f1434d62b45a] | committer: Michael Niedermayer
tty.c: rename PKT_FLAG_KEY to AV_PKT_FLAG_KEY.
Signed-off-by: Mans Rullgard <mans at mansr.com>
(cherry picked from commit a9d921cbad7ec7e88bdb81b046faa9c1c6ac6d3d)
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=d947bce1fcd0115d1ff286965321f1434d62b45a
---
libavformat/tty.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/libavformat/tty.c b/libavformat/tty.c
index 0adbaf1..1003157 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;
}
More information about the ffmpeg-cvslog
mailing list