[FFmpeg-devel] [PATCH v3 3/5] avformat/hls: relay programs to child muxers

Marton Balint cus at passwd.hu
Sat Feb 18 00:01:34 EET 2023



On Fri, 17 Feb 2023, Gyan Doshi wrote:

> ---
> libavformat/hlsenc.c | 8 ++++++++
> 1 file changed, 8 insertions(+)
>
> diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c
> index e1f96feda3..cf2b36da01 100644
> --- a/libavformat/hlsenc.c
> +++ b/libavformat/hlsenc.c
> @@ -911,6 +911,14 @@ FF_ENABLE_DEPRECATION_WARNINGS
>         st->id = vs->streams[i]->id;
>     }
>
> +    for (i = 0; i < s->nb_programs; i++) {
> +        ret = av_program_copy(oc, (const AVFormatContext *)s, s->programs[i]->id, 0);
> +        if (ret < 0) {
> +            av_log(s, AV_LOG_WARNING, "unable to transfer program %d to child muxer\n", s->programs[i]->id);

Aren't these errors supposed to be propagated back as hard failures, 
instead of simply ignoring them? The next 2 patches also has this problem.

Thanks,
Marton


More information about the ffmpeg-devel mailing list