public
Description: Ruby library for reading/writing vorbis comments
Homepage: http://code.jeremyevans.net/doc/ruby-vorbis_comment/
Clone URL: git://github.com/jeremyevans/ruby-vorbis_comment.git
ruby-vorbis_comment / vcedit.h
100644 53 lines (43 sloc) 1.429 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*
* Copyright (C) 2000-2001 Michael Smith (msmith at xiph org)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation, version 2.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301 USA
*/
 
#ifndef __VCEDIT_H
#define __VCEDIT_H
 
#ifdef __cplusplus
extern "C" {
#endif
 
#include <stdio.h>
#include <ogg/ogg.h>
#include <vorbis/codec.h>
 
typedef enum {
VCEDIT_ERR_SUCCESS = 0,
VCEDIT_ERR_OPEN,
VCEDIT_ERR_INVAL,
VCEDIT_ERR_TMPFILE,
VCEDIT_ERR_REOPEN
} vcedit_error;
 
typedef struct vcedit_state_St vcedit_state;
 
vcedit_state *vcedit_state_new (const char *filename);
void vcedit_state_ref (vcedit_state *state);
void vcedit_state_unref (vcedit_state *state);
vorbis_comment *vcedit_comments (vcedit_state *state);
vcedit_error vcedit_open (vcedit_state *state);
vcedit_error vcedit_write (vcedit_state *state);
 
#ifdef __cplusplus
}
#endif
 
#endif /* __VCEDIT_H */