[FFmpeg-devel] [PATCH 1/1] Added support to get specific periods from the mpeg-dash demuxer instead of just the longest one.

2024-10-23 Thread Louis Letourneau
From: Louis Letourneau --- libavformat/dashdec.c | 14 +- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/libavformat/dashdec.c b/libavformat/dashdec.c index a1d274f2f0..345454e6b6 100644 --- a/libavformat/dashdec.c +++ b/libavformat/dashdec.c @@ -150,6 +150,7

[FFmpeg-devel] [PATCH] Added support to get specific periods from the mpeg-dash demuxer instead of just the longest one.

2024-10-23 Thread Louis Letourneau
From: Louis Letourneau --- libavformat/dashdec.c | 14 +- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/libavformat/dashdec.c b/libavformat/dashdec.c index a1d274f2f0..345454e6b6 100644 --- a/libavformat/dashdec.c +++ b/libavformat/dashdec.c @@ -150,6 +150,7

[FFmpeg-devel] [PATCH 0/1] Support multi-period dash manifests

2024-10-23 Thread Louis Letourneau
From: Louis Letourneau Current dash demuxer only uses the longest period in a MPEG-DASH manifest. This patch allows the user to either use that mecanism (default) or pick the period they want to work with. Louis Letourneau (1): Added support to get specific periods from the mpeg-dash demuxer