diff options
author | James Almer <jamrial@gmail.com> | 2022-04-07 21:57:42 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2022-04-08 00:05:40 -0300 |
commit | 472af5873f639a6fe72fa7360aac323104784cb3 (patch) | |
tree | a5f1904cc851e9d66293038616e0f52f146afc9f | |
parent | dcb2ad91253e4f913acc02b7db2192335e227f70 (diff) | |
download | ffmpeg-472af5873f639a6fe72fa7360aac323104784cb3.tar.gz |
avformat/webmdashenc: fix on-demand profile string
Fixes ticket #9596
Signed-off-by: James Almer <jamrial@gmail.com>
(cherry picked from commit 487b49d8f2e1e81dce86230fc957ca2ee9de00ee)
-rw-r--r-- | libavformat/webmdashenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/webmdashenc.c b/libavformat/webmdashenc.c index 1304c1a8c3..181ae9db69 100644 --- a/libavformat/webmdashenc.c +++ b/libavformat/webmdashenc.c @@ -93,7 +93,7 @@ static int write_header(AVFormatContext *s) } avio_printf(pb, " minBufferTime=\"PT%gS\"\n", min_buffer_time); avio_printf(pb, " profiles=\"%s\"%s", - w->is_live ? "urn:mpeg:dash:profile:isoff-live:2011" : "urn:webm:dash:profile:webm-on-demand:2012", + w->is_live ? "urn:mpeg:dash:profile:isoff-live:2011" : "urn:mpeg:dash:profile:webm-on-demand:2012", w->is_live ? "\n" : ">\n"); if (w->is_live) { time_t local_time = time(NULL); |