blob: a799bf85e8dbf979a7f6e2eb2b6cdb50b76908bb [file] [log] [blame]
Josh Coalson90ced912002-05-30 05:23:38 +00001/* libFLAC - Free Lossless Audio Codec library
Erik de Castro Lopob1982fb2013-05-25 17:11:19 +10002 * Copyright (C) 2001-2009 Josh Coalson
Erik de Castro Lopo14373912014-11-24 22:07:15 +11003 * Copyright (C) 2011-2014 Xiph.Org Foundation
Josh Coalson90ced912002-05-30 05:23:38 +00004 *
Josh Coalsonafd81072003-01-31 23:34:56 +00005 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
Josh Coalson90ced912002-05-30 05:23:38 +00008 *
Josh Coalsonafd81072003-01-31 23:34:56 +00009 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
Josh Coalson90ced912002-05-30 05:23:38 +000011 *
Josh Coalsonafd81072003-01-31 23:34:56 +000012 * - Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 *
16 * - Neither the name of the Xiph.org Foundation nor the names of its
17 * contributors may be used to endorse or promote products derived from
18 * this software without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR
24 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
25 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
26 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
27 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
28 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
29 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
30 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Josh Coalson90ced912002-05-30 05:23:38 +000031 */
32
Erik de Castro Lopo006b8352014-03-23 21:59:46 +110033#ifdef HAVE_CONFIG_H
Josh Coalsonb1ec7962006-05-24 04:41:36 +000034# include <config.h>
35#endif
36
Josh Coalson90ced912002-05-30 05:23:38 +000037#include <stdlib.h>
38#include <string.h>
39
40#include "private/metadata.h"
Erik de Castro Lopo8749dc22012-06-22 14:23:56 +100041#include "private/memory.h"
Josh Coalson90ced912002-05-30 05:23:38 +000042
43#include "FLAC/assert.h"
Josh Coalson0f008d22007-09-11 04:49:56 +000044#include "share/alloc.h"
Erik de Castro Lopoa7e37052012-06-22 16:03:04 +100045#include "share/compat.h"
Josh Coalson90ced912002-05-30 05:23:38 +000046
Erik de Castro Lopo8749dc22012-06-22 14:23:56 +100047/* Alias the first (in share/alloc.h) to the second (in src/libFLAC/memory.c). */
48#define safe_malloc_mul_2op_ safe_malloc_mul_2op_p
49
Josh Coalson90ced912002-05-30 05:23:38 +000050
51/****************************************************************************
52 *
53 * Local routines
54 *
55 ***************************************************************************/
56
Josh Coalsone343ab22006-09-23 19:21:19 +000057/* copy bytes:
58 * from = NULL && bytes = 0
59 * to <- NULL
60 * from != NULL && bytes > 0
61 * to <- copy of from
62 * else ASSERT
Josh Coalson0f008d22007-09-11 04:49:56 +000063 * malloc error leaves 'to' unchanged
Josh Coalsone343ab22006-09-23 19:21:19 +000064 */
Josh Coalson90ced912002-05-30 05:23:38 +000065static FLAC__bool copy_bytes_(FLAC__byte **to, const FLAC__byte *from, unsigned bytes)
66{
Josh Coalsone343ab22006-09-23 19:21:19 +000067 FLAC__ASSERT(0 != to);
Josh Coalson90ced912002-05-30 05:23:38 +000068 if(bytes > 0 && 0 != from) {
69 FLAC__byte *x;
Erik de Castro Lopo6c2040d2012-04-04 21:29:25 +100070 if(0 == (x = safe_malloc_(bytes)))
Josh Coalson90ced912002-05-30 05:23:38 +000071 return false;
72 memcpy(x, from, bytes);
73 *to = x;
74 }
75 else {
76 FLAC__ASSERT(0 == from);
77 FLAC__ASSERT(bytes == 0);
78 *to = 0;
79 }
80 return true;
81}
82
Josh Coalsone343ab22006-09-23 19:21:19 +000083#if 0 /* UNUSED */
84/* like copy_bytes_(), but free()s the original '*to' if the copy succeeds and the original '*to' is non-NULL */
85static FLAC__bool free_copy_bytes_(FLAC__byte **to, const FLAC__byte *from, unsigned bytes)
86{
87 FLAC__byte *copy;
88 FLAC__ASSERT(0 != to);
89 if(copy_bytes_(&copy, from, bytes)) {
Erik de Castro Lopob105f9a2015-07-04 12:19:29 +100090 free(*to);
Josh Coalsone343ab22006-09-23 19:21:19 +000091 *to = copy;
92 return true;
93 }
94 else
95 return false;
96}
97#endif
98
99/* reallocate entry to 1 byte larger and add a terminating NUL */
100/* realloc() failure leaves entry unchanged */
Josh Coalsondef597e2004-12-30 00:59:30 +0000101static FLAC__bool ensure_null_terminated_(FLAC__byte **entry, unsigned length)
102{
Erik de Castro Lopo6c2040d2012-04-04 21:29:25 +1000103 FLAC__byte *x = safe_realloc_add_2op_(*entry, length, /*+*/1);
Josh Coalsondef597e2004-12-30 00:59:30 +0000104 if(0 != x) {
105 x[length] = '\0';
106 *entry = x;
107 return true;
108 }
109 else
110 return false;
111}
112
Josh Coalsone343ab22006-09-23 19:21:19 +0000113/* copies the NUL-terminated C-string 'from' to '*to', leaving '*to'
114 * unchanged if malloc fails, free()ing the original '*to' if it
115 * succeeds and the original '*to' was not NULL
116 */
117static FLAC__bool copy_cstring_(char **to, const char *from)
118{
Josh Coalsone343ab22006-09-23 19:21:19 +0000119 char *copy = strdup(from);
Josh Coalsona65fd932006-10-03 01:02:44 +0000120 FLAC__ASSERT(to);
Josh Coalsone343ab22006-09-23 19:21:19 +0000121 if(copy) {
Erik de Castro Lopob105f9a2015-07-04 12:19:29 +1000122 free(*to);
Josh Coalsone343ab22006-09-23 19:21:19 +0000123 *to = copy;
124 return true;
125 }
126 else
127 return false;
128}
129
Josh Coalsoncc682512002-06-08 04:53:42 +0000130static FLAC__bool copy_vcentry_(FLAC__StreamMetadata_VorbisComment_Entry *to, const FLAC__StreamMetadata_VorbisComment_Entry *from)
Josh Coalson90ced912002-05-30 05:23:38 +0000131{
132 to->length = from->length;
133 if(0 == from->entry) {
134 FLAC__ASSERT(from->length == 0);
135 to->entry = 0;
136 }
137 else {
138 FLAC__byte *x;
139 FLAC__ASSERT(from->length > 0);
Erik de Castro Lopo6c2040d2012-04-04 21:29:25 +1000140 if(0 == (x = safe_malloc_add_2op_(from->length, /*+*/1)))
Josh Coalson90ced912002-05-30 05:23:38 +0000141 return false;
142 memcpy(x, from->entry, from->length);
Josh Coalsondef597e2004-12-30 00:59:30 +0000143 x[from->length] = '\0';
Josh Coalson90ced912002-05-30 05:23:38 +0000144 to->entry = x;
145 }
146 return true;
147}
148
Josh Coalson8e9c4512002-11-14 05:00:24 +0000149static FLAC__bool copy_track_(FLAC__StreamMetadata_CueSheet_Track *to, const FLAC__StreamMetadata_CueSheet_Track *from)
150{
151 memcpy(to, from, sizeof(FLAC__StreamMetadata_CueSheet_Track));
152 if(0 == from->indices) {
153 FLAC__ASSERT(from->num_indices == 0);
154 }
155 else {
156 FLAC__StreamMetadata_CueSheet_Index *x;
157 FLAC__ASSERT(from->num_indices > 0);
Erik de Castro Lopo8749dc22012-06-22 14:23:56 +1000158 if(0 == (x = safe_malloc_mul_2op_p(from->num_indices, /*times*/sizeof(FLAC__StreamMetadata_CueSheet_Index))))
Josh Coalson8e9c4512002-11-14 05:00:24 +0000159 return false;
160 memcpy(x, from->indices, from->num_indices * sizeof(FLAC__StreamMetadata_CueSheet_Index));
161 to->indices = x;
162 }
163 return true;
164}
165
Josh Coalsoncc682512002-06-08 04:53:42 +0000166static void seektable_calculate_length_(FLAC__StreamMetadata *object)
Josh Coalson90ced912002-05-30 05:23:38 +0000167{
168 FLAC__ASSERT(0 != object);
169 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_SEEKTABLE);
170
171 object->length = object->data.seek_table.num_points * FLAC__STREAM_METADATA_SEEKPOINT_LENGTH;
172}
173
Josh Coalsoncc682512002-06-08 04:53:42 +0000174static FLAC__StreamMetadata_SeekPoint *seekpoint_array_new_(unsigned num_points)
Josh Coalson90ced912002-05-30 05:23:38 +0000175{
Josh Coalsoncc682512002-06-08 04:53:42 +0000176 FLAC__StreamMetadata_SeekPoint *object_array;
Josh Coalson90ced912002-05-30 05:23:38 +0000177
178 FLAC__ASSERT(num_points > 0);
179
Erik de Castro Lopo8749dc22012-06-22 14:23:56 +1000180 object_array = safe_malloc_mul_2op_p(num_points, /*times*/sizeof(FLAC__StreamMetadata_SeekPoint));
Josh Coalson90ced912002-05-30 05:23:38 +0000181
182 if(0 != object_array) {
183 unsigned i;
184 for(i = 0; i < num_points; i++) {
185 object_array[i].sample_number = FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER;
186 object_array[i].stream_offset = 0;
187 object_array[i].frame_samples = 0;
188 }
189 }
190
191 return object_array;
192}
193
Josh Coalsoncc682512002-06-08 04:53:42 +0000194static void vorbiscomment_calculate_length_(FLAC__StreamMetadata *object)
Josh Coalson90ced912002-05-30 05:23:38 +0000195{
196 unsigned i;
197
198 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_VORBIS_COMMENT);
199
200 object->length = (FLAC__STREAM_METADATA_VORBIS_COMMENT_ENTRY_LENGTH_LEN) / 8;
201 object->length += object->data.vorbis_comment.vendor_string.length;
202 object->length += (FLAC__STREAM_METADATA_VORBIS_COMMENT_NUM_COMMENTS_LEN) / 8;
203 for(i = 0; i < object->data.vorbis_comment.num_comments; i++) {
204 object->length += (FLAC__STREAM_METADATA_VORBIS_COMMENT_ENTRY_LENGTH_LEN / 8);
205 object->length += object->data.vorbis_comment.comments[i].length;
206 }
207}
208
Josh Coalsoncc682512002-06-08 04:53:42 +0000209static FLAC__StreamMetadata_VorbisComment_Entry *vorbiscomment_entry_array_new_(unsigned num_comments)
Josh Coalson90ced912002-05-30 05:23:38 +0000210{
Josh Coalson90ced912002-05-30 05:23:38 +0000211 FLAC__ASSERT(num_comments > 0);
212
Erik de Castro Lopo6c2040d2012-04-04 21:29:25 +1000213 return safe_calloc_(num_comments, sizeof(FLAC__StreamMetadata_VorbisComment_Entry));
Josh Coalson90ced912002-05-30 05:23:38 +0000214}
215
Josh Coalsoncc682512002-06-08 04:53:42 +0000216static void vorbiscomment_entry_array_delete_(FLAC__StreamMetadata_VorbisComment_Entry *object_array, unsigned num_comments)
Josh Coalson90ced912002-05-30 05:23:38 +0000217{
218 unsigned i;
219
220 FLAC__ASSERT(0 != object_array && num_comments > 0);
221
222 for(i = 0; i < num_comments; i++)
Erik de Castro Lopob105f9a2015-07-04 12:19:29 +1000223 free(object_array[i].entry);
Josh Coalson90ced912002-05-30 05:23:38 +0000224
Erik de Castro Lopob105f9a2015-07-04 12:19:29 +1000225 free(object_array);
Josh Coalson90ced912002-05-30 05:23:38 +0000226}
227
Josh Coalsoncc682512002-06-08 04:53:42 +0000228static FLAC__StreamMetadata_VorbisComment_Entry *vorbiscomment_entry_array_copy_(const FLAC__StreamMetadata_VorbisComment_Entry *object_array, unsigned num_comments)
Josh Coalson90ced912002-05-30 05:23:38 +0000229{
Josh Coalsoncc682512002-06-08 04:53:42 +0000230 FLAC__StreamMetadata_VorbisComment_Entry *return_array;
Josh Coalson90ced912002-05-30 05:23:38 +0000231
232 FLAC__ASSERT(0 != object_array);
233 FLAC__ASSERT(num_comments > 0);
234
235 return_array = vorbiscomment_entry_array_new_(num_comments);
236
237 if(0 != return_array) {
238 unsigned i;
239
Josh Coalson90ced912002-05-30 05:23:38 +0000240 for(i = 0; i < num_comments; i++) {
241 if(!copy_vcentry_(return_array+i, object_array+i)) {
242 vorbiscomment_entry_array_delete_(return_array, num_comments);
243 return 0;
244 }
245 }
246 }
247
248 return return_array;
249}
250
Josh Coalsoncc682512002-06-08 04:53:42 +0000251static FLAC__bool vorbiscomment_set_entry_(FLAC__StreamMetadata *object, FLAC__StreamMetadata_VorbisComment_Entry *dest, const FLAC__StreamMetadata_VorbisComment_Entry *src, FLAC__bool copy)
Josh Coalson90ced912002-05-30 05:23:38 +0000252{
253 FLAC__byte *save;
254
255 FLAC__ASSERT(0 != object);
256 FLAC__ASSERT(0 != dest);
257 FLAC__ASSERT(0 != src);
258 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_VORBIS_COMMENT);
Josh Coalson748459c2004-09-08 00:49:30 +0000259 FLAC__ASSERT((0 != src->entry && src->length > 0) || (0 == src->entry && src->length == 0));
Josh Coalson90ced912002-05-30 05:23:38 +0000260
Josh Coalson6b8e5302002-05-31 06:23:09 +0000261 save = dest->entry;
Josh Coalson90ced912002-05-30 05:23:38 +0000262
Erik de Castro Lopo49d9d742014-03-23 21:40:54 +1100263 if(0 != src->entry) {
Josh Coalsondef597e2004-12-30 00:59:30 +0000264 if(copy) {
265 /* do the copy first so that if we fail we leave the dest object untouched */
266 if(!copy_vcentry_(dest, src))
267 return false;
268 }
269 else {
270 /* we have to make sure that the string we're taking over is null-terminated */
271
272 /*
273 * Stripping the const from src->entry is OK since we're taking
274 * ownership of the pointer. This is a hack around a deficiency
275 * in the API where the same function is used for 'copy' and
276 * 'own', but the source entry is a const pointer. If we were
277 * precise, the 'own' flavor would be a separate function with a
278 * non-const source pointer. But it's not, so we hack away.
279 */
280 if(!ensure_null_terminated_((FLAC__byte**)(&src->entry), src->length))
281 return false;
282 *dest = *src;
283 }
Josh Coalson90ced912002-05-30 05:23:38 +0000284 }
285 else {
Josh Coalsondef597e2004-12-30 00:59:30 +0000286 /* the src is null */
Josh Coalson90ced912002-05-30 05:23:38 +0000287 *dest = *src;
288 }
289
Erik de Castro Lopob105f9a2015-07-04 12:19:29 +1000290 free(save);
Josh Coalson90ced912002-05-30 05:23:38 +0000291
292 vorbiscomment_calculate_length_(object);
293 return true;
294}
295
Josh Coalsondef597e2004-12-30 00:59:30 +0000296static int vorbiscomment_find_entry_from_(const FLAC__StreamMetadata *object, unsigned offset, const char *field_name, unsigned field_name_length)
297{
298 unsigned i;
299
300 FLAC__ASSERT(0 != object);
301 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_VORBIS_COMMENT);
302 FLAC__ASSERT(0 != field_name);
303
304 for(i = offset; i < object->data.vorbis_comment.num_comments; i++) {
305 if(FLAC__metadata_object_vorbiscomment_entry_matches(object->data.vorbis_comment.comments[i], field_name, field_name_length))
306 return (int)i;
307 }
308
309 return -1;
310}
311
Josh Coalson8e9c4512002-11-14 05:00:24 +0000312static void cuesheet_calculate_length_(FLAC__StreamMetadata *object)
313{
314 unsigned i;
315
316 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_CUESHEET);
317
318 object->length = (
319 FLAC__STREAM_METADATA_CUESHEET_MEDIA_CATALOG_NUMBER_LEN +
320 FLAC__STREAM_METADATA_CUESHEET_LEAD_IN_LEN +
Josh Coalson8f0c71b2002-12-05 06:37:46 +0000321 FLAC__STREAM_METADATA_CUESHEET_IS_CD_LEN +
Josh Coalsondf7240a2002-11-16 06:32:30 +0000322 FLAC__STREAM_METADATA_CUESHEET_RESERVED_LEN +
Josh Coalson8e9c4512002-11-14 05:00:24 +0000323 FLAC__STREAM_METADATA_CUESHEET_NUM_TRACKS_LEN
324 ) / 8;
325
326 object->length += object->data.cue_sheet.num_tracks * (
327 FLAC__STREAM_METADATA_CUESHEET_TRACK_OFFSET_LEN +
328 FLAC__STREAM_METADATA_CUESHEET_TRACK_NUMBER_LEN +
329 FLAC__STREAM_METADATA_CUESHEET_TRACK_ISRC_LEN +
330 FLAC__STREAM_METADATA_CUESHEET_TRACK_TYPE_LEN +
331 FLAC__STREAM_METADATA_CUESHEET_TRACK_PRE_EMPHASIS_LEN +
332 FLAC__STREAM_METADATA_CUESHEET_TRACK_RESERVED_LEN +
333 FLAC__STREAM_METADATA_CUESHEET_TRACK_NUM_INDICES_LEN
334 ) / 8;
335
336 for(i = 0; i < object->data.cue_sheet.num_tracks; i++) {
337 object->length += object->data.cue_sheet.tracks[i].num_indices * (
338 FLAC__STREAM_METADATA_CUESHEET_INDEX_OFFSET_LEN +
339 FLAC__STREAM_METADATA_CUESHEET_INDEX_NUMBER_LEN +
340 FLAC__STREAM_METADATA_CUESHEET_INDEX_RESERVED_LEN
341 ) / 8;
342 }
343}
344
345static FLAC__StreamMetadata_CueSheet_Index *cuesheet_track_index_array_new_(unsigned num_indices)
346{
347 FLAC__ASSERT(num_indices > 0);
348
Erik de Castro Lopo6c2040d2012-04-04 21:29:25 +1000349 return safe_calloc_(num_indices, sizeof(FLAC__StreamMetadata_CueSheet_Index));
Josh Coalson8e9c4512002-11-14 05:00:24 +0000350}
351
352static FLAC__StreamMetadata_CueSheet_Track *cuesheet_track_array_new_(unsigned num_tracks)
353{
354 FLAC__ASSERT(num_tracks > 0);
355
Erik de Castro Lopo6c2040d2012-04-04 21:29:25 +1000356 return safe_calloc_(num_tracks, sizeof(FLAC__StreamMetadata_CueSheet_Track));
Josh Coalson8e9c4512002-11-14 05:00:24 +0000357}
358
359static void cuesheet_track_array_delete_(FLAC__StreamMetadata_CueSheet_Track *object_array, unsigned num_tracks)
360{
361 unsigned i;
362
363 FLAC__ASSERT(0 != object_array && num_tracks > 0);
364
365 for(i = 0; i < num_tracks; i++) {
366 if(0 != object_array[i].indices) {
367 FLAC__ASSERT(object_array[i].num_indices > 0);
368 free(object_array[i].indices);
369 }
370 }
371
Erik de Castro Lopob105f9a2015-07-04 12:19:29 +1000372 free(object_array);
Josh Coalson8e9c4512002-11-14 05:00:24 +0000373}
374
375static FLAC__StreamMetadata_CueSheet_Track *cuesheet_track_array_copy_(const FLAC__StreamMetadata_CueSheet_Track *object_array, unsigned num_tracks)
376{
377 FLAC__StreamMetadata_CueSheet_Track *return_array;
378
379 FLAC__ASSERT(0 != object_array);
380 FLAC__ASSERT(num_tracks > 0);
381
382 return_array = cuesheet_track_array_new_(num_tracks);
383
384 if(0 != return_array) {
385 unsigned i;
386
387 for(i = 0; i < num_tracks; i++) {
388 if(!copy_track_(return_array+i, object_array+i)) {
389 cuesheet_track_array_delete_(return_array, num_tracks);
390 return 0;
391 }
392 }
393 }
394
395 return return_array;
396}
397
398static FLAC__bool cuesheet_set_track_(FLAC__StreamMetadata *object, FLAC__StreamMetadata_CueSheet_Track *dest, const FLAC__StreamMetadata_CueSheet_Track *src, FLAC__bool copy)
399{
400 FLAC__StreamMetadata_CueSheet_Index *save;
401
402 FLAC__ASSERT(0 != object);
403 FLAC__ASSERT(0 != dest);
404 FLAC__ASSERT(0 != src);
405 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_CUESHEET);
406 FLAC__ASSERT((0 != src->indices && src->num_indices > 0) || (0 == src->indices && src->num_indices == 0));
Josh Coalson8e9c4512002-11-14 05:00:24 +0000407
408 save = dest->indices;
409
410 /* do the copy first so that if we fail we leave the object untouched */
411 if(copy) {
412 if(!copy_track_(dest, src))
413 return false;
414 }
415 else {
416 *dest = *src;
417 }
418
Erik de Castro Lopob105f9a2015-07-04 12:19:29 +1000419 free(save);
Josh Coalson8e9c4512002-11-14 05:00:24 +0000420
421 cuesheet_calculate_length_(object);
422 return true;
423}
424
Josh Coalson90ced912002-05-30 05:23:38 +0000425
426/****************************************************************************
427 *
428 * Metadata object routines
429 *
430 ***************************************************************************/
431
Josh Coalson6afed9f2002-10-16 22:29:47 +0000432FLAC_API FLAC__StreamMetadata *FLAC__metadata_object_new(FLAC__MetadataType type)
Josh Coalson90ced912002-05-30 05:23:38 +0000433{
Josh Coalson1cb23412004-07-22 01:32:00 +0000434 FLAC__StreamMetadata *object;
435
Erik de Castro Lopo3f5208c2014-04-09 17:56:13 +1000436 if(type > FLAC__MAX_METADATA_TYPE)
Josh Coalson1cb23412004-07-22 01:32:00 +0000437 return 0;
438
Erik de Castro Lopo6c2040d2012-04-04 21:29:25 +1000439 object = calloc(1, sizeof(FLAC__StreamMetadata));
Josh Coalson90ced912002-05-30 05:23:38 +0000440 if(0 != object) {
Josh Coalson90ced912002-05-30 05:23:38 +0000441 object->is_last = false;
442 object->type = type;
443 switch(type) {
444 case FLAC__METADATA_TYPE_STREAMINFO:
445 object->length = FLAC__STREAM_METADATA_STREAMINFO_LENGTH;
446 break;
447 case FLAC__METADATA_TYPE_PADDING:
Josh Coalsond0609472003-01-10 05:37:13 +0000448 /* calloc() took care of this for us:
449 object->length = 0;
450 */
Josh Coalson90ced912002-05-30 05:23:38 +0000451 break;
452 case FLAC__METADATA_TYPE_APPLICATION:
453 object->length = FLAC__STREAM_METADATA_APPLICATION_ID_LEN / 8;
Josh Coalsond0609472003-01-10 05:37:13 +0000454 /* calloc() took care of this for us:
455 object->data.application.data = 0;
456 */
Josh Coalson90ced912002-05-30 05:23:38 +0000457 break;
458 case FLAC__METADATA_TYPE_SEEKTABLE:
Josh Coalsond0609472003-01-10 05:37:13 +0000459 /* calloc() took care of this for us:
460 object->length = 0;
461 object->data.seek_table.num_points = 0;
462 object->data.seek_table.points = 0;
463 */
Josh Coalson90ced912002-05-30 05:23:38 +0000464 break;
465 case FLAC__METADATA_TYPE_VORBIS_COMMENT:
Josh Coalsone343ab22006-09-23 19:21:19 +0000466 object->data.vorbis_comment.vendor_string.length = (unsigned)strlen(FLAC__VENDOR_STRING);
467 if(!copy_bytes_(&object->data.vorbis_comment.vendor_string.entry, (const FLAC__byte*)FLAC__VENDOR_STRING, object->data.vorbis_comment.vendor_string.length+1)) {
468 free(object);
469 return 0;
Josh Coalson45bb9882002-10-26 04:34:16 +0000470 }
Josh Coalsone343ab22006-09-23 19:21:19 +0000471 vorbiscomment_calculate_length_(object);
Josh Coalson90ced912002-05-30 05:23:38 +0000472 break;
Josh Coalson8e9c4512002-11-14 05:00:24 +0000473 case FLAC__METADATA_TYPE_CUESHEET:
474 cuesheet_calculate_length_(object);
475 break;
Josh Coalsone343ab22006-09-23 19:21:19 +0000476 case FLAC__METADATA_TYPE_PICTURE:
477 object->length = (
478 FLAC__STREAM_METADATA_PICTURE_TYPE_LEN +
479 FLAC__STREAM_METADATA_PICTURE_MIME_TYPE_LENGTH_LEN + /* empty mime_type string */
480 FLAC__STREAM_METADATA_PICTURE_DESCRIPTION_LENGTH_LEN + /* empty description string */
481 FLAC__STREAM_METADATA_PICTURE_WIDTH_LEN +
482 FLAC__STREAM_METADATA_PICTURE_HEIGHT_LEN +
483 FLAC__STREAM_METADATA_PICTURE_DEPTH_LEN +
Josh Coalson74ed2942006-09-23 23:15:05 +0000484 FLAC__STREAM_METADATA_PICTURE_COLORS_LEN +
Josh Coalsone343ab22006-09-23 19:21:19 +0000485 FLAC__STREAM_METADATA_PICTURE_DATA_LENGTH_LEN +
486 0 /* no data */
487 ) / 8;
488 object->data.picture.type = FLAC__STREAM_METADATA_PICTURE_TYPE_OTHER;
489 object->data.picture.mime_type = 0;
490 object->data.picture.description = 0;
491 /* calloc() took care of this for us:
492 object->data.picture.width = 0;
493 object->data.picture.height = 0;
494 object->data.picture.depth = 0;
Josh Coalson74ed2942006-09-23 23:15:05 +0000495 object->data.picture.colors = 0;
Josh Coalsone343ab22006-09-23 19:21:19 +0000496 object->data.picture.data_length = 0;
497 object->data.picture.data = 0;
498 */
499 /* now initialize mime_type and description with empty strings to make things easier on the client */
500 if(!copy_cstring_(&object->data.picture.mime_type, "")) {
501 free(object);
502 return 0;
503 }
504 if(!copy_cstring_((char**)(&object->data.picture.description), "")) {
Erik de Castro Lopob105f9a2015-07-04 12:19:29 +1000505 free(object->data.picture.mime_type);
Josh Coalsone343ab22006-09-23 19:21:19 +0000506 free(object);
507 return 0;
508 }
509 break;
Josh Coalson90ced912002-05-30 05:23:38 +0000510 default:
Josh Coalsond0609472003-01-10 05:37:13 +0000511 /* calloc() took care of this for us:
512 object->length = 0;
513 object->data.unknown.data = 0;
514 */
515 break;
Josh Coalson90ced912002-05-30 05:23:38 +0000516 }
517 }
518
519 return object;
520}
521
Josh Coalson6afed9f2002-10-16 22:29:47 +0000522FLAC_API FLAC__StreamMetadata *FLAC__metadata_object_clone(const FLAC__StreamMetadata *object)
Josh Coalson90ced912002-05-30 05:23:38 +0000523{
Josh Coalsoncc682512002-06-08 04:53:42 +0000524 FLAC__StreamMetadata *to;
Josh Coalson90ced912002-05-30 05:23:38 +0000525
526 FLAC__ASSERT(0 != object);
527
528 if(0 != (to = FLAC__metadata_object_new(object->type))) {
529 to->is_last = object->is_last;
530 to->type = object->type;
531 to->length = object->length;
532 switch(to->type) {
533 case FLAC__METADATA_TYPE_STREAMINFO:
Josh Coalsoncc682512002-06-08 04:53:42 +0000534 memcpy(&to->data.stream_info, &object->data.stream_info, sizeof(FLAC__StreamMetadata_StreamInfo));
Josh Coalson90ced912002-05-30 05:23:38 +0000535 break;
536 case FLAC__METADATA_TYPE_PADDING:
537 break;
538 case FLAC__METADATA_TYPE_APPLICATION:
Josh Coalson0f008d22007-09-11 04:49:56 +0000539 if(to->length < FLAC__STREAM_METADATA_APPLICATION_ID_LEN / 8) { /* underflow check */
540 FLAC__metadata_object_delete(to);
541 return 0;
542 }
Josh Coalson90ced912002-05-30 05:23:38 +0000543 memcpy(&to->data.application.id, &object->data.application.id, FLAC__STREAM_METADATA_APPLICATION_ID_LEN / 8);
544 if(!copy_bytes_(&to->data.application.data, object->data.application.data, object->length - FLAC__STREAM_METADATA_APPLICATION_ID_LEN / 8)) {
545 FLAC__metadata_object_delete(to);
546 return 0;
547 }
548 break;
549 case FLAC__METADATA_TYPE_SEEKTABLE:
550 to->data.seek_table.num_points = object->data.seek_table.num_points;
Erik de Castro Lopo587e1182012-02-17 17:52:12 +1100551 if(to->data.seek_table.num_points > UINT32_MAX / sizeof(FLAC__StreamMetadata_SeekPoint)) { /* overflow check */
Josh Coalson0f008d22007-09-11 04:49:56 +0000552 FLAC__metadata_object_delete(to);
553 return 0;
554 }
Josh Coalsoncc682512002-06-08 04:53:42 +0000555 if(!copy_bytes_((FLAC__byte**)&to->data.seek_table.points, (FLAC__byte*)object->data.seek_table.points, object->data.seek_table.num_points * sizeof(FLAC__StreamMetadata_SeekPoint))) {
Josh Coalson90ced912002-05-30 05:23:38 +0000556 FLAC__metadata_object_delete(to);
557 return 0;
558 }
559 break;
560 case FLAC__METADATA_TYPE_VORBIS_COMMENT:
Josh Coalson4fa90592002-12-04 07:01:37 +0000561 if(0 != to->data.vorbis_comment.vendor_string.entry) {
Josh Coalson45bb9882002-10-26 04:34:16 +0000562 free(to->data.vorbis_comment.vendor_string.entry);
Josh Coalson4fa90592002-12-04 07:01:37 +0000563 to->data.vorbis_comment.vendor_string.entry = 0;
564 }
Josh Coalson90ced912002-05-30 05:23:38 +0000565 if(!copy_vcentry_(&to->data.vorbis_comment.vendor_string, &object->data.vorbis_comment.vendor_string)) {
566 FLAC__metadata_object_delete(to);
567 return 0;
568 }
569 if(object->data.vorbis_comment.num_comments == 0) {
570 FLAC__ASSERT(0 == object->data.vorbis_comment.comments);
571 to->data.vorbis_comment.comments = 0;
572 }
573 else {
574 FLAC__ASSERT(0 != object->data.vorbis_comment.comments);
575 to->data.vorbis_comment.comments = vorbiscomment_entry_array_copy_(object->data.vorbis_comment.comments, object->data.vorbis_comment.num_comments);
576 if(0 == to->data.vorbis_comment.comments) {
577 FLAC__metadata_object_delete(to);
578 return 0;
579 }
580 }
581 to->data.vorbis_comment.num_comments = object->data.vorbis_comment.num_comments;
582 break;
Josh Coalson8e9c4512002-11-14 05:00:24 +0000583 case FLAC__METADATA_TYPE_CUESHEET:
584 memcpy(&to->data.cue_sheet, &object->data.cue_sheet, sizeof(FLAC__StreamMetadata_CueSheet));
585 if(object->data.cue_sheet.num_tracks == 0) {
586 FLAC__ASSERT(0 == object->data.cue_sheet.tracks);
587 }
588 else {
589 FLAC__ASSERT(0 != object->data.cue_sheet.tracks);
590 to->data.cue_sheet.tracks = cuesheet_track_array_copy_(object->data.cue_sheet.tracks, object->data.cue_sheet.num_tracks);
591 if(0 == to->data.cue_sheet.tracks) {
592 FLAC__metadata_object_delete(to);
593 return 0;
594 }
595 }
596 break;
Josh Coalsone343ab22006-09-23 19:21:19 +0000597 case FLAC__METADATA_TYPE_PICTURE:
598 to->data.picture.type = object->data.picture.type;
599 if(!copy_cstring_(&to->data.picture.mime_type, object->data.picture.mime_type)) {
600 FLAC__metadata_object_delete(to);
601 return 0;
602 }
603 if(!copy_cstring_((char**)(&to->data.picture.description), (const char*)object->data.picture.description)) {
604 FLAC__metadata_object_delete(to);
605 return 0;
606 }
607 to->data.picture.width = object->data.picture.width;
608 to->data.picture.height = object->data.picture.height;
609 to->data.picture.depth = object->data.picture.depth;
Josh Coalson74ed2942006-09-23 23:15:05 +0000610 to->data.picture.colors = object->data.picture.colors;
Josh Coalsone343ab22006-09-23 19:21:19 +0000611 to->data.picture.data_length = object->data.picture.data_length;
612 if(!copy_bytes_((&to->data.picture.data), object->data.picture.data, object->data.picture.data_length)) {
613 FLAC__metadata_object_delete(to);
614 return 0;
615 }
616 break;
Josh Coalson90ced912002-05-30 05:23:38 +0000617 default:
Josh Coalsond0609472003-01-10 05:37:13 +0000618 if(!copy_bytes_(&to->data.unknown.data, object->data.unknown.data, object->length)) {
619 FLAC__metadata_object_delete(to);
620 return 0;
621 }
622 break;
Josh Coalson90ced912002-05-30 05:23:38 +0000623 }
624 }
625
626 return to;
627}
628
Josh Coalsoncc682512002-06-08 04:53:42 +0000629void FLAC__metadata_object_delete_data(FLAC__StreamMetadata *object)
Josh Coalson90ced912002-05-30 05:23:38 +0000630{
631 FLAC__ASSERT(0 != object);
632
633 switch(object->type) {
634 case FLAC__METADATA_TYPE_STREAMINFO:
635 case FLAC__METADATA_TYPE_PADDING:
636 break;
637 case FLAC__METADATA_TYPE_APPLICATION:
Josh Coalson4fa90592002-12-04 07:01:37 +0000638 if(0 != object->data.application.data) {
Josh Coalson90ced912002-05-30 05:23:38 +0000639 free(object->data.application.data);
Josh Coalson4fa90592002-12-04 07:01:37 +0000640 object->data.application.data = 0;
641 }
Josh Coalson90ced912002-05-30 05:23:38 +0000642 break;
643 case FLAC__METADATA_TYPE_SEEKTABLE:
Josh Coalson4fa90592002-12-04 07:01:37 +0000644 if(0 != object->data.seek_table.points) {
Josh Coalson90ced912002-05-30 05:23:38 +0000645 free(object->data.seek_table.points);
Josh Coalson4fa90592002-12-04 07:01:37 +0000646 object->data.seek_table.points = 0;
647 }
Josh Coalson90ced912002-05-30 05:23:38 +0000648 break;
649 case FLAC__METADATA_TYPE_VORBIS_COMMENT:
Josh Coalson4fa90592002-12-04 07:01:37 +0000650 if(0 != object->data.vorbis_comment.vendor_string.entry) {
Josh Coalson90ced912002-05-30 05:23:38 +0000651 free(object->data.vorbis_comment.vendor_string.entry);
Josh Coalson4fa90592002-12-04 07:01:37 +0000652 object->data.vorbis_comment.vendor_string.entry = 0;
653 }
Josh Coalson90ced912002-05-30 05:23:38 +0000654 if(0 != object->data.vorbis_comment.comments) {
655 FLAC__ASSERT(object->data.vorbis_comment.num_comments > 0);
656 vorbiscomment_entry_array_delete_(object->data.vorbis_comment.comments, object->data.vorbis_comment.num_comments);
657 }
658 break;
Josh Coalson8e9c4512002-11-14 05:00:24 +0000659 case FLAC__METADATA_TYPE_CUESHEET:
660 if(0 != object->data.cue_sheet.tracks) {
661 FLAC__ASSERT(object->data.cue_sheet.num_tracks > 0);
662 cuesheet_track_array_delete_(object->data.cue_sheet.tracks, object->data.cue_sheet.num_tracks);
663 }
664 break;
Josh Coalsone343ab22006-09-23 19:21:19 +0000665 case FLAC__METADATA_TYPE_PICTURE:
666 if(0 != object->data.picture.mime_type) {
667 free(object->data.picture.mime_type);
668 object->data.picture.mime_type = 0;
669 }
670 if(0 != object->data.picture.description) {
671 free(object->data.picture.description);
672 object->data.picture.description = 0;
673 }
674 if(0 != object->data.picture.data) {
675 free(object->data.picture.data);
676 object->data.picture.data = 0;
677 }
678 break;
Josh Coalson90ced912002-05-30 05:23:38 +0000679 default:
Josh Coalsond0609472003-01-10 05:37:13 +0000680 if(0 != object->data.unknown.data) {
681 free(object->data.unknown.data);
682 object->data.unknown.data = 0;
683 }
684 break;
Josh Coalson90ced912002-05-30 05:23:38 +0000685 }
686}
687
Josh Coalson6afed9f2002-10-16 22:29:47 +0000688FLAC_API void FLAC__metadata_object_delete(FLAC__StreamMetadata *object)
Josh Coalson90ced912002-05-30 05:23:38 +0000689{
690 FLAC__metadata_object_delete_data(object);
691 free(object);
692}
693
Josh Coalsoncc682512002-06-08 04:53:42 +0000694static FLAC__bool compare_block_data_streaminfo_(const FLAC__StreamMetadata_StreamInfo *block1, const FLAC__StreamMetadata_StreamInfo *block2)
Josh Coalson57ba6f42002-06-07 05:27:37 +0000695{
696 if(block1->min_blocksize != block2->min_blocksize)
697 return false;
698 if(block1->max_blocksize != block2->max_blocksize)
699 return false;
700 if(block1->min_framesize != block2->min_framesize)
701 return false;
702 if(block1->max_framesize != block2->max_framesize)
703 return false;
704 if(block1->sample_rate != block2->sample_rate)
705 return false;
706 if(block1->channels != block2->channels)
707 return false;
708 if(block1->bits_per_sample != block2->bits_per_sample)
709 return false;
710 if(block1->total_samples != block2->total_samples)
711 return false;
712 if(0 != memcmp(block1->md5sum, block2->md5sum, 16))
713 return false;
714 return true;
715}
716
Josh Coalsoncc682512002-06-08 04:53:42 +0000717static FLAC__bool compare_block_data_application_(const FLAC__StreamMetadata_Application *block1, const FLAC__StreamMetadata_Application *block2, unsigned block_length)
Josh Coalson57ba6f42002-06-07 05:27:37 +0000718{
719 FLAC__ASSERT(0 != block1);
720 FLAC__ASSERT(0 != block2);
721 FLAC__ASSERT(block_length >= sizeof(block1->id));
722
723 if(0 != memcmp(block1->id, block2->id, sizeof(block1->id)))
724 return false;
725 if(0 != block1->data && 0 != block2->data)
726 return 0 == memcmp(block1->data, block2->data, block_length - sizeof(block1->id));
727 else
728 return block1->data == block2->data;
729}
730
Josh Coalsoncc682512002-06-08 04:53:42 +0000731static FLAC__bool compare_block_data_seektable_(const FLAC__StreamMetadata_SeekTable *block1, const FLAC__StreamMetadata_SeekTable *block2)
Josh Coalson57ba6f42002-06-07 05:27:37 +0000732{
733 unsigned i;
734
735 FLAC__ASSERT(0 != block1);
736 FLAC__ASSERT(0 != block2);
737
738 if(block1->num_points != block2->num_points)
739 return false;
740
741 if(0 != block1->points && 0 != block2->points) {
742 for(i = 0; i < block1->num_points; i++) {
743 if(block1->points[i].sample_number != block2->points[i].sample_number)
744 return false;
745 if(block1->points[i].stream_offset != block2->points[i].stream_offset)
746 return false;
747 if(block1->points[i].frame_samples != block2->points[i].frame_samples)
748 return false;
749 }
750 return true;
751 }
752 else
753 return block1->points == block2->points;
754}
755
Josh Coalsoncc682512002-06-08 04:53:42 +0000756static FLAC__bool compare_block_data_vorbiscomment_(const FLAC__StreamMetadata_VorbisComment *block1, const FLAC__StreamMetadata_VorbisComment *block2)
Josh Coalson57ba6f42002-06-07 05:27:37 +0000757{
758 unsigned i;
759
760 if(block1->vendor_string.length != block2->vendor_string.length)
761 return false;
762
763 if(0 != block1->vendor_string.entry && 0 != block2->vendor_string.entry) {
764 if(0 != memcmp(block1->vendor_string.entry, block2->vendor_string.entry, block1->vendor_string.length))
765 return false;
766 }
767 else if(block1->vendor_string.entry != block2->vendor_string.entry)
768 return false;
769
770 if(block1->num_comments != block2->num_comments)
771 return false;
772
773 for(i = 0; i < block1->num_comments; i++) {
774 if(0 != block1->comments[i].entry && 0 != block2->comments[i].entry) {
775 if(0 != memcmp(block1->comments[i].entry, block2->comments[i].entry, block1->comments[i].length))
776 return false;
777 }
778 else if(block1->comments[i].entry != block2->comments[i].entry)
779 return false;
780 }
781 return true;
782}
783
Josh Coalson8e9c4512002-11-14 05:00:24 +0000784static FLAC__bool compare_block_data_cuesheet_(const FLAC__StreamMetadata_CueSheet *block1, const FLAC__StreamMetadata_CueSheet *block2)
785{
786 unsigned i, j;
787
788 if(0 != strcmp(block1->media_catalog_number, block2->media_catalog_number))
789 return false;
790
791 if(block1->lead_in != block2->lead_in)
792 return false;
793
Josh Coalson8f0c71b2002-12-05 06:37:46 +0000794 if(block1->is_cd != block2->is_cd)
795 return false;
796
Josh Coalson8e9c4512002-11-14 05:00:24 +0000797 if(block1->num_tracks != block2->num_tracks)
798 return false;
799
800 if(0 != block1->tracks && 0 != block2->tracks) {
801 FLAC__ASSERT(block1->num_tracks > 0);
802 for(i = 0; i < block1->num_tracks; i++) {
803 if(block1->tracks[i].offset != block2->tracks[i].offset)
804 return false;
805 if(block1->tracks[i].number != block2->tracks[i].number)
806 return false;
807 if(0 != memcmp(block1->tracks[i].isrc, block2->tracks[i].isrc, sizeof(block1->tracks[i].isrc)))
808 return false;
809 if(block1->tracks[i].type != block2->tracks[i].type)
810 return false;
811 if(block1->tracks[i].pre_emphasis != block2->tracks[i].pre_emphasis)
812 return false;
813 if(block1->tracks[i].num_indices != block2->tracks[i].num_indices)
814 return false;
815 if(0 != block1->tracks[i].indices && 0 != block2->tracks[i].indices) {
816 FLAC__ASSERT(block1->tracks[i].num_indices > 0);
817 for(j = 0; j < block1->tracks[i].num_indices; j++) {
818 if(block1->tracks[i].indices[j].offset != block2->tracks[i].indices[j].offset)
819 return false;
820 if(block1->tracks[i].indices[j].number != block2->tracks[i].indices[j].number)
821 return false;
822 }
823 }
824 else if(block1->tracks[i].indices != block2->tracks[i].indices)
825 return false;
826 }
827 }
828 else if(block1->tracks != block2->tracks)
829 return false;
830 return true;
831}
832
Josh Coalsone343ab22006-09-23 19:21:19 +0000833static FLAC__bool compare_block_data_picture_(const FLAC__StreamMetadata_Picture *block1, const FLAC__StreamMetadata_Picture *block2)
834{
835 if(block1->type != block2->type)
836 return false;
837 if(block1->mime_type != block2->mime_type && (0 == block1->mime_type || 0 == block2->mime_type || strcmp(block1->mime_type, block2->mime_type)))
838 return false;
839 if(block1->description != block2->description && (0 == block1->description || 0 == block2->description || strcmp((const char *)block1->description, (const char *)block2->description)))
840 return false;
841 if(block1->width != block2->width)
842 return false;
843 if(block1->height != block2->height)
844 return false;
845 if(block1->depth != block2->depth)
846 return false;
Josh Coalson74ed2942006-09-23 23:15:05 +0000847 if(block1->colors != block2->colors)
848 return false;
Josh Coalsone343ab22006-09-23 19:21:19 +0000849 if(block1->data_length != block2->data_length)
850 return false;
851 if(block1->data != block2->data && (0 == block1->data || 0 == block2->data || memcmp(block1->data, block2->data, block1->data_length)))
852 return false;
853 return true;
854}
855
Josh Coalsond0609472003-01-10 05:37:13 +0000856static FLAC__bool compare_block_data_unknown_(const FLAC__StreamMetadata_Unknown *block1, const FLAC__StreamMetadata_Unknown *block2, unsigned block_length)
857{
858 FLAC__ASSERT(0 != block1);
859 FLAC__ASSERT(0 != block2);
860
861 if(0 != block1->data && 0 != block2->data)
862 return 0 == memcmp(block1->data, block2->data, block_length);
863 else
864 return block1->data == block2->data;
865}
866
Josh Coalson6afed9f2002-10-16 22:29:47 +0000867FLAC_API FLAC__bool FLAC__metadata_object_is_equal(const FLAC__StreamMetadata *block1, const FLAC__StreamMetadata *block2)
Josh Coalson57ba6f42002-06-07 05:27:37 +0000868{
Josh Coalsond8ab3462002-07-11 05:54:05 +0000869 FLAC__ASSERT(0 != block1);
870 FLAC__ASSERT(0 != block2);
871
Josh Coalson57ba6f42002-06-07 05:27:37 +0000872 if(block1->type != block2->type) {
873 return false;
Josh Coalson5a5de732002-08-01 06:37:11 +0000874 }
Josh Coalson57ba6f42002-06-07 05:27:37 +0000875 if(block1->is_last != block2->is_last) {
876 return false;
Josh Coalson5a5de732002-08-01 06:37:11 +0000877 }
Josh Coalson57ba6f42002-06-07 05:27:37 +0000878 if(block1->length != block2->length) {
879 return false;
Josh Coalson5a5de732002-08-01 06:37:11 +0000880 }
Josh Coalson57ba6f42002-06-07 05:27:37 +0000881 switch(block1->type) {
882 case FLAC__METADATA_TYPE_STREAMINFO:
883 return compare_block_data_streaminfo_(&block1->data.stream_info, &block2->data.stream_info);
884 case FLAC__METADATA_TYPE_PADDING:
885 return true; /* we don't compare the padding guts */
886 case FLAC__METADATA_TYPE_APPLICATION:
887 return compare_block_data_application_(&block1->data.application, &block2->data.application, block1->length);
888 case FLAC__METADATA_TYPE_SEEKTABLE:
889 return compare_block_data_seektable_(&block1->data.seek_table, &block2->data.seek_table);
890 case FLAC__METADATA_TYPE_VORBIS_COMMENT:
891 return compare_block_data_vorbiscomment_(&block1->data.vorbis_comment, &block2->data.vorbis_comment);
Josh Coalson8e9c4512002-11-14 05:00:24 +0000892 case FLAC__METADATA_TYPE_CUESHEET:
893 return compare_block_data_cuesheet_(&block1->data.cue_sheet, &block2->data.cue_sheet);
Josh Coalsone343ab22006-09-23 19:21:19 +0000894 case FLAC__METADATA_TYPE_PICTURE:
895 return compare_block_data_picture_(&block1->data.picture, &block2->data.picture);
Josh Coalson57ba6f42002-06-07 05:27:37 +0000896 default:
Josh Coalsond0609472003-01-10 05:37:13 +0000897 return compare_block_data_unknown_(&block1->data.unknown, &block2->data.unknown, block1->length);
Josh Coalson57ba6f42002-06-07 05:27:37 +0000898 }
899}
900
Josh Coalson6afed9f2002-10-16 22:29:47 +0000901FLAC_API FLAC__bool FLAC__metadata_object_application_set_data(FLAC__StreamMetadata *object, FLAC__byte *data, unsigned length, FLAC__bool copy)
Josh Coalson90ced912002-05-30 05:23:38 +0000902{
903 FLAC__byte *save;
904
Josh Coalsond8ab3462002-07-11 05:54:05 +0000905 FLAC__ASSERT(0 != object);
Josh Coalson90ced912002-05-30 05:23:38 +0000906 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_APPLICATION);
907 FLAC__ASSERT((0 != data && length > 0) || (0 == data && length == 0 && copy == false));
908
909 save = object->data.application.data;
910
911 /* do the copy first so that if we fail we leave the object untouched */
912 if(copy) {
913 if(!copy_bytes_(&object->data.application.data, data, length))
914 return false;
915 }
916 else {
917 object->data.application.data = data;
918 }
919
Erik de Castro Lopob105f9a2015-07-04 12:19:29 +1000920 free(save);
Josh Coalson90ced912002-05-30 05:23:38 +0000921
922 object->length = FLAC__STREAM_METADATA_APPLICATION_ID_LEN / 8 + length;
923 return true;
924}
925
Josh Coalson6afed9f2002-10-16 22:29:47 +0000926FLAC_API FLAC__bool FLAC__metadata_object_seektable_resize_points(FLAC__StreamMetadata *object, unsigned new_num_points)
Josh Coalson90ced912002-05-30 05:23:38 +0000927{
928 FLAC__ASSERT(0 != object);
929 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_SEEKTABLE);
930
931 if(0 == object->data.seek_table.points) {
932 FLAC__ASSERT(object->data.seek_table.num_points == 0);
933 if(0 == new_num_points)
934 return true;
935 else if(0 == (object->data.seek_table.points = seekpoint_array_new_(new_num_points)))
936 return false;
937 }
938 else {
Josh Coalson0f008d22007-09-11 04:49:56 +0000939 const size_t old_size = object->data.seek_table.num_points * sizeof(FLAC__StreamMetadata_SeekPoint);
940 const size_t new_size = new_num_points * sizeof(FLAC__StreamMetadata_SeekPoint);
941
942 /* overflow check */
Erik de Castro Lopo587e1182012-02-17 17:52:12 +1100943 if(new_num_points > UINT32_MAX / sizeof(FLAC__StreamMetadata_SeekPoint))
Josh Coalson0f008d22007-09-11 04:49:56 +0000944 return false;
Josh Coalson90ced912002-05-30 05:23:38 +0000945
946 FLAC__ASSERT(object->data.seek_table.num_points > 0);
947
948 if(new_size == 0) {
949 free(object->data.seek_table.points);
950 object->data.seek_table.points = 0;
951 }
Erik de Castro Lopo6c2040d2012-04-04 21:29:25 +1000952 else if(0 == (object->data.seek_table.points = realloc(object->data.seek_table.points, new_size)))
Josh Coalson90ced912002-05-30 05:23:38 +0000953 return false;
954
955 /* if growing, set new elements to placeholders */
956 if(new_size > old_size) {
957 unsigned i;
958 for(i = object->data.seek_table.num_points; i < new_num_points; i++) {
959 object->data.seek_table.points[i].sample_number = FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER;
960 object->data.seek_table.points[i].stream_offset = 0;
961 object->data.seek_table.points[i].frame_samples = 0;
962 }
963 }
964 }
965
966 object->data.seek_table.num_points = new_num_points;
967
968 seektable_calculate_length_(object);
969 return true;
970}
971
Josh Coalson6afed9f2002-10-16 22:29:47 +0000972FLAC_API void FLAC__metadata_object_seektable_set_point(FLAC__StreamMetadata *object, unsigned point_num, FLAC__StreamMetadata_SeekPoint point)
Josh Coalson90ced912002-05-30 05:23:38 +0000973{
974 FLAC__ASSERT(0 != object);
975 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_SEEKTABLE);
Josh Coalson8e9c4512002-11-14 05:00:24 +0000976 FLAC__ASSERT(point_num < object->data.seek_table.num_points);
Josh Coalson90ced912002-05-30 05:23:38 +0000977
978 object->data.seek_table.points[point_num] = point;
979}
980
Josh Coalson6afed9f2002-10-16 22:29:47 +0000981FLAC_API FLAC__bool FLAC__metadata_object_seektable_insert_point(FLAC__StreamMetadata *object, unsigned point_num, FLAC__StreamMetadata_SeekPoint point)
Josh Coalson90ced912002-05-30 05:23:38 +0000982{
983 int i;
984
985 FLAC__ASSERT(0 != object);
Josh Coalson6b8e5302002-05-31 06:23:09 +0000986 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_SEEKTABLE);
Josh Coalson8e9c4512002-11-14 05:00:24 +0000987 FLAC__ASSERT(point_num <= object->data.seek_table.num_points);
Josh Coalson90ced912002-05-30 05:23:38 +0000988
989 if(!FLAC__metadata_object_seektable_resize_points(object, object->data.seek_table.num_points+1))
990 return false;
991
992 /* move all points >= point_num forward one space */
993 for(i = (int)object->data.seek_table.num_points-1; i > (int)point_num; i--)
994 object->data.seek_table.points[i] = object->data.seek_table.points[i-1];
995
996 FLAC__metadata_object_seektable_set_point(object, point_num, point);
997 seektable_calculate_length_(object);
998 return true;
999}
1000
Josh Coalson6afed9f2002-10-16 22:29:47 +00001001FLAC_API FLAC__bool FLAC__metadata_object_seektable_delete_point(FLAC__StreamMetadata *object, unsigned point_num)
Josh Coalson90ced912002-05-30 05:23:38 +00001002{
1003 unsigned i;
1004
1005 FLAC__ASSERT(0 != object);
1006 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_SEEKTABLE);
Josh Coalson8e9c4512002-11-14 05:00:24 +00001007 FLAC__ASSERT(point_num < object->data.seek_table.num_points);
Josh Coalson90ced912002-05-30 05:23:38 +00001008
1009 /* move all points > point_num backward one space */
1010 for(i = point_num; i < object->data.seek_table.num_points-1; i++)
1011 object->data.seek_table.points[i] = object->data.seek_table.points[i+1];
1012
1013 return FLAC__metadata_object_seektable_resize_points(object, object->data.seek_table.num_points-1);
1014}
1015
Josh Coalson6afed9f2002-10-16 22:29:47 +00001016FLAC_API FLAC__bool FLAC__metadata_object_seektable_is_legal(const FLAC__StreamMetadata *object)
Josh Coalson28e08d82002-06-05 05:56:41 +00001017{
Josh Coalson28e08d82002-06-05 05:56:41 +00001018 FLAC__ASSERT(0 != object);
1019 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_SEEKTABLE);
1020
Josh Coalson0833f342002-07-15 05:31:55 +00001021 return FLAC__format_seektable_is_legal(&object->data.seek_table);
Josh Coalson28e08d82002-06-05 05:56:41 +00001022}
1023
Josh Coalson6afed9f2002-10-16 22:29:47 +00001024FLAC_API FLAC__bool FLAC__metadata_object_seektable_template_append_placeholders(FLAC__StreamMetadata *object, unsigned num)
Josh Coalson5a5de732002-08-01 06:37:11 +00001025{
1026 FLAC__ASSERT(0 != object);
1027 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_SEEKTABLE);
1028
1029 if(num > 0)
1030 /* WATCHOUT: we rely on the fact that growing the array adds PLACEHOLDERS at the end */
1031 return FLAC__metadata_object_seektable_resize_points(object, object->data.seek_table.num_points + num);
1032 else
1033 return true;
1034}
1035
Josh Coalson6afed9f2002-10-16 22:29:47 +00001036FLAC_API FLAC__bool FLAC__metadata_object_seektable_template_append_point(FLAC__StreamMetadata *object, FLAC__uint64 sample_number)
Josh Coalson5a5de732002-08-01 06:37:11 +00001037{
1038 FLAC__StreamMetadata_SeekTable *seek_table;
1039
1040 FLAC__ASSERT(0 != object);
1041 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_SEEKTABLE);
1042
1043 seek_table = &object->data.seek_table;
1044
1045 if(!FLAC__metadata_object_seektable_resize_points(object, seek_table->num_points + 1))
1046 return false;
1047
1048 seek_table->points[seek_table->num_points - 1].sample_number = sample_number;
1049 seek_table->points[seek_table->num_points - 1].stream_offset = 0;
1050 seek_table->points[seek_table->num_points - 1].frame_samples = 0;
1051
1052 return true;
1053}
1054
Josh Coalson6afed9f2002-10-16 22:29:47 +00001055FLAC_API FLAC__bool FLAC__metadata_object_seektable_template_append_points(FLAC__StreamMetadata *object, FLAC__uint64 sample_numbers[], unsigned num)
Josh Coalson5a5de732002-08-01 06:37:11 +00001056{
1057 FLAC__ASSERT(0 != object);
1058 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_SEEKTABLE);
1059 FLAC__ASSERT(0 != sample_numbers || num == 0);
1060
1061 if(num > 0) {
1062 FLAC__StreamMetadata_SeekTable *seek_table = &object->data.seek_table;
1063 unsigned i, j;
1064
1065 i = seek_table->num_points;
1066
1067 if(!FLAC__metadata_object_seektable_resize_points(object, seek_table->num_points + num))
1068 return false;
1069
1070 for(j = 0; j < num; i++, j++) {
1071 seek_table->points[i].sample_number = sample_numbers[j];
1072 seek_table->points[i].stream_offset = 0;
1073 seek_table->points[i].frame_samples = 0;
1074 }
1075 }
1076
1077 return true;
1078}
1079
Josh Coalson6afed9f2002-10-16 22:29:47 +00001080FLAC_API FLAC__bool FLAC__metadata_object_seektable_template_append_spaced_points(FLAC__StreamMetadata *object, unsigned num, FLAC__uint64 total_samples)
Josh Coalson5a5de732002-08-01 06:37:11 +00001081{
1082 FLAC__ASSERT(0 != object);
1083 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_SEEKTABLE);
1084 FLAC__ASSERT(total_samples > 0);
1085
Josh Coalson6b21f662006-09-13 01:42:27 +00001086 if(num > 0 && total_samples > 0) {
Josh Coalson5a5de732002-08-01 06:37:11 +00001087 FLAC__StreamMetadata_SeekTable *seek_table = &object->data.seek_table;
1088 unsigned i, j;
1089
1090 i = seek_table->num_points;
1091
1092 if(!FLAC__metadata_object_seektable_resize_points(object, seek_table->num_points + num))
1093 return false;
1094
1095 for(j = 0; j < num; i++, j++) {
1096 seek_table->points[i].sample_number = total_samples * (FLAC__uint64)j / (FLAC__uint64)num;
1097 seek_table->points[i].stream_offset = 0;
1098 seek_table->points[i].frame_samples = 0;
1099 }
1100 }
1101
1102 return true;
1103}
1104
Josh Coalson6b21f662006-09-13 01:42:27 +00001105FLAC_API FLAC__bool FLAC__metadata_object_seektable_template_append_spaced_points_by_samples(FLAC__StreamMetadata *object, unsigned samples, FLAC__uint64 total_samples)
1106{
1107 FLAC__ASSERT(0 != object);
1108 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_SEEKTABLE);
1109 FLAC__ASSERT(samples > 0);
1110 FLAC__ASSERT(total_samples > 0);
1111
1112 if(samples > 0 && total_samples > 0) {
1113 FLAC__StreamMetadata_SeekTable *seek_table = &object->data.seek_table;
1114 unsigned i, j;
1115 FLAC__uint64 num, sample;
1116
1117 num = 1 + total_samples / samples; /* 1+ for the first sample at 0 */
1118 /* now account for the fact that we don't place a seekpoint at "total_samples" since samples are number from 0: */
1119 if(total_samples % samples == 0)
1120 num--;
1121
Erik de Castro Lopoc431a6c2015-02-21 07:05:21 +11001122 /* Put a strict upper bound on the number of allowed seek points. */
Erik de Castro Lopo033af7b2015-02-18 17:55:52 +11001123 if (num > 32768) {
1124 /* Set the bound and recalculate samples accordingly. */
1125 num = 32786;
1126 samples = total_samples / num;
1127 }
1128
Josh Coalson6b21f662006-09-13 01:42:27 +00001129 i = seek_table->num_points;
1130
Josh Coalsona65fd932006-10-03 01:02:44 +00001131 if(!FLAC__metadata_object_seektable_resize_points(object, seek_table->num_points + (unsigned)num))
Josh Coalson6b21f662006-09-13 01:42:27 +00001132 return false;
1133
1134 sample = 0;
1135 for(j = 0; j < num; i++, j++, sample += samples) {
1136 seek_table->points[i].sample_number = sample;
1137 seek_table->points[i].stream_offset = 0;
1138 seek_table->points[i].frame_samples = 0;
1139 }
1140 }
1141
1142 return true;
1143}
1144
Josh Coalson6afed9f2002-10-16 22:29:47 +00001145FLAC_API FLAC__bool FLAC__metadata_object_seektable_template_sort(FLAC__StreamMetadata *object, FLAC__bool compact)
Josh Coalson5a5de732002-08-01 06:37:11 +00001146{
1147 unsigned unique;
1148
1149 FLAC__ASSERT(0 != object);
1150 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_SEEKTABLE);
1151
1152 unique = FLAC__format_seektable_sort(&object->data.seek_table);
1153
1154 return !compact || FLAC__metadata_object_seektable_resize_points(object, unique);
1155}
1156
Josh Coalson6afed9f2002-10-16 22:29:47 +00001157FLAC_API FLAC__bool FLAC__metadata_object_vorbiscomment_set_vendor_string(FLAC__StreamMetadata *object, FLAC__StreamMetadata_VorbisComment_Entry entry, FLAC__bool copy)
Josh Coalson90ced912002-05-30 05:23:38 +00001158{
Josh Coalson2de11242004-12-30 03:41:19 +00001159 if(!FLAC__format_vorbiscomment_entry_value_is_legal(entry.entry, entry.length))
1160 return false;
Josh Coalson6b8e5302002-05-31 06:23:09 +00001161 return vorbiscomment_set_entry_(object, &object->data.vorbis_comment.vendor_string, &entry, copy);
Josh Coalson90ced912002-05-30 05:23:38 +00001162}
1163
Josh Coalson6afed9f2002-10-16 22:29:47 +00001164FLAC_API FLAC__bool FLAC__metadata_object_vorbiscomment_resize_comments(FLAC__StreamMetadata *object, unsigned new_num_comments)
Josh Coalson90ced912002-05-30 05:23:38 +00001165{
1166 FLAC__ASSERT(0 != object);
1167 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_VORBIS_COMMENT);
1168
1169 if(0 == object->data.vorbis_comment.comments) {
1170 FLAC__ASSERT(object->data.vorbis_comment.num_comments == 0);
1171 if(0 == new_num_comments)
1172 return true;
1173 else if(0 == (object->data.vorbis_comment.comments = vorbiscomment_entry_array_new_(new_num_comments)))
1174 return false;
1175 }
1176 else {
Josh Coalson0f008d22007-09-11 04:49:56 +00001177 const size_t old_size = object->data.vorbis_comment.num_comments * sizeof(FLAC__StreamMetadata_VorbisComment_Entry);
1178 const size_t new_size = new_num_comments * sizeof(FLAC__StreamMetadata_VorbisComment_Entry);
1179
1180 /* overflow check */
Erik de Castro Lopo587e1182012-02-17 17:52:12 +11001181 if(new_num_comments > UINT32_MAX / sizeof(FLAC__StreamMetadata_VorbisComment_Entry))
Josh Coalson0f008d22007-09-11 04:49:56 +00001182 return false;
Josh Coalson90ced912002-05-30 05:23:38 +00001183
1184 FLAC__ASSERT(object->data.vorbis_comment.num_comments > 0);
1185
1186 /* if shrinking, free the truncated entries */
1187 if(new_num_comments < object->data.vorbis_comment.num_comments) {
1188 unsigned i;
1189 for(i = new_num_comments; i < object->data.vorbis_comment.num_comments; i++)
1190 if(0 != object->data.vorbis_comment.comments[i].entry)
1191 free(object->data.vorbis_comment.comments[i].entry);
1192 }
1193
1194 if(new_size == 0) {
1195 free(object->data.vorbis_comment.comments);
1196 object->data.vorbis_comment.comments = 0;
1197 }
Erik de Castro Lopo6c2040d2012-04-04 21:29:25 +10001198 else if(0 == (object->data.vorbis_comment.comments = realloc(object->data.vorbis_comment.comments, new_size)))
Josh Coalson90ced912002-05-30 05:23:38 +00001199 return false;
1200
1201 /* if growing, zero all the length/pointers of new elements */
1202 if(new_size > old_size)
1203 memset(object->data.vorbis_comment.comments + object->data.vorbis_comment.num_comments, 0, new_size - old_size);
1204 }
1205
1206 object->data.vorbis_comment.num_comments = new_num_comments;
1207
1208 vorbiscomment_calculate_length_(object);
1209 return true;
1210}
1211
Josh Coalson6afed9f2002-10-16 22:29:47 +00001212FLAC_API FLAC__bool FLAC__metadata_object_vorbiscomment_set_comment(FLAC__StreamMetadata *object, unsigned comment_num, FLAC__StreamMetadata_VorbisComment_Entry entry, FLAC__bool copy)
Josh Coalson90ced912002-05-30 05:23:38 +00001213{
Josh Coalsonfb993862003-01-15 03:18:07 +00001214 FLAC__ASSERT(0 != object);
1215 FLAC__ASSERT(comment_num < object->data.vorbis_comment.num_comments);
1216
Josh Coalson2de11242004-12-30 03:41:19 +00001217 if(!FLAC__format_vorbiscomment_entry_is_legal(entry.entry, entry.length))
1218 return false;
Josh Coalson6b8e5302002-05-31 06:23:09 +00001219 return vorbiscomment_set_entry_(object, &object->data.vorbis_comment.comments[comment_num], &entry, copy);
Josh Coalson90ced912002-05-30 05:23:38 +00001220}
1221
Josh Coalson6afed9f2002-10-16 22:29:47 +00001222FLAC_API FLAC__bool FLAC__metadata_object_vorbiscomment_insert_comment(FLAC__StreamMetadata *object, unsigned comment_num, FLAC__StreamMetadata_VorbisComment_Entry entry, FLAC__bool copy)
Josh Coalson90ced912002-05-30 05:23:38 +00001223{
Josh Coalsoncc682512002-06-08 04:53:42 +00001224 FLAC__StreamMetadata_VorbisComment *vc;
Josh Coalson90ced912002-05-30 05:23:38 +00001225
1226 FLAC__ASSERT(0 != object);
Josh Coalson90ced912002-05-30 05:23:38 +00001227 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_VORBIS_COMMENT);
Josh Coalson8e9c4512002-11-14 05:00:24 +00001228 FLAC__ASSERT(comment_num <= object->data.vorbis_comment.num_comments);
Josh Coalson90ced912002-05-30 05:23:38 +00001229
Josh Coalson2de11242004-12-30 03:41:19 +00001230 if(!FLAC__format_vorbiscomment_entry_is_legal(entry.entry, entry.length))
1231 return false;
1232
Josh Coalson6b8e5302002-05-31 06:23:09 +00001233 vc = &object->data.vorbis_comment;
1234
1235 if(!FLAC__metadata_object_vorbiscomment_resize_comments(object, vc->num_comments+1))
Josh Coalson90ced912002-05-30 05:23:38 +00001236 return false;
1237
1238 /* move all comments >= comment_num forward one space */
Josh Coalsoncc682512002-06-08 04:53:42 +00001239 memmove(&vc->comments[comment_num+1], &vc->comments[comment_num], sizeof(FLAC__StreamMetadata_VorbisComment_Entry)*(vc->num_comments-1-comment_num));
Josh Coalson6b8e5302002-05-31 06:23:09 +00001240 vc->comments[comment_num].length = 0;
1241 vc->comments[comment_num].entry = 0;
Josh Coalson90ced912002-05-30 05:23:38 +00001242
1243 return FLAC__metadata_object_vorbiscomment_set_comment(object, comment_num, entry, copy);
1244}
1245
Josh Coalsondef597e2004-12-30 00:59:30 +00001246FLAC_API FLAC__bool FLAC__metadata_object_vorbiscomment_append_comment(FLAC__StreamMetadata *object, FLAC__StreamMetadata_VorbisComment_Entry entry, FLAC__bool copy)
1247{
1248 FLAC__ASSERT(0 != object);
1249 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_VORBIS_COMMENT);
1250 return FLAC__metadata_object_vorbiscomment_insert_comment(object, object->data.vorbis_comment.num_comments, entry, copy);
1251}
1252
1253FLAC_API FLAC__bool FLAC__metadata_object_vorbiscomment_replace_comment(FLAC__StreamMetadata *object, FLAC__StreamMetadata_VorbisComment_Entry entry, FLAC__bool all, FLAC__bool copy)
1254{
1255 FLAC__ASSERT(0 != entry.entry && entry.length > 0);
Josh Coalson2de11242004-12-30 03:41:19 +00001256
1257 if(!FLAC__format_vorbiscomment_entry_is_legal(entry.entry, entry.length))
1258 return false;
1259
Josh Coalsondef597e2004-12-30 00:59:30 +00001260 {
1261 int i;
Josh Coalson9bedd782007-02-22 01:37:33 +00001262 size_t field_name_length;
Josh Coalsondef597e2004-12-30 00:59:30 +00001263 const FLAC__byte *eq = (FLAC__byte*)memchr(entry.entry, '=', entry.length);
1264
1265 FLAC__ASSERT(0 != eq);
1266
1267 if(0 == eq)
1268 return false; /* double protection */
1269
1270 field_name_length = eq-entry.entry;
1271
Josh Coalsone95399c2008-09-15 05:37:27 +00001272 i = vorbiscomment_find_entry_from_(object, 0, (const char *)entry.entry, field_name_length);
1273 if(i >= 0) {
Erik de Castro Lopoae7eda12013-04-05 20:21:22 +11001274 unsigned indx = (unsigned)i;
1275 if(!FLAC__metadata_object_vorbiscomment_set_comment(object, indx, entry, copy))
Josh Coalsondef597e2004-12-30 00:59:30 +00001276 return false;
Erik de Castro Lopoae7eda12013-04-05 20:21:22 +11001277 entry = object->data.vorbis_comment.comments[indx];
1278 indx++; /* skip over replaced comment */
1279 if(all && indx < object->data.vorbis_comment.num_comments) {
1280 i = vorbiscomment_find_entry_from_(object, indx, (const char *)entry.entry, field_name_length);
Josh Coalsone95399c2008-09-15 05:37:27 +00001281 while(i >= 0) {
Erik de Castro Lopoae7eda12013-04-05 20:21:22 +11001282 indx = (unsigned)i;
1283 if(!FLAC__metadata_object_vorbiscomment_delete_comment(object, indx))
Josh Coalsondef597e2004-12-30 00:59:30 +00001284 return false;
Erik de Castro Lopoae7eda12013-04-05 20:21:22 +11001285 if(indx < object->data.vorbis_comment.num_comments)
1286 i = vorbiscomment_find_entry_from_(object, indx, (const char *)entry.entry, field_name_length);
Josh Coalsondef597e2004-12-30 00:59:30 +00001287 else
1288 i = -1;
1289 }
1290 }
1291 return true;
1292 }
1293 else
1294 return FLAC__metadata_object_vorbiscomment_append_comment(object, entry, copy);
1295 }
1296}
1297
Josh Coalson6afed9f2002-10-16 22:29:47 +00001298FLAC_API FLAC__bool FLAC__metadata_object_vorbiscomment_delete_comment(FLAC__StreamMetadata *object, unsigned comment_num)
Josh Coalson90ced912002-05-30 05:23:38 +00001299{
Josh Coalsoncc682512002-06-08 04:53:42 +00001300 FLAC__StreamMetadata_VorbisComment *vc;
Josh Coalson90ced912002-05-30 05:23:38 +00001301
1302 FLAC__ASSERT(0 != object);
1303 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_VORBIS_COMMENT);
Josh Coalson8e9c4512002-11-14 05:00:24 +00001304 FLAC__ASSERT(comment_num < object->data.vorbis_comment.num_comments);
Josh Coalson90ced912002-05-30 05:23:38 +00001305
Josh Coalson6b8e5302002-05-31 06:23:09 +00001306 vc = &object->data.vorbis_comment;
1307
Josh Coalson90ced912002-05-30 05:23:38 +00001308 /* free the comment at comment_num */
Erik de Castro Lopob105f9a2015-07-04 12:19:29 +10001309 free(vc->comments[comment_num].entry);
Josh Coalson90ced912002-05-30 05:23:38 +00001310
1311 /* move all comments > comment_num backward one space */
Josh Coalsoncc682512002-06-08 04:53:42 +00001312 memmove(&vc->comments[comment_num], &vc->comments[comment_num+1], sizeof(FLAC__StreamMetadata_VorbisComment_Entry)*(vc->num_comments-comment_num-1));
Josh Coalson6b8e5302002-05-31 06:23:09 +00001313 vc->comments[vc->num_comments-1].length = 0;
1314 vc->comments[vc->num_comments-1].entry = 0;
Josh Coalson90ced912002-05-30 05:23:38 +00001315
Josh Coalson6b8e5302002-05-31 06:23:09 +00001316 return FLAC__metadata_object_vorbiscomment_resize_comments(object, vc->num_comments-1);
Josh Coalson90ced912002-05-30 05:23:38 +00001317}
Josh Coalson45bb9882002-10-26 04:34:16 +00001318
Josh Coalsondef597e2004-12-30 00:59:30 +00001319FLAC_API FLAC__bool FLAC__metadata_object_vorbiscomment_entry_from_name_value_pair(FLAC__StreamMetadata_VorbisComment_Entry *entry, const char *field_name, const char *field_value)
Josh Coalson45bb9882002-10-26 04:34:16 +00001320{
Josh Coalsondef597e2004-12-30 00:59:30 +00001321 FLAC__ASSERT(0 != entry);
1322 FLAC__ASSERT(0 != field_name);
1323 FLAC__ASSERT(0 != field_value);
1324
Josh Coalson2de11242004-12-30 03:41:19 +00001325 if(!FLAC__format_vorbiscomment_entry_name_is_legal(field_name))
1326 return false;
Josh Coalsonb4de1692005-08-24 07:39:25 +00001327 if(!FLAC__format_vorbiscomment_entry_value_is_legal((const FLAC__byte *)field_value, (unsigned)(-1)))
Josh Coalson2de11242004-12-30 03:41:19 +00001328 return false;
1329
Josh Coalsondef597e2004-12-30 00:59:30 +00001330 {
1331 const size_t nn = strlen(field_name);
1332 const size_t nv = strlen(field_value);
1333 entry->length = nn + 1 /*=*/ + nv;
Erik de Castro Lopo6c2040d2012-04-04 21:29:25 +10001334 if(0 == (entry->entry = safe_malloc_add_4op_(nn, /*+*/1, /*+*/nv, /*+*/1)))
Josh Coalsondef597e2004-12-30 00:59:30 +00001335 return false;
1336 memcpy(entry->entry, field_name, nn);
1337 entry->entry[nn] = '=';
1338 memcpy(entry->entry+nn+1, field_value, nv);
1339 entry->entry[entry->length] = '\0';
1340 }
Erik de Castro Lopo587e1182012-02-17 17:52:12 +11001341
Josh Coalsondef597e2004-12-30 00:59:30 +00001342 return true;
1343}
1344
1345FLAC_API FLAC__bool FLAC__metadata_object_vorbiscomment_entry_to_name_value_pair(const FLAC__StreamMetadata_VorbisComment_Entry entry, char **field_name, char **field_value)
1346{
1347 FLAC__ASSERT(0 != entry.entry && entry.length > 0);
1348 FLAC__ASSERT(0 != field_name);
1349 FLAC__ASSERT(0 != field_value);
Josh Coalson2de11242004-12-30 03:41:19 +00001350
1351 if(!FLAC__format_vorbiscomment_entry_is_legal(entry.entry, entry.length))
1352 return false;
1353
Josh Coalsondef597e2004-12-30 00:59:30 +00001354 {
1355 const FLAC__byte *eq = (FLAC__byte*)memchr(entry.entry, '=', entry.length);
1356 const size_t nn = eq-entry.entry;
1357 const size_t nv = entry.length-nn-1; /* -1 for the '=' */
1358 FLAC__ASSERT(0 != eq);
1359 if(0 == eq)
1360 return false; /* double protection */
Erik de Castro Lopo6c2040d2012-04-04 21:29:25 +10001361 if(0 == (*field_name = safe_malloc_add_2op_(nn, /*+*/1)))
Josh Coalsondef597e2004-12-30 00:59:30 +00001362 return false;
Erik de Castro Lopo6c2040d2012-04-04 21:29:25 +10001363 if(0 == (*field_value = safe_malloc_add_2op_(nv, /*+*/1))) {
Josh Coalsondef597e2004-12-30 00:59:30 +00001364 free(*field_name);
1365 return false;
1366 }
1367 memcpy(*field_name, entry.entry, nn);
1368 memcpy(*field_value, entry.entry+nn+1, nv);
1369 (*field_name)[nn] = '\0';
1370 (*field_value)[nv] = '\0';
1371 }
1372
1373 return true;
1374}
1375
Josh Coalson44623112005-01-30 18:15:36 +00001376FLAC_API FLAC__bool FLAC__metadata_object_vorbiscomment_entry_matches(const FLAC__StreamMetadata_VorbisComment_Entry entry, const char *field_name, unsigned field_name_length)
Josh Coalsondef597e2004-12-30 00:59:30 +00001377{
1378 FLAC__ASSERT(0 != entry.entry && entry.length > 0);
1379 {
1380 const FLAC__byte *eq = (FLAC__byte*)memchr(entry.entry, '=', entry.length);
Josh Coalsondef597e2004-12-30 00:59:30 +00001381 return (0 != eq && (unsigned)(eq-entry.entry) == field_name_length && 0 == FLAC__STRNCASECMP(field_name, (const char *)entry.entry, field_name_length));
Josh Coalsondef597e2004-12-30 00:59:30 +00001382 }
Josh Coalson45bb9882002-10-26 04:34:16 +00001383}
1384
Josh Coalsonb667e702002-11-05 07:24:33 +00001385FLAC_API int FLAC__metadata_object_vorbiscomment_find_entry_from(const FLAC__StreamMetadata *object, unsigned offset, const char *field_name)
Josh Coalson45bb9882002-10-26 04:34:16 +00001386{
Josh Coalsondef597e2004-12-30 00:59:30 +00001387 FLAC__ASSERT(0 != field_name);
Josh Coalson45bb9882002-10-26 04:34:16 +00001388
Josh Coalsondef597e2004-12-30 00:59:30 +00001389 return vorbiscomment_find_entry_from_(object, offset, field_name, strlen(field_name));
Josh Coalson45bb9882002-10-26 04:34:16 +00001390}
1391
1392FLAC_API int FLAC__metadata_object_vorbiscomment_remove_entry_matching(FLAC__StreamMetadata *object, const char *field_name)
1393{
1394 const unsigned field_name_length = strlen(field_name);
1395 unsigned i;
1396
1397 FLAC__ASSERT(0 != object);
1398 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_VORBIS_COMMENT);
1399
1400 for(i = 0; i < object->data.vorbis_comment.num_comments; i++) {
Josh Coalsondef597e2004-12-30 00:59:30 +00001401 if(FLAC__metadata_object_vorbiscomment_entry_matches(object->data.vorbis_comment.comments[i], field_name, field_name_length)) {
Josh Coalson45bb9882002-10-26 04:34:16 +00001402 if(!FLAC__metadata_object_vorbiscomment_delete_comment(object, i))
1403 return -1;
1404 else
1405 return 1;
1406 }
1407 }
1408
1409 return 0;
1410}
1411
1412FLAC_API int FLAC__metadata_object_vorbiscomment_remove_entries_matching(FLAC__StreamMetadata *object, const char *field_name)
1413{
1414 FLAC__bool ok = true;
1415 unsigned matching = 0;
1416 const unsigned field_name_length = strlen(field_name);
1417 int i;
1418
1419 FLAC__ASSERT(0 != object);
1420 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_VORBIS_COMMENT);
1421
1422 /* must delete from end to start otherwise it will interfere with our iteration */
1423 for(i = (int)object->data.vorbis_comment.num_comments - 1; ok && i >= 0; i--) {
Josh Coalsondef597e2004-12-30 00:59:30 +00001424 if(FLAC__metadata_object_vorbiscomment_entry_matches(object->data.vorbis_comment.comments[i], field_name, field_name_length)) {
Josh Coalson45bb9882002-10-26 04:34:16 +00001425 matching++;
1426 ok &= FLAC__metadata_object_vorbiscomment_delete_comment(object, (unsigned)i);
1427 }
1428 }
1429
1430 return ok? (int)matching : -1;
1431}
Josh Coalson8e9c4512002-11-14 05:00:24 +00001432
Josh Coalsone3ec2ad2007-01-31 03:53:22 +00001433FLAC_API FLAC__StreamMetadata_CueSheet_Track *FLAC__metadata_object_cuesheet_track_new(void)
Josh Coalsondf7240a2002-11-16 06:32:30 +00001434{
Erik de Castro Lopo6c2040d2012-04-04 21:29:25 +10001435 return calloc(1, sizeof(FLAC__StreamMetadata_CueSheet_Track));
Josh Coalsondf7240a2002-11-16 06:32:30 +00001436}
1437
1438FLAC_API FLAC__StreamMetadata_CueSheet_Track *FLAC__metadata_object_cuesheet_track_clone(const FLAC__StreamMetadata_CueSheet_Track *object)
1439{
1440 FLAC__StreamMetadata_CueSheet_Track *to;
1441
1442 FLAC__ASSERT(0 != object);
1443
1444 if(0 != (to = FLAC__metadata_object_cuesheet_track_new())) {
1445 if(!copy_track_(to, object)) {
1446 FLAC__metadata_object_cuesheet_track_delete(to);
1447 return 0;
1448 }
1449 }
1450
1451 return to;
1452}
1453
1454void FLAC__metadata_object_cuesheet_track_delete_data(FLAC__StreamMetadata_CueSheet_Track *object)
1455{
1456 FLAC__ASSERT(0 != object);
1457
1458 if(0 != object->indices) {
1459 FLAC__ASSERT(object->num_indices > 0);
1460 free(object->indices);
1461 }
1462}
1463
1464FLAC_API void FLAC__metadata_object_cuesheet_track_delete(FLAC__StreamMetadata_CueSheet_Track *object)
1465{
1466 FLAC__metadata_object_cuesheet_track_delete_data(object);
1467 free(object);
1468}
1469
Josh Coalson8e9c4512002-11-14 05:00:24 +00001470FLAC_API FLAC__bool FLAC__metadata_object_cuesheet_track_resize_indices(FLAC__StreamMetadata *object, unsigned track_num, unsigned new_num_indices)
1471{
1472 FLAC__StreamMetadata_CueSheet_Track *track;
1473 FLAC__ASSERT(0 != object);
1474 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_CUESHEET);
1475 FLAC__ASSERT(track_num < object->data.cue_sheet.num_tracks);
1476
1477 track = &object->data.cue_sheet.tracks[track_num];
1478
1479 if(0 == track->indices) {
1480 FLAC__ASSERT(track->num_indices == 0);
1481 if(0 == new_num_indices)
1482 return true;
1483 else if(0 == (track->indices = cuesheet_track_index_array_new_(new_num_indices)))
1484 return false;
1485 }
1486 else {
Josh Coalson0f008d22007-09-11 04:49:56 +00001487 const size_t old_size = track->num_indices * sizeof(FLAC__StreamMetadata_CueSheet_Index);
1488 const size_t new_size = new_num_indices * sizeof(FLAC__StreamMetadata_CueSheet_Index);
1489
1490 /* overflow check */
Erik de Castro Lopo587e1182012-02-17 17:52:12 +11001491 if(new_num_indices > UINT32_MAX / sizeof(FLAC__StreamMetadata_CueSheet_Index))
Josh Coalson0f008d22007-09-11 04:49:56 +00001492 return false;
Josh Coalson8e9c4512002-11-14 05:00:24 +00001493
1494 FLAC__ASSERT(track->num_indices > 0);
1495
1496 if(new_size == 0) {
1497 free(track->indices);
1498 track->indices = 0;
1499 }
Erik de Castro Lopo6c2040d2012-04-04 21:29:25 +10001500 else if(0 == (track->indices = realloc(track->indices, new_size)))
Josh Coalson8e9c4512002-11-14 05:00:24 +00001501 return false;
1502
1503 /* if growing, zero all the lengths/pointers of new elements */
1504 if(new_size > old_size)
1505 memset(track->indices + track->num_indices, 0, new_size - old_size);
1506 }
1507
1508 track->num_indices = new_num_indices;
1509
1510 cuesheet_calculate_length_(object);
1511 return true;
1512}
1513
Erik de Castro Lopoae7eda12013-04-05 20:21:22 +11001514FLAC_API FLAC__bool FLAC__metadata_object_cuesheet_track_insert_index(FLAC__StreamMetadata *object, unsigned track_num, unsigned index_num, FLAC__StreamMetadata_CueSheet_Index indx)
Josh Coalson8e9c4512002-11-14 05:00:24 +00001515{
1516 FLAC__StreamMetadata_CueSheet_Track *track;
1517
1518 FLAC__ASSERT(0 != object);
1519 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_CUESHEET);
1520 FLAC__ASSERT(track_num < object->data.cue_sheet.num_tracks);
1521 FLAC__ASSERT(index_num <= object->data.cue_sheet.tracks[track_num].num_indices);
1522
1523 track = &object->data.cue_sheet.tracks[track_num];
1524
1525 if(!FLAC__metadata_object_cuesheet_track_resize_indices(object, track_num, track->num_indices+1))
1526 return false;
1527
1528 /* move all indices >= index_num forward one space */
1529 memmove(&track->indices[index_num+1], &track->indices[index_num], sizeof(FLAC__StreamMetadata_CueSheet_Index)*(track->num_indices-1-index_num));
1530
Erik de Castro Lopoae7eda12013-04-05 20:21:22 +11001531 track->indices[index_num] = indx;
Josh Coalson8e9c4512002-11-14 05:00:24 +00001532 cuesheet_calculate_length_(object);
1533 return true;
1534}
1535
Josh Coalson3b026e82002-11-21 06:41:01 +00001536FLAC_API FLAC__bool FLAC__metadata_object_cuesheet_track_insert_blank_index(FLAC__StreamMetadata *object, unsigned track_num, unsigned index_num)
1537{
Erik de Castro Lopoae7eda12013-04-05 20:21:22 +11001538 FLAC__StreamMetadata_CueSheet_Index indx;
1539 memset(&indx, 0, sizeof(indx));
1540 return FLAC__metadata_object_cuesheet_track_insert_index(object, track_num, index_num, indx);
Josh Coalson3b026e82002-11-21 06:41:01 +00001541}
1542
Josh Coalson8e9c4512002-11-14 05:00:24 +00001543FLAC_API FLAC__bool FLAC__metadata_object_cuesheet_track_delete_index(FLAC__StreamMetadata *object, unsigned track_num, unsigned index_num)
1544{
1545 FLAC__StreamMetadata_CueSheet_Track *track;
1546
1547 FLAC__ASSERT(0 != object);
1548 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_CUESHEET);
1549 FLAC__ASSERT(track_num < object->data.cue_sheet.num_tracks);
1550 FLAC__ASSERT(index_num < object->data.cue_sheet.tracks[track_num].num_indices);
1551
1552 track = &object->data.cue_sheet.tracks[track_num];
1553
1554 /* move all indices > index_num backward one space */
Josh Coalson4fa90592002-12-04 07:01:37 +00001555 memmove(&track->indices[index_num], &track->indices[index_num+1], sizeof(FLAC__StreamMetadata_CueSheet_Index)*(track->num_indices-index_num-1));
Josh Coalson8e9c4512002-11-14 05:00:24 +00001556
1557 FLAC__metadata_object_cuesheet_track_resize_indices(object, track_num, track->num_indices-1);
1558 cuesheet_calculate_length_(object);
1559 return true;
1560}
1561
1562FLAC_API FLAC__bool FLAC__metadata_object_cuesheet_resize_tracks(FLAC__StreamMetadata *object, unsigned new_num_tracks)
1563{
1564 FLAC__ASSERT(0 != object);
1565 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_CUESHEET);
1566
1567 if(0 == object->data.cue_sheet.tracks) {
1568 FLAC__ASSERT(object->data.cue_sheet.num_tracks == 0);
1569 if(0 == new_num_tracks)
1570 return true;
1571 else if(0 == (object->data.cue_sheet.tracks = cuesheet_track_array_new_(new_num_tracks)))
1572 return false;
1573 }
1574 else {
Josh Coalson0f008d22007-09-11 04:49:56 +00001575 const size_t old_size = object->data.cue_sheet.num_tracks * sizeof(FLAC__StreamMetadata_CueSheet_Track);
1576 const size_t new_size = new_num_tracks * sizeof(FLAC__StreamMetadata_CueSheet_Track);
1577
1578 /* overflow check */
Erik de Castro Lopo587e1182012-02-17 17:52:12 +11001579 if(new_num_tracks > UINT32_MAX / sizeof(FLAC__StreamMetadata_CueSheet_Track))
Josh Coalson0f008d22007-09-11 04:49:56 +00001580 return false;
Josh Coalson8e9c4512002-11-14 05:00:24 +00001581
1582 FLAC__ASSERT(object->data.cue_sheet.num_tracks > 0);
1583
1584 /* if shrinking, free the truncated entries */
1585 if(new_num_tracks < object->data.cue_sheet.num_tracks) {
1586 unsigned i;
1587 for(i = new_num_tracks; i < object->data.cue_sheet.num_tracks; i++)
Erik de Castro Lopob105f9a2015-07-04 12:19:29 +10001588 free(object->data.cue_sheet.tracks[i].indices);
Josh Coalson8e9c4512002-11-14 05:00:24 +00001589 }
1590
1591 if(new_size == 0) {
1592 free(object->data.cue_sheet.tracks);
1593 object->data.cue_sheet.tracks = 0;
1594 }
Erik de Castro Lopo6c2040d2012-04-04 21:29:25 +10001595 else if(0 == (object->data.cue_sheet.tracks = realloc(object->data.cue_sheet.tracks, new_size)))
Josh Coalson8e9c4512002-11-14 05:00:24 +00001596 return false;
1597
1598 /* if growing, zero all the lengths/pointers of new elements */
1599 if(new_size > old_size)
1600 memset(object->data.cue_sheet.tracks + object->data.cue_sheet.num_tracks, 0, new_size - old_size);
1601 }
1602
1603 object->data.cue_sheet.num_tracks = new_num_tracks;
1604
1605 cuesheet_calculate_length_(object);
1606 return true;
1607}
1608
Josh Coalsondf7240a2002-11-16 06:32:30 +00001609FLAC_API FLAC__bool FLAC__metadata_object_cuesheet_set_track(FLAC__StreamMetadata *object, unsigned track_num, FLAC__StreamMetadata_CueSheet_Track *track, FLAC__bool copy)
Josh Coalson8e9c4512002-11-14 05:00:24 +00001610{
Josh Coalsonfb993862003-01-15 03:18:07 +00001611 FLAC__ASSERT(0 != object);
1612 FLAC__ASSERT(track_num < object->data.cue_sheet.num_tracks);
1613
Josh Coalsondf7240a2002-11-16 06:32:30 +00001614 return cuesheet_set_track_(object, object->data.cue_sheet.tracks + track_num, track, copy);
Josh Coalson8e9c4512002-11-14 05:00:24 +00001615}
1616
Josh Coalsondf7240a2002-11-16 06:32:30 +00001617FLAC_API FLAC__bool FLAC__metadata_object_cuesheet_insert_track(FLAC__StreamMetadata *object, unsigned track_num, FLAC__StreamMetadata_CueSheet_Track *track, FLAC__bool copy)
Josh Coalson8e9c4512002-11-14 05:00:24 +00001618{
1619 FLAC__StreamMetadata_CueSheet *cs;
1620
1621 FLAC__ASSERT(0 != object);
1622 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_CUESHEET);
1623 FLAC__ASSERT(track_num <= object->data.cue_sheet.num_tracks);
1624
1625 cs = &object->data.cue_sheet;
1626
1627 if(!FLAC__metadata_object_cuesheet_resize_tracks(object, cs->num_tracks+1))
1628 return false;
1629
1630 /* move all tracks >= track_num forward one space */
1631 memmove(&cs->tracks[track_num+1], &cs->tracks[track_num], sizeof(FLAC__StreamMetadata_CueSheet_Track)*(cs->num_tracks-1-track_num));
1632 cs->tracks[track_num].num_indices = 0;
1633 cs->tracks[track_num].indices = 0;
1634
1635 return FLAC__metadata_object_cuesheet_set_track(object, track_num, track, copy);
1636}
1637
Josh Coalson3b026e82002-11-21 06:41:01 +00001638FLAC_API FLAC__bool FLAC__metadata_object_cuesheet_insert_blank_track(FLAC__StreamMetadata *object, unsigned track_num)
1639{
1640 FLAC__StreamMetadata_CueSheet_Track track;
1641 memset(&track, 0, sizeof(track));
1642 return FLAC__metadata_object_cuesheet_insert_track(object, track_num, &track, /*copy=*/false);
1643}
1644
Josh Coalson8e9c4512002-11-14 05:00:24 +00001645FLAC_API FLAC__bool FLAC__metadata_object_cuesheet_delete_track(FLAC__StreamMetadata *object, unsigned track_num)
1646{
1647 FLAC__StreamMetadata_CueSheet *cs;
1648
1649 FLAC__ASSERT(0 != object);
1650 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_CUESHEET);
1651 FLAC__ASSERT(track_num < object->data.cue_sheet.num_tracks);
1652
1653 cs = &object->data.cue_sheet;
1654
1655 /* free the track at track_num */
Erik de Castro Lopob105f9a2015-07-04 12:19:29 +10001656 free(cs->tracks[track_num].indices);
Josh Coalson8e9c4512002-11-14 05:00:24 +00001657
1658 /* move all tracks > track_num backward one space */
1659 memmove(&cs->tracks[track_num], &cs->tracks[track_num+1], sizeof(FLAC__StreamMetadata_CueSheet_Track)*(cs->num_tracks-track_num-1));
1660 cs->tracks[cs->num_tracks-1].num_indices = 0;
1661 cs->tracks[cs->num_tracks-1].indices = 0;
1662
1663 return FLAC__metadata_object_cuesheet_resize_tracks(object, cs->num_tracks-1);
1664}
1665
1666FLAC_API FLAC__bool FLAC__metadata_object_cuesheet_is_legal(const FLAC__StreamMetadata *object, FLAC__bool check_cd_da_subset, const char **violation)
1667{
1668 FLAC__ASSERT(0 != object);
1669 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_CUESHEET);
1670
1671 return FLAC__format_cuesheet_is_legal(&object->data.cue_sheet, check_cd_da_subset, violation);
1672}
Josh Coalson7cfac0b2006-04-10 05:37:34 +00001673
1674static FLAC__uint64 get_index_01_offset_(const FLAC__StreamMetadata_CueSheet *cs, unsigned track)
1675{
1676 if (track >= (cs->num_tracks-1) || cs->tracks[track].num_indices < 1)
1677 return 0;
1678 else if (cs->tracks[track].indices[0].number == 1)
1679 return cs->tracks[track].indices[0].offset + cs->tracks[track].offset + cs->lead_in;
1680 else if (cs->tracks[track].num_indices < 2)
1681 return 0;
1682 else if (cs->tracks[track].indices[1].number == 1)
1683 return cs->tracks[track].indices[1].offset + cs->tracks[track].offset + cs->lead_in;
1684 else
1685 return 0;
1686}
1687
1688static FLAC__uint32 cddb_add_digits_(FLAC__uint32 x)
1689{
1690 FLAC__uint32 n = 0;
1691 while (x) {
1692 n += (x%10);
1693 x /= 10;
1694 }
1695 return n;
1696}
1697
Josh Coalson504dcaf2007-09-13 15:42:47 +00001698/*@@@@add to tests*/
Josh Coalson7cfac0b2006-04-10 05:37:34 +00001699FLAC_API FLAC__uint32 FLAC__metadata_object_cuesheet_calculate_cddb_id(const FLAC__StreamMetadata *object)
1700{
1701 const FLAC__StreamMetadata_CueSheet *cs;
1702
1703 FLAC__ASSERT(0 != object);
1704 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_CUESHEET);
1705
1706 cs = &object->data.cue_sheet;
1707
1708 if (cs->num_tracks < 2) /* need at least one real track and the lead-out track */
1709 return 0;
1710
1711 {
1712 FLAC__uint32 i, length, sum = 0;
1713 for (i = 0; i < (cs->num_tracks-1); i++) /* -1 to avoid counting the lead-out */
1714 sum += cddb_add_digits_((FLAC__uint32)(get_index_01_offset_(cs, i) / 44100));
1715 length = (FLAC__uint32)((cs->tracks[cs->num_tracks-1].offset+cs->lead_in) / 44100) - (FLAC__uint32)(get_index_01_offset_(cs, 0) / 44100);
1716
1717 return (sum % 0xFF) << 24 | length << 8 | (FLAC__uint32)(cs->num_tracks-1);
1718 }
1719}
Josh Coalsone343ab22006-09-23 19:21:19 +00001720
1721FLAC_API FLAC__bool FLAC__metadata_object_picture_set_mime_type(FLAC__StreamMetadata *object, char *mime_type, FLAC__bool copy)
1722{
1723 char *old;
1724 size_t old_length, new_length;
1725
1726 FLAC__ASSERT(0 != object);
1727 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_PICTURE);
1728 FLAC__ASSERT(0 != mime_type);
1729
1730 old = object->data.picture.mime_type;
1731 old_length = old? strlen(old) : 0;
1732 new_length = strlen(mime_type);
1733
1734 /* do the copy first so that if we fail we leave the object untouched */
1735 if(copy) {
Josh Coalson0f008d22007-09-11 04:49:56 +00001736 if(new_length >= SIZE_MAX) /* overflow check */
1737 return false;
Josh Coalsone343ab22006-09-23 19:21:19 +00001738 if(!copy_bytes_((FLAC__byte**)(&object->data.picture.mime_type), (FLAC__byte*)mime_type, new_length+1))
1739 return false;
1740 }
1741 else {
1742 object->data.picture.mime_type = mime_type;
1743 }
1744
Erik de Castro Lopob105f9a2015-07-04 12:19:29 +10001745 free(old);
Josh Coalsone343ab22006-09-23 19:21:19 +00001746
1747 object->length -= old_length;
1748 object->length += new_length;
1749 return true;
1750}
1751
1752FLAC_API FLAC__bool FLAC__metadata_object_picture_set_description(FLAC__StreamMetadata *object, FLAC__byte *description, FLAC__bool copy)
1753{
1754 FLAC__byte *old;
1755 size_t old_length, new_length;
1756
1757 FLAC__ASSERT(0 != object);
1758 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_PICTURE);
1759 FLAC__ASSERT(0 != description);
1760
1761 old = object->data.picture.description;
1762 old_length = old? strlen((const char *)old) : 0;
1763 new_length = strlen((const char *)description);
1764
1765 /* do the copy first so that if we fail we leave the object untouched */
1766 if(copy) {
Josh Coalson0f008d22007-09-11 04:49:56 +00001767 if(new_length >= SIZE_MAX) /* overflow check */
1768 return false;
Josh Coalsone343ab22006-09-23 19:21:19 +00001769 if(!copy_bytes_(&object->data.picture.description, description, new_length+1))
1770 return false;
1771 }
1772 else {
1773 object->data.picture.description = description;
1774 }
1775
Erik de Castro Lopob105f9a2015-07-04 12:19:29 +10001776 free(old);
Josh Coalsone343ab22006-09-23 19:21:19 +00001777
1778 object->length -= old_length;
1779 object->length += new_length;
1780 return true;
1781}
1782
1783FLAC_API FLAC__bool FLAC__metadata_object_picture_set_data(FLAC__StreamMetadata *object, FLAC__byte *data, FLAC__uint32 length, FLAC__bool copy)
1784{
1785 FLAC__byte *old;
1786
1787 FLAC__ASSERT(0 != object);
1788 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_PICTURE);
1789 FLAC__ASSERT((0 != data && length > 0) || (0 == data && length == 0 && copy == false));
1790
1791 old = object->data.picture.data;
1792
1793 /* do the copy first so that if we fail we leave the object untouched */
1794 if(copy) {
1795 if(!copy_bytes_(&object->data.picture.data, data, length))
1796 return false;
1797 }
1798 else {
1799 object->data.picture.data = data;
1800 }
1801
Erik de Castro Lopob105f9a2015-07-04 12:19:29 +10001802 free(old);
Josh Coalsone343ab22006-09-23 19:21:19 +00001803
1804 object->length -= object->data.picture.data_length;
1805 object->data.picture.data_length = length;
1806 object->length += length;
1807 return true;
1808}
1809
1810FLAC_API FLAC__bool FLAC__metadata_object_picture_is_legal(const FLAC__StreamMetadata *object, const char **violation)
1811{
1812 FLAC__ASSERT(0 != object);
1813 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_PICTURE);
1814
1815 return FLAC__format_picture_is_legal(&object->data.picture, violation);
1816}