This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
tty.c: rename PKT_FLAG_KEY to AV_PKT_FLAG_KEY.
Signed-off-by: Mans Rullgard <mans@mansr.com>
tags/n0.8
Anton Khirnov
Mans Rullgard
14 years ago
parent
151595fe2e
commit
a9d921cbad
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavformat/tty.c
+ 1
- 1
libavformat/tty.c
View 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;
}
Write
Preview
Loading…
Cancel
Save