[FFmpeg-cvslog] avformat/webmdashenc: fix on-demand profile string

2022-04-07 Thread James Almer
ffmpeg | branch: release/4.1 | James Almer  | Thu Apr  7 
21:57:42 2022 -0300| [ad26796f4e24ee49eba17852c12f1941dd82bfd3] | committer: 
James Almer

avformat/webmdashenc: fix on-demand profile string

Fixes ticket #9596

Signed-off-by: James Almer 
(cherry picked from commit 487b49d8f2e1e81dce86230fc957ca2ee9de00ee)

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=ad26796f4e24ee49eba17852c12f1941dd82bfd3
---

 libavformat/webmdashenc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/webmdashenc.c b/libavformat/webmdashenc.c
index 542410f26b..3a2504795e 100644
--- a/libavformat/webmdashenc.c
+++ b/libavformat/webmdashenc.c
@@ -104,7 +104,7 @@ static int write_header(AVFormatContext *s)
 }
 avio_printf(s->pb, "  minBufferTime=\"PT%gS\"\n", min_buffer_time);
 avio_printf(s->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);

___
ffmpeg-cvslog mailing list
ffmpeg-cvslog@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog

To unsubscribe, visit link above, or email
ffmpeg-cvslog-requ...@ffmpeg.org with subject "unsubscribe".


[FFmpeg-cvslog] avformat/webmdashenc: fix on-demand profile string

2022-04-07 Thread James Almer
ffmpeg | branch: release/4.2 | James Almer  | Thu Apr  7 
21:57:42 2022 -0300| [d36f0ff69ac2d27b97ed1e75faa88a2a3b4cfa40] | committer: 
James Almer

avformat/webmdashenc: fix on-demand profile string

Fixes ticket #9596

Signed-off-by: James Almer 
(cherry picked from commit 487b49d8f2e1e81dce86230fc957ca2ee9de00ee)

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=d36f0ff69ac2d27b97ed1e75faa88a2a3b4cfa40
---

 libavformat/webmdashenc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/webmdashenc.c b/libavformat/webmdashenc.c
index 542410f26b..3a2504795e 100644
--- a/libavformat/webmdashenc.c
+++ b/libavformat/webmdashenc.c
@@ -104,7 +104,7 @@ static int write_header(AVFormatContext *s)
 }
 avio_printf(s->pb, "  minBufferTime=\"PT%gS\"\n", min_buffer_time);
 avio_printf(s->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);

___
ffmpeg-cvslog mailing list
ffmpeg-cvslog@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog

To unsubscribe, visit link above, or email
ffmpeg-cvslog-requ...@ffmpeg.org with subject "unsubscribe".


[FFmpeg-cvslog] avformat/webmdashenc: fix on-demand profile string

2022-04-07 Thread James Almer
ffmpeg | branch: release/4.3 | James Almer  | Thu Apr  7 
21:57:42 2022 -0300| [497c32486c1b5f4d03b540a01e08528aa9990216] | committer: 
James Almer

avformat/webmdashenc: fix on-demand profile string

Fixes ticket #9596

Signed-off-by: James Almer 
(cherry picked from commit 487b49d8f2e1e81dce86230fc957ca2ee9de00ee)

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=497c32486c1b5f4d03b540a01e08528aa9990216
---

 libavformat/webmdashenc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/webmdashenc.c b/libavformat/webmdashenc.c
index a9edcf73b8..10ae63ae25 100644
--- a/libavformat/webmdashenc.c
+++ b/libavformat/webmdashenc.c
@@ -92,7 +92,7 @@ static int write_header(AVFormatContext *s)
 }
 avio_printf(s->pb, "  minBufferTime=\"PT%gS\"\n", min_buffer_time);
 avio_printf(s->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);

___
ffmpeg-cvslog mailing list
ffmpeg-cvslog@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog

To unsubscribe, visit link above, or email
ffmpeg-cvslog-requ...@ffmpeg.org with subject "unsubscribe".


[FFmpeg-cvslog] avformat/webmdashenc: fix on-demand profile string

2022-04-07 Thread James Almer
ffmpeg | branch: release/4.4 | James Almer  | Thu Apr  7 
21:57:42 2022 -0300| [472af5873f639a6fe72fa7360aac323104784cb3] | committer: 
James Almer

avformat/webmdashenc: fix on-demand profile string

Fixes ticket #9596

Signed-off-by: James Almer 
(cherry picked from commit 487b49d8f2e1e81dce86230fc957ca2ee9de00ee)

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=472af5873f639a6fe72fa7360aac323104784cb3
---

 libavformat/webmdashenc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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);

___
ffmpeg-cvslog mailing list
ffmpeg-cvslog@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog

To unsubscribe, visit link above, or email
ffmpeg-cvslog-requ...@ffmpeg.org with subject "unsubscribe".


[FFmpeg-cvslog] avformat/webmdashenc: fix on-demand profile string

2022-04-07 Thread James Almer
ffmpeg | branch: release/5.0 | James Almer  | Thu Apr  7 
21:57:42 2022 -0300| [2db2bdabbd94c3c28492c554a4291e0542660693] | committer: 
James Almer

avformat/webmdashenc: fix on-demand profile string

Fixes ticket #9596

Signed-off-by: James Almer 
(cherry picked from commit 487b49d8f2e1e81dce86230fc957ca2ee9de00ee)

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=2db2bdabbd94c3c28492c554a4291e0542660693
---

 libavformat/webmdashenc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/webmdashenc.c b/libavformat/webmdashenc.c
index cf69bd35b1..384318708e 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);

___
ffmpeg-cvslog mailing list
ffmpeg-cvslog@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog

To unsubscribe, visit link above, or email
ffmpeg-cvslog-requ...@ffmpeg.org with subject "unsubscribe".


[FFmpeg-cvslog] avformat/webmdashenc: fix on-demand profile string

2022-04-07 Thread James Almer
ffmpeg | branch: master | James Almer  | Thu Apr  7 21:57:42 
2022 -0300| [487b49d8f2e1e81dce86230fc957ca2ee9de00ee] | committer: James Almer

avformat/webmdashenc: fix on-demand profile string

Fixes ticket #9596

Signed-off-by: James Almer 

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=487b49d8f2e1e81dce86230fc957ca2ee9de00ee
---

 libavformat/webmdashenc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/webmdashenc.c b/libavformat/webmdashenc.c
index a942c484e9..f8f2274556 100644
--- a/libavformat/webmdashenc.c
+++ b/libavformat/webmdashenc.c
@@ -95,7 +95,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);

___
ffmpeg-cvslog mailing list
ffmpeg-cvslog@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog

To unsubscribe, visit link above, or email
ffmpeg-cvslog-requ...@ffmpeg.org with subject "unsubscribe".