From c5da836bf1f7cb12e5eda68db67bcdb8a5424406 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Dzi=C4=99giel?= Date: Fri, 25 Jul 2025 19:05:02 +0200 Subject: [PATCH] clapper: Update harvest common formats description --- src/lib/clapper/clapper-harvest.c | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/src/lib/clapper/clapper-harvest.c b/src/lib/clapper/clapper-harvest.c index af196e70..3af1bfde 100644 --- a/src/lib/clapper/clapper-harvest.c +++ b/src/lib/clapper/clapper-harvest.c @@ -443,11 +443,15 @@ clapper_harvest_export_to_cache (ClapperHarvest *self, ClapperEnhancerProxy *pro * * Commonly used media types are: * - * * `application/dash+xml` + * * `application/dash+xml` - DASH manifest * - * * `application/x-hls` + * * `application/x-hls` - HLS manifest * - * * `text/uri-list` + * * `text/x-uri` - direct media URI + * + * * `text/uri-list` - playlist of URIs + * + * * `application/clapper-playlist` - custom playlist format * * Returns: %TRUE when filled successfully, %FALSE if taken data was empty. * @@ -468,6 +472,7 @@ clapper_harvest_fill (ClapperHarvest *self, const gchar *media_type, gpointer da if (gst_debug_category_get_threshold (GST_CAT_DEFAULT) >= GST_LEVEL_LOG) { gboolean is_printable = (strcmp (media_type, "application/dash+xml") == 0) || (strcmp (media_type, "application/x-hls") == 0) + || (strcmp (media_type, "text/x-uri") == 0) || (strcmp (media_type, "text/uri-list") == 0); if (is_printable) {