mirror of
https://github.com/librempeg/librempeg
synced 2024-11-23 03:28:27 +00:00
Merge commit 'cf679b9476727a237c8006c685ace18acba149ab'
* commit 'cf679b9476727a237c8006c685ace18acba149ab': hls, segment: fix splitting for audio-only streams. Conflicts: libavformat/hlsenc.c libavformat/segment.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
54056c1493
@ -253,25 +253,28 @@ static int hls_write_packet(AVFormatContext *s, AVPacket *pkt)
|
|||||||
AVFormatContext *oc = hls->avf;
|
AVFormatContext *oc = hls->avf;
|
||||||
AVStream *st = s->streams[pkt->stream_index];
|
AVStream *st = s->streams[pkt->stream_index];
|
||||||
int64_t end_pts = hls->recording_time * hls->number;
|
int64_t end_pts = hls->recording_time * hls->number;
|
||||||
int ret, is_ref_pkt = 0;
|
int is_ref_pkt = 1;
|
||||||
|
int ret, can_split = 1;
|
||||||
|
|
||||||
if (hls->start_pts == AV_NOPTS_VALUE) {
|
if (hls->start_pts == AV_NOPTS_VALUE) {
|
||||||
hls->start_pts = pkt->pts;
|
hls->start_pts = pkt->pts;
|
||||||
hls->end_pts = pkt->pts;
|
hls->end_pts = pkt->pts;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((hls->has_video && st->codec->codec_type == AVMEDIA_TYPE_VIDEO) &&
|
if (hls->has_video) {
|
||||||
pkt->pts != AV_NOPTS_VALUE) {
|
can_split = st->codec->codec_type == AVMEDIA_TYPE_VIDEO &&
|
||||||
is_ref_pkt = 1;
|
pkt->flags & AV_PKT_FLAG_KEY;
|
||||||
|
is_ref_pkt = st->codec->codec_type == AVMEDIA_TYPE_VIDEO;
|
||||||
|
}
|
||||||
|
if (pkt->pts == AV_NOPTS_VALUE)
|
||||||
|
is_ref_pkt = can_split = 0;
|
||||||
|
|
||||||
|
if (is_ref_pkt)
|
||||||
hls->duration = av_rescale(pkt->pts - hls->end_pts,
|
hls->duration = av_rescale(pkt->pts - hls->end_pts,
|
||||||
st->time_base.num, st->time_base.den);
|
st->time_base.num, st->time_base.den);
|
||||||
}
|
|
||||||
|
|
||||||
if (is_ref_pkt &&
|
|
||||||
av_compare_ts(pkt->pts - hls->start_pts, st->time_base,
|
|
||||||
end_pts, AV_TIME_BASE_Q) >= 0 &&
|
|
||||||
pkt->flags & AV_PKT_FLAG_KEY) {
|
|
||||||
|
|
||||||
|
if (can_split && av_compare_ts(pkt->pts - hls->start_pts, st->time_base,
|
||||||
|
end_pts, AV_TIME_BASE_Q) >= 0) {
|
||||||
ret = append_entry(hls, hls->duration);
|
ret = append_entry(hls, hls->duration);
|
||||||
if (ret)
|
if (ret)
|
||||||
return ret;
|
return ret;
|
||||||
|
Loading…
Reference in New Issue
Block a user