diff mbox series

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

Message ID 20230218044949.1179-3-ffmpeg@gyani.pro
State New
Headers show
Series [FFmpeg-devel,v4,1/5] avformat: add av_program_add_stream_index2() | expand

Checks

Context Check Description
yinshiyou/make_loongarch64 success Make finished
yinshiyou/make_fate_loongarch64 success Make fate finished
andriy/make_x86 success Make finished
andriy/make_fate_x86 success Make fate finished

Commit Message

Gyan Doshi Feb. 18, 2023, 4:49 a.m. UTC
---
 libavformat/hlsenc.c | 8 ++++++++
 1 file changed, 8 insertions(+)

Comments

Anton Khirnov Feb. 20, 2023, 3:35 p.m. UTC | #1
Quoting Gyan Doshi (2023-02-18 05:49:47)
> ---
>  libavformat/hlsenc.c | 8 ++++++++
>  1 file changed, 8 insertions(+)
> 
> diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c
> index e1f96feda3..74db447085 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);

are the casts really needed?
diff mbox series

Patch

diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c
index e1f96feda3..74db447085 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_ERROR, "unable to transfer program %d to child muxer\n", s->programs[i]->id);
+            return ret;
+        }
+    }
+
     vs->start_pos = 0;
     vs->new_start = 1;