avformat/hlsenc: make the EXT-X-MEDIA NAME field by stream id.
ffmpeg | branch: master | Steven Liu <lq@chinaffmpeg.org> | Mon Jan 21 16:32:57 2019 +0800| [62e8644bcadb82e0ed542b6baacff1c9e15b88c2] | committer: Steven Liu avformat/hlsenc: make the EXT-X-MEDIA NAME field by stream id. Signed-off-by: Steven Liu <lq@chinaffmpeg.org>
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=62e8644bcadb82e0ed...
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); }
participants (1)
-
Steven Liu