diff options
author | Martin Storsjö <martin@martin.st> | 2015-03-04 09:52:33 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2015-03-05 00:26:24 +0200 |
commit | 15621cbbe4ed88409ef40257afaf239487964e98 (patch) | |
tree | 962b0b3f55a6cd8ad30df4700bf3a38a46318278 /libavformat/rtpdec_asf.c | |
parent | e767c9e8f2eaa116b61b8b6881b401b54bd320f5 (diff) | |
download | ffmpeg-15621cbbe4ed88409ef40257afaf239487964e98.tar.gz |
rtpdec_asf: Don't set RTP_FLAG_KEY
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>
Diffstat (limited to 'libavformat/rtpdec_asf.c')
-rw-r--r-- | libavformat/rtpdec_asf.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavformat/rtpdec_asf.c b/libavformat/rtpdec_asf.c index 23bf31c69b..3ca3f71972 100644 --- 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); |