mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
set got_key_frame when packet is video, fix first video packet with index 0 and 2 streams
Originally committed as revision 13551 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
79c7968726
commit
0332f54945
16
ffserver.c
16
ffserver.c
@ -2100,17 +2100,11 @@ static int http_prepare_data(HTTPContext *c)
|
||||
for(i=0;i<c->stream->nb_streams;i++) {
|
||||
if (c->feed_streams[i] == pkt.stream_index) {
|
||||
pkt.stream_index = i;
|
||||
if (pkt.flags & PKT_FLAG_KEY)
|
||||
c->got_key_frame |= 1 << i;
|
||||
/* See if we have all the key frames, then
|
||||
* we start to send. This logic is not quite
|
||||
* right, but it works for the case of a
|
||||
* single video stream with one or more
|
||||
* audio streams (for which every frame is
|
||||
* typically a key frame).
|
||||
*/
|
||||
if (!c->stream->send_on_key ||
|
||||
((c->got_key_frame + 1) >> c->stream->nb_streams))
|
||||
if (pkt.flags & PKT_FLAG_KEY &&
|
||||
c->fmt_in->streams[source_index]->codec->codec_type
|
||||
== CODEC_TYPE_VIDEO)
|
||||
c->got_key_frame = 1;
|
||||
if (!c->stream->send_on_key || c->got_key_frame)
|
||||
goto send_it;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user