git.videolan.org
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e767c9e
)
rtpdec_asf: Don't set RTP_FLAG_KEY
author
Martin Storsjö
<martin@martin.st>
Wed, 4 Mar 2015 07:52:33 +0000
(09:52 +0200)
committer
Martin Storsjö
<martin@martin.st>
Wed, 4 Mar 2015 22:26:24 +0000
(
00:26
+0200)
Nothing in the framework nor in the rest of the depacketizer actually
uses this flag - the chained demuxer sets the keyframe flag properly on
demuxed packets already.
Signed-off-by: Martin Storsjö <martin@martin.st>
libavformat/rtpdec_asf.c
patch
|
blob
|
history
diff --git
a/libavformat/rtpdec_asf.c
b/libavformat/rtpdec_asf.c
index
23bf31c
..
3ca3f71
100644
(file)
--- a/
libavformat/rtpdec_asf.c
+++ b/
libavformat/rtpdec_asf.c
@@
-194,8
+194,6
@@
static int asfrtp_parse_packet(AVFormatContext *s, PayloadContext *asf,
int start_off = avio_tell(pb);
mflags = avio_r8(pb);
- if (mflags & 0x80)
- flags |= RTP_FLAG_KEY;
len_off = avio_rb24(pb);
if (mflags & 0x20) /**< relative timestamp */
avio_skip(pb, 4);