[FFmpeg-devel] [PATCH] avformat/segafilm - fix keyframe detection and set packet, flags
Gyan Doshi
gyandoshi at gmail.com
Wed Mar 21 15:37:26 EET 2018
Fix for ticket 7091.
Regards,
Gyan
-------------- next part --------------
From 24a68eca54a5051b3386664f07d21358aa0db02d Mon Sep 17 00:00:00 2001
From: Gyan Doshi <gyandoshi at gmail.com>
Date: Wed, 21 Mar 2018 18:59:33 +0530
Subject: [PATCH] avformat/segafilm - fix keyframe detection and set packet
flags
Streams from a Segafilm cpk file can't be streamcopied because
keyframe flag isn't correctly set in stream index and
said flag is never conveyed to the packet's flags
Fixes #7091
---
libavformat/segafilm.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/libavformat/segafilm.c b/libavformat/segafilm.c
index 1fdef50cc7..11768823fc 100644
--- a/libavformat/segafilm.c
+++ b/libavformat/segafilm.c
@@ -239,7 +239,7 @@ static int film_read_header(AVFormatContext *s)
} else {
film->sample_table[i].stream = film->video_stream_index;
film->sample_table[i].pts = AV_RB32(&scratch[8]) & 0x7FFFFFFF;
- film->sample_table[i].keyframe = (scratch[8] & 0x80) ? 0 : 1;
+ film->sample_table[i].keyframe = (scratch[8] & 0x80) ? 1 : 0;
video_frame_counter++;
if (film->video_type)
av_add_index_entry(s->streams[film->video_stream_index],
@@ -286,6 +286,7 @@ static int film_read_packet(AVFormatContext *s,
pkt->stream_index = sample->stream;
pkt->pts = sample->pts;
+ pkt->flags |= sample->keyframe;
film->current_sample++;
--
2.12.2.windows.2
More information about the ffmpeg-devel
mailing list