File: vorbis_header_utils.h

package info (click to toggle)
ogmtools 1%3A1.5-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,564 kB
  • sloc: cpp: 8,003; ansic: 5,865; sh: 3,167; makefile: 71
file content (24 lines) | stat: -rw-r--r-- 642 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef __VORBIS_HEADER_UTILS_H
#define __VORBIS_HEADER_UTILS_H

#include <vorbis/codec.h>

#ifdef __cplusplus
extern "C" {
#endif

char *mmalloc(int size);
int vorbis_unpack_comment(vorbis_comment *vc, char *buf, int len);
void vorbis_comment_remove_tag(vorbis_comment *vc, char *tag);
void vorbis_comment_remove_number(vorbis_comment *vc, int num);
vorbis_comment *vorbis_comment_dup(vorbis_comment *vc);
vorbis_comment *vorbis_comment_cat(vorbis_comment *dst, vorbis_comment *src);

vorbis_comment *generate_vorbis_comment(char **s);
int comments_to_buffer(vorbis_comment *vc, char *tempbuf, int len);

#ifdef __cplusplus
}
#endif

#endif