]> git.tuebingen.mpg.de Git - paraslash.git/blob - aac_afh.c
mp4: Document the purpose of each atom.
[paraslash.git] / aac_afh.c
1 /* Copyright (C) 2006 Andre Noll <maan@tuebingen.mpg.de>, see file COPYING. */
2 /*
3  * based in parts on libfaad, Copyright (C) 2003-2005 M. Bakker,
4  * Ahead Software AG
5  */
6
7 /** \file aac_afh.c para_server's aac audio format handler. */
8
9 #include <regex.h>
10 #include <neaacdec.h>
11
12 #include "para.h"
13 #include "mp4.h"
14 #include "error.h"
15 #include "portable_io.h"
16 #include "afh.h"
17 #include "string.h"
18 #include "fd.h"
19
20
21 struct aac_afh_context {
22         const void *map;
23         size_t mapsize;
24         size_t fpos;
25         struct mp4 *mp4;
26         struct mp4_callback cb;
27 };
28
29 static ssize_t aac_afh_read_cb(void *user_data, void *dest, size_t want)
30 {
31         struct aac_afh_context *c = user_data;
32         size_t have, rv;
33
34         if (want == 0 || c->fpos >= c->mapsize)
35                 return 0;
36         have = c->mapsize - c->fpos;
37         rv = PARA_MIN(have, want);
38         PARA_DEBUG_LOG("reading %zu bytes @%zu\n", rv, c->fpos);
39         memcpy(dest, c->map + c->fpos, rv);
40         c->fpos += rv;
41         return rv;
42 }
43
44 static off_t aac_afh_seek_cb(void *user_data, off_t offset, int whence)
45 {
46         struct aac_afh_context *c = user_data;
47
48         if (whence == SEEK_SET)
49                 c->fpos = offset;
50         else if (whence == SEEK_CUR)
51                 c->fpos += offset;
52         else if (whence == SEEK_END)
53                 c->fpos = c->mapsize + offset;
54         else
55                 assert(false);
56         return c->fpos;
57 }
58
59 static int aac_afh_open(const void *map, size_t mapsize, void **afh_context)
60 {
61         int ret;
62         struct aac_afh_context *c = para_malloc(sizeof(*c));
63
64         c->map = map;
65         c->mapsize = mapsize;
66         c->fpos = 0;
67         c->cb.read = aac_afh_read_cb;
68         c->cb.seek = aac_afh_seek_cb;
69         c->cb.user_data = c;
70
71         ret = mp4_open(&c->cb, &c->mp4);
72         if (ret < 0)
73                 goto free_ctx;
74         *afh_context = c;
75         return 0;
76 free_ctx:
77         free(c);
78         *afh_context = NULL;
79         return ret;
80 }
81
82 static void aac_afh_close(void *afh_context)
83 {
84         struct aac_afh_context *c = afh_context;
85         mp4_close(c->mp4);
86         free(c);
87 }
88
89 static int aac_afh_get_chunk(uint32_t chunk_num, void *afh_context,
90                 const char **buf, uint32_t *len)
91 {
92         struct aac_afh_context *c = afh_context;
93         uint32_t ss;
94         size_t offset;
95         int ret;
96
97         ret = mp4_set_sample_position(c->mp4, chunk_num);
98         if (ret < 0)
99                 return ret;
100         offset = c->fpos;
101         ret = mp4_get_sample_size(c->mp4, chunk_num, &ss);
102         if (ret < 0)
103                 return ret;
104         assert(ss + offset <= c->mapsize);
105         *buf = c->map + offset;
106         *len = ss;
107         return 1;
108 }
109
110 static void aac_afh_get_taginfo(const struct mp4 *mp4, struct taginfo *tags)
111 {
112         tags->artist = mp4_get_tag_value(mp4, "artist");
113         tags->title = mp4_get_tag_value(mp4, "title");
114         tags->year = mp4_get_tag_value(mp4, "date");
115         tags->album = mp4_get_tag_value(mp4, "album");
116         tags->comment = mp4_get_tag_value(mp4, "comment");
117 }
118
119 /*
120  * Init m4a file and write some tech data to given pointers.
121  */
122 static int aac_get_file_info(char *map, size_t numbytes, __a_unused int fd,
123                 struct afh_info *afhi)
124 {
125         int ret;
126         struct aac_afh_context *c;
127         uint64_t milliseconds;
128         const char *buf;
129         uint32_t n, len;
130
131         ret = aac_afh_open(map, numbytes, (void **)&c);
132         if (ret < 0)
133                 return ret;
134
135         afhi->frequency = mp4_get_sample_rate(c->mp4);
136         assert(afhi->frequency > 0);
137         afhi->channels = mp4_get_channel_count(c->mp4);
138         assert(afhi->channels > 0);
139         afhi->chunks_total = mp4_num_samples(c->mp4);
140         assert(afhi->chunks_total > 0);
141
142         afhi->max_chunk_size = 0;
143         for (n = 0; n < afhi->chunks_total; n++) {
144                 if (aac_afh_get_chunk(n, c, &buf, &len) < 0)
145                         break;
146                 afhi->max_chunk_size = PARA_MAX(afhi->max_chunk_size, len);
147         }
148         milliseconds = mp4_get_duration(c->mp4);
149         afhi->seconds_total = milliseconds / 1000;
150         ms2tv(milliseconds / afhi->chunks_total, &afhi->chunk_tv);
151         if (aac_afh_get_chunk(0, c, &buf, &len) >= 0)
152                 numbytes -= buf - map;
153         afhi->bitrate = 8 * numbytes / afhi->seconds_total / 1000;
154         aac_afh_get_taginfo(c->mp4, &afhi->tags);
155         ret = 1;
156         aac_afh_close(c);
157         return ret;
158 }
159
160 static ssize_t aac_afh_meta_read_cb(void *user_data, void *dest, size_t want)
161 {
162         int fd = *(int *)user_data;
163         return read(fd, dest, want);
164 }
165
166 static off_t aac_afh_meta_seek_cb(void *user_data, off_t offset, int whence)
167 {
168         int fd = *(int *)user_data;
169         off_t ret = lseek(fd, offset, whence);
170
171         assert(ret != (off_t)-1);
172         return ret;
173 }
174
175 static ssize_t aac_afh_meta_write_cb(void *user_data, void *dest, size_t count)
176 {
177         int fd = *(int *)user_data;
178         return write(fd, dest, count);
179 }
180
181 static int aac_afh_meta_truncate_cb(void *user_data)
182 {
183         int fd = *(int *)user_data;
184         off_t offset = lseek(fd, 0, SEEK_CUR);
185         return ftruncate(fd, offset);
186 }
187
188 static void replace_or_add_tag(const char *item, const char *value,
189                 struct mp4_metadata *meta)
190 {
191         uint32_t n;
192         struct mp4_tag *t;
193
194         for (n = 0; n < meta->count; n++) {
195                 t = meta->tags + n;
196                 if (strcasecmp(t->item, item))
197                         continue;
198                 free(t->value);
199                 t->value = para_strdup(value);
200                 return;
201         }
202         /* item not found, add new tag */
203         meta->tags = para_realloc(meta->tags, (meta->count + 1)
204                 * sizeof(struct mp4_tag));
205         t = meta->tags + meta->count;
206         t->item = para_strdup(item);
207         t->value = para_strdup(value);
208         meta->count++;
209 }
210
211 static int aac_afh_rewrite_tags(const char *map, size_t mapsize,
212                 struct taginfo *tags, int fd, __a_unused const char *filename)
213 {
214         int ret;
215         struct mp4_metadata *metadata;
216         struct mp4 *mp4;
217         struct mp4_callback cb = {
218                 .read = aac_afh_meta_read_cb,
219                 .seek = aac_afh_meta_seek_cb,
220                 .write = aac_afh_meta_write_cb,
221                 .truncate = aac_afh_meta_truncate_cb,
222                 .user_data = &fd
223         };
224
225         ret = write_all(fd, map, mapsize);
226         if (ret < 0)
227                 return ret;
228         lseek(fd, 0, SEEK_SET);
229
230         ret = mp4_open_meta(&cb, &mp4);
231         if (ret < 0)
232                 return ret;
233         metadata = mp4_get_meta(mp4);
234         PARA_NOTICE_LOG("%u metadata item(s) found\n", metadata->count);
235         replace_or_add_tag("artist", tags->artist, metadata);
236         replace_or_add_tag("title", tags->title, metadata);
237         replace_or_add_tag("album", tags->album, metadata);
238         replace_or_add_tag("date", tags->year, metadata);
239         replace_or_add_tag("comment", tags->comment, metadata);
240         ret = mp4_update_meta(mp4);
241         mp4_close(mp4);
242         return ret;
243 }
244
245 static const char * const aac_suffixes[] = {"m4a", "mp4", NULL};
246
247 /**
248  * The audio format handler for the Advanced Audio Codec.
249  *
250  * This is only compiled in if the faad library is installed.
251  */
252 const struct audio_format_handler aac_afh = {
253         .get_file_info = aac_get_file_info,
254         .suffixes = aac_suffixes,
255         .rewrite_tags = aac_afh_rewrite_tags,
256         .open = aac_afh_open,
257         .get_chunk = aac_afh_get_chunk,
258         .close = aac_afh_close,
259 };