m_unescape_url: Remove completely
[libquvi.git] / src / misc / subtitle.c
blobca7052cda5c74069a44c4e2c71ff9918825b4b96
1 /* libquvi
2 * Copyright (C) 2013 Toni Gundogdu <legatvs@gmail.com>
4 * This file is part of libquvi <http://quvi.sourceforge.net/>.
6 * This library is free software: you can redistribute it and/or
7 * modify it under the terms of the GNU Affero General Public
8 * License as published by the Free Software Foundation, either
9 * version 3 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Affero General Public License for more details.
16 * You should have received a copy of the GNU Affero General
17 * Public License along with this library. If not, see
18 * <http://www.gnu.org/licenses/>.
21 #include "config.h"
23 #include <glib.h>
25 #include "quvi.h"
26 /* -- */
27 #include "_quvi_s.h"
28 #include "_quvi_subtitle_s.h"
29 /* -- */
30 #include "misc/subtitle.h"
31 #include "misc/slst.h"
33 gpointer m_subtitle_new(_quvi_t q, const gchar *url)
35 _quvi_subtitle_t qsub = g_new0(struct _quvi_subtitle_s, 1);
36 /* URL */
37 qsub->url.input = g_string_new(url);
38 /* Handle */
39 qsub->handle.quvi = q;
40 return (qsub);
43 void m_subtitle_lang_free(_quvi_subtitle_lang_t qsl)
45 if (qsl == NULL)
46 return;
48 g_string_free(qsl->translated, TRUE);
49 qsl->translated = NULL;
51 g_string_free(qsl->original, TRUE);
52 qsl->original = NULL;
54 g_string_free(qsl->code, TRUE);
55 qsl->code = NULL;
57 g_string_free(qsl->url, TRUE);
58 qsl->url = NULL;
60 g_string_free(qsl->id, TRUE);
61 qsl->id = NULL;
63 g_free(qsl);
64 qsl = NULL;
67 static void _lang_free(gpointer p, gpointer userdata)
69 m_subtitle_lang_free(p);
72 void m_subtitle_type_free(_quvi_subtitle_type_t qst)
74 if (qst == NULL)
75 return;
77 m_slist_free_full(qst->languages, _lang_free);
78 qst->languages = NULL;
80 g_free(qst);
81 qst = NULL;
84 static void _type_free(gpointer p, gpointer userdata)
86 m_subtitle_type_free(p);
89 void m_subtitle_free(_quvi_subtitle_t qsub)
91 if (qsub == NULL)
92 return;
94 m_slist_free_full(qsub->types, _type_free);
95 qsub->types = NULL;
97 g_string_free(qsub->url.input, TRUE);
98 qsub->url.input = NULL;
100 g_free(qsub);
101 qsub = NULL;
104 /* vim: set ts=2 sw=2 tw=72 expandtab: */