/* Clapper Application * Copyright (C) 2024 Rafał Dzięgiel * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #pragma once #include #include #include #include "clapper-app-internal-visibility.h" G_BEGIN_DECLS CLAPPER_APP_INTERNAL_API gchar * clapper_app_list_item_make_stream_group_title (GtkListItem *list_item, ClapperStream *stream); CLAPPER_APP_INTERNAL_API gchar * clapper_app_list_item_make_resolution (GtkListItem *list_item, gint width, gint height); CLAPPER_APP_INTERNAL_API gchar * clapper_app_list_item_make_bitrate (GtkListItem *list_item, guint value); CLAPPER_APP_INTERNAL_API gchar * clapper_app_list_item_convert_int (GtkListItem *list_item, gint value); CLAPPER_APP_INTERNAL_API gchar * clapper_app_list_item_convert_uint (GtkListItem *list_item, guint value); CLAPPER_APP_INTERNAL_API gchar * clapper_app_list_item_convert_double (GtkListItem *list_item, gdouble value); G_END_DECLS