]> git.tuebingen.mpg.de Git - paraslash.git/blob - mp4.h
mp4: Implement error checking for the write path.
[paraslash.git] / mp4.h
1 struct mp4_callback {
2         ssize_t (*read)(void *user_data, void *buffer, size_t length);
3         ssize_t (*write)(void *user_data, void *buffer, size_t count);
4         uint32_t (*seek)(void *user_data, uint64_t position);
5         uint32_t (*truncate)(void *user_data);
6         void *user_data;
7 };
8
9 struct mp4_tag {
10     char *item;
11     char *value;
12     uint32_t len;
13 };
14
15 struct mp4_metadata {
16     struct mp4_tag *tags;
17     uint32_t count;
18 };
19
20 struct mp4; /* opaque */
21
22 int mp4_set_sample_position(struct mp4 *f, int32_t sample);
23 int mp4_open_read(const struct mp4_callback *cb, struct mp4 **result);
24 void mp4_close(struct mp4 *f);
25 int32_t mp4_get_sample_size(const struct mp4 *f, int sample);
26 uint32_t mp4_get_sample_rate(const struct mp4 *f);
27 uint32_t mp4_get_channel_count(const struct mp4 * f);
28 int32_t mp4_num_samples(const struct mp4 *f);
29 uint64_t mp4_get_duration(const struct mp4 *f);
30 int mp4_open_meta(const struct mp4_callback *cb, struct mp4 **result);
31 struct mp4_metadata *mp4_get_meta(struct mp4 *f);
32 int mp4_meta_update(struct mp4 *f);
33 char *mp4_meta_get_artist(const struct mp4 *f);
34 char *mp4_meta_get_title(const struct mp4 *f);
35 char *mp4_meta_get_date(const struct mp4 *f);
36 char *mp4_meta_get_album(const struct mp4 *f);
37 char *mp4_meta_get_comment(const struct mp4 *f);