quvi_set: Add support for QUVI_OPTION_CALLBACK_STATUS_USERDATA
[libquvi.git] / src / api / subtitle_export_new.c
blob3882b2507c9c46ab71a76e1c9e6bf24b0a0fa28d
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 /** @file subtitle_export_new.c */
23 #include "config.h"
25 #include <glib.h>
27 #include "quvi.h"
28 /* -- */
29 #include "_quvi_s.h"
30 #include "_quvi_subtitle_export_s.h"
31 #include "_quvi_subtitle_s.h"
32 /* -- */
33 #include "misc/match_subtitle_export_script.h"
35 /** @brief Create a new subtitle export handle
36 @return New handle, @ref quvi_subtitle_export_free it when done using it
37 @note Use @ref quvi_ok to check if an occurred
38 @sa @ref parse_subtitle
39 @ingroup subprop
41 quvi_subtitle_export_t
42 quvi_subtitle_export_new(quvi_subtitle_lang_t handle, char *to_format)
44 _quvi_subtitle_export_t qse;
45 _quvi_subtitle_lang_t qsl;
46 _quvi_t q;
48 /* If G_DISABLE_CHECKS is defined then the check is not performed. */
49 g_return_val_if_fail(handle != NULL, NULL);
51 qsl = (_quvi_subtitle_lang_t) handle;
52 q = qsl->handle.quvi;
53 qse = NULL;
55 q->status.rc = m_match_subtitle_export_script(q, &qse, qsl, to_format);
56 return (qse);
59 /* vim: set ts=2 sw=2 tw=72 expandtab: */