]> 4ch.mooo.com Git - 16.git/blob - src/lib/dl/ext/vorbtool/lyrics.c
refresh wwww
[16.git] / src / lib / dl / ext / vorbtool / lyrics.c
1 /* OggEnc
2  **
3  ** This program is distributed under the GNU General Public License, version 2.
4  ** A copy of this license is included with this source.
5  **
6  ** This particular file may also be distributed under (at your option) any
7  ** later version of the GNU General Public License.
8  **
9  ** Copyright 2008, ogg.k.ogg.k <ogg.k.ogg.k@googlemail.com>
10  **
11  ** Portions from ffmpeg2theora, (c) j <j@v2v.cc>
12  **/
13
14 #ifdef HAVE_CONFIG_H
15 #include "config.h"
16 #endif
17
18 #include <stdio.h>
19 #include <malloc.h>
20 #include <string.h>
21 #include <errno.h>
22
23 #ifdef HAVE_KATE
24 #endif
25
26 #include "lyrics.h"
27 #include "utf8.h"
28 #include "i18n.h"
29
30 typedef enum {
31   lf_unknown,
32   lf_srt,
33   lf_lrc,
34 } lyrics_format;
35
36 #ifdef HAVE_KATE
37 #endif
38
39 oe_lyrics *load_lyrics(const char *filename)
40 {
41 #ifdef HAVE_KATE
42 #else
43   return NULL;
44 #endif
45 }
46
47 void free_lyrics(oe_lyrics *lyrics)
48 {
49 #ifdef HAVE_KATE
50 #endif
51 }
52
53 const oe_lyrics_item *get_lyrics(const oe_lyrics *lyrics, double t, size_t *idx)
54 {
55 #ifdef HAVE_KATE
56 #else
57     return NULL;
58 #endif
59 }