You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
segment: fix FPE when segment_list_size is 0
With the added benefit that allowing -segment_list_size 0 makes it possible to keep all segment entries in the list file. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
committed by
Michael Niedermayer
parent
645569e19f
commit
62a22b2865
@@ -206,7 +206,7 @@ static int seg_write_packet(AVFormatContext *s, AVPacket *pkt)
|
||||
if (seg->list) {
|
||||
avio_printf(seg->pb, "%s\n", oc->filename);
|
||||
avio_flush(seg->pb);
|
||||
if (!(seg->number % seg->size)) {
|
||||
if (seg->size && !(seg->number % seg->size)) {
|
||||
avio_close(seg->pb);
|
||||
if ((ret = avio_open2(&seg->pb, seg->list, AVIO_FLAG_WRITE,
|
||||
&s->interrupt_callback, NULL)) < 0)
|
||||
|
Reference in New Issue
Block a user