From 62e8644bcadb82e0ed542b6baacff1c9e15b88c2 Mon Sep 17 00:00:00 2001 From: Steven Liu Date: Mon, 21 Jan 2019 16:32:57 +0800 Subject: [PATCH] avformat/hlsenc: make the EXT-X-MEDIA NAME field by stream id. Signed-off-by: Steven Liu --- libavformat/hlsenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index ca57694e9e..eb094f7490 100644 --- a/libavformat/hlsenc.c +++ b/libavformat/hlsenc.c @@ -1258,7 +1258,7 @@ static int create_master_playlist(AVFormatContext *s, goto fail; } - ff_hls_write_audio_rendition(hls->m3u8_out, vs->agroup, m3u8_rel_name, 0, 1); + ff_hls_write_audio_rendition(hls->m3u8_out, vs->agroup, m3u8_rel_name, i, 1); av_freep(&m3u8_rel_name); }