blob: 909dab58e5dbc3817c098a0d24a28c022df2834b [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) {
Erik de Castro Lopod939b442015-07-05 20:54:28 +1000570 FLAC__ASSERT(0 == object->data.vorbis_comment.comments);
Josh Coalson90ced912002-05-30 05:23:38 +0000571 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) {
Erik de Castro Lopoff507792015-07-05 21:21:44 +1000577 to->data.vorbis_comment.num_comments = 0;
Josh Coalson90ced912002-05-30 05:23:38 +0000578 FLAC__metadata_object_delete(to);
579 return 0;
580 }
581 }
582 to->data.vorbis_comment.num_comments = object->data.vorbis_comment.num_comments;
583 break;
Josh Coalson8e9c4512002-11-14 05:00:24 +0000584 case FLAC__METADATA_TYPE_CUESHEET:
585 memcpy(&to->data.cue_sheet, &object->data.cue_sheet, sizeof(FLAC__StreamMetadata_CueSheet));
586 if(object->data.cue_sheet.num_tracks == 0) {
587 FLAC__ASSERT(0 == object->data.cue_sheet.tracks);
588 }
589 else {
590 FLAC__ASSERT(0 != object->data.cue_sheet.tracks);
591 to->data.cue_sheet.tracks = cuesheet_track_array_copy_(object->data.cue_sheet.tracks, object->data.cue_sheet.num_tracks);
592 if(0 == to->data.cue_sheet.tracks) {
593 FLAC__metadata_object_delete(to);
594 return 0;
595 }
596 }
597 break;
Josh Coalsone343ab22006-09-23 19:21:19 +0000598 case FLAC__METADATA_TYPE_PICTURE:
599 to->data.picture.type = object->data.picture.type;
600 if(!copy_cstring_(&to->data.picture.mime_type, object->data.picture.mime_type)) {
601 FLAC__metadata_object_delete(to);
602 return 0;
603 }
604 if(!copy_cstring_((char**)(&to->data.picture.description), (const char*)object->data.picture.description)) {
605 FLAC__metadata_object_delete(to);
606 return 0;
607 }
608 to->data.picture.width = object->data.picture.width;
609 to->data.picture.height = object->data.picture.height;
610 to->data.picture.depth = object->data.picture.depth;
Josh Coalson74ed2942006-09-23 23:15:05 +0000611 to->data.picture.colors = object->data.picture.colors;
Josh Coalsone343ab22006-09-23 19:21:19 +0000612 to->data.picture.data_length = object->data.picture.data_length;
613 if(!copy_bytes_((&to->data.picture.data), object->data.picture.data, object->data.picture.data_length)) {
614 FLAC__metadata_object_delete(to);
615 return 0;
616 }
617 break;
Josh Coalson90ced912002-05-30 05:23:38 +0000618 default:
Josh Coalsond0609472003-01-10 05:37:13 +0000619 if(!copy_bytes_(&to->data.unknown.data, object->data.unknown.data, object->length)) {
620 FLAC__metadata_object_delete(to);
621 return 0;
622 }
623 break;
Josh Coalson90ced912002-05-30 05:23:38 +0000624 }
625 }
626
627 return to;
628}
629
Josh Coalsoncc682512002-06-08 04:53:42 +0000630void FLAC__metadata_object_delete_data(FLAC__StreamMetadata *object)
Josh Coalson90ced912002-05-30 05:23:38 +0000631{
632 FLAC__ASSERT(0 != object);
633
634 switch(object->type) {
635 case FLAC__METADATA_TYPE_STREAMINFO:
636 case FLAC__METADATA_TYPE_PADDING:
637 break;
638 case FLAC__METADATA_TYPE_APPLICATION:
Josh Coalson4fa90592002-12-04 07:01:37 +0000639 if(0 != object->data.application.data) {
Josh Coalson90ced912002-05-30 05:23:38 +0000640 free(object->data.application.data);
Josh Coalson4fa90592002-12-04 07:01:37 +0000641 object->data.application.data = 0;
642 }
Josh Coalson90ced912002-05-30 05:23:38 +0000643 break;
644 case FLAC__METADATA_TYPE_SEEKTABLE:
Josh Coalson4fa90592002-12-04 07:01:37 +0000645 if(0 != object->data.seek_table.points) {
Josh Coalson90ced912002-05-30 05:23:38 +0000646 free(object->data.seek_table.points);
Josh Coalson4fa90592002-12-04 07:01:37 +0000647 object->data.seek_table.points = 0;
648 }
Josh Coalson90ced912002-05-30 05:23:38 +0000649 break;
650 case FLAC__METADATA_TYPE_VORBIS_COMMENT:
Josh Coalson4fa90592002-12-04 07:01:37 +0000651 if(0 != object->data.vorbis_comment.vendor_string.entry) {
Josh Coalson90ced912002-05-30 05:23:38 +0000652 free(object->data.vorbis_comment.vendor_string.entry);
Josh Coalson4fa90592002-12-04 07:01:37 +0000653 object->data.vorbis_comment.vendor_string.entry = 0;
654 }
Josh Coalson90ced912002-05-30 05:23:38 +0000655 if(0 != object->data.vorbis_comment.comments) {
656 FLAC__ASSERT(object->data.vorbis_comment.num_comments > 0);
657 vorbiscomment_entry_array_delete_(object->data.vorbis_comment.comments, object->data.vorbis_comment.num_comments);
Erik de Castro Lopo0cacc0c2015-07-06 21:30:55 +1000658 object->data.vorbis_comment.comments = 0;
659 object->data.vorbis_comment.num_comments = 0;
Josh Coalson90ced912002-05-30 05:23:38 +0000660 }
661 break;
Josh Coalson8e9c4512002-11-14 05:00:24 +0000662 case FLAC__METADATA_TYPE_CUESHEET:
663 if(0 != object->data.cue_sheet.tracks) {
664 FLAC__ASSERT(object->data.cue_sheet.num_tracks > 0);
665 cuesheet_track_array_delete_(object->data.cue_sheet.tracks, object->data.cue_sheet.num_tracks);
Erik de Castro Lopo0cacc0c2015-07-06 21:30:55 +1000666 object->data.cue_sheet.tracks = 0;
667 object->data.cue_sheet.num_tracks = 0;
Josh Coalson8e9c4512002-11-14 05:00:24 +0000668 }
669 break;
Josh Coalsone343ab22006-09-23 19:21:19 +0000670 case FLAC__METADATA_TYPE_PICTURE:
671 if(0 != object->data.picture.mime_type) {
672 free(object->data.picture.mime_type);
673 object->data.picture.mime_type = 0;
674 }
675 if(0 != object->data.picture.description) {
676 free(object->data.picture.description);
677 object->data.picture.description = 0;
678 }
679 if(0 != object->data.picture.data) {
680 free(object->data.picture.data);
681 object->data.picture.data = 0;
682 }
683 break;
Josh Coalson90ced912002-05-30 05:23:38 +0000684 default:
Josh Coalsond0609472003-01-10 05:37:13 +0000685 if(0 != object->data.unknown.data) {
686 free(object->data.unknown.data);
687 object->data.unknown.data = 0;
688 }
689 break;
Josh Coalson90ced912002-05-30 05:23:38 +0000690 }
691}
692
Josh Coalson6afed9f2002-10-16 22:29:47 +0000693FLAC_API void FLAC__metadata_object_delete(FLAC__StreamMetadata *object)
Josh Coalson90ced912002-05-30 05:23:38 +0000694{
695 FLAC__metadata_object_delete_data(object);
696 free(object);
697}
698
Josh Coalsoncc682512002-06-08 04:53:42 +0000699static FLAC__bool compare_block_data_streaminfo_(const FLAC__StreamMetadata_StreamInfo *block1, const FLAC__StreamMetadata_StreamInfo *block2)
Josh Coalson57ba6f42002-06-07 05:27:37 +0000700{
701 if(block1->min_blocksize != block2->min_blocksize)
702 return false;
703 if(block1->max_blocksize != block2->max_blocksize)
704 return false;
705 if(block1->min_framesize != block2->min_framesize)
706 return false;
707 if(block1->max_framesize != block2->max_framesize)
708 return false;
709 if(block1->sample_rate != block2->sample_rate)
710 return false;
711 if(block1->channels != block2->channels)
712 return false;
713 if(block1->bits_per_sample != block2->bits_per_sample)
714 return false;
715 if(block1->total_samples != block2->total_samples)
716 return false;
717 if(0 != memcmp(block1->md5sum, block2->md5sum, 16))
718 return false;
719 return true;
720}
721
Josh Coalsoncc682512002-06-08 04:53:42 +0000722static 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 +0000723{
724 FLAC__ASSERT(0 != block1);
725 FLAC__ASSERT(0 != block2);
726 FLAC__ASSERT(block_length >= sizeof(block1->id));
727
728 if(0 != memcmp(block1->id, block2->id, sizeof(block1->id)))
729 return false;
730 if(0 != block1->data && 0 != block2->data)
731 return 0 == memcmp(block1->data, block2->data, block_length - sizeof(block1->id));
732 else
733 return block1->data == block2->data;
734}
735
Josh Coalsoncc682512002-06-08 04:53:42 +0000736static FLAC__bool compare_block_data_seektable_(const FLAC__StreamMetadata_SeekTable *block1, const FLAC__StreamMetadata_SeekTable *block2)
Josh Coalson57ba6f42002-06-07 05:27:37 +0000737{
738 unsigned i;
739
740 FLAC__ASSERT(0 != block1);
741 FLAC__ASSERT(0 != block2);
742
743 if(block1->num_points != block2->num_points)
744 return false;
745
746 if(0 != block1->points && 0 != block2->points) {
747 for(i = 0; i < block1->num_points; i++) {
748 if(block1->points[i].sample_number != block2->points[i].sample_number)
749 return false;
750 if(block1->points[i].stream_offset != block2->points[i].stream_offset)
751 return false;
752 if(block1->points[i].frame_samples != block2->points[i].frame_samples)
753 return false;
754 }
755 return true;
756 }
757 else
758 return block1->points == block2->points;
759}
760
Josh Coalsoncc682512002-06-08 04:53:42 +0000761static FLAC__bool compare_block_data_vorbiscomment_(const FLAC__StreamMetadata_VorbisComment *block1, const FLAC__StreamMetadata_VorbisComment *block2)
Josh Coalson57ba6f42002-06-07 05:27:37 +0000762{
763 unsigned i;
764
765 if(block1->vendor_string.length != block2->vendor_string.length)
766 return false;
767
768 if(0 != block1->vendor_string.entry && 0 != block2->vendor_string.entry) {
769 if(0 != memcmp(block1->vendor_string.entry, block2->vendor_string.entry, block1->vendor_string.length))
770 return false;
771 }
772 else if(block1->vendor_string.entry != block2->vendor_string.entry)
773 return false;
774
775 if(block1->num_comments != block2->num_comments)
776 return false;
777
778 for(i = 0; i < block1->num_comments; i++) {
779 if(0 != block1->comments[i].entry && 0 != block2->comments[i].entry) {
780 if(0 != memcmp(block1->comments[i].entry, block2->comments[i].entry, block1->comments[i].length))
781 return false;
782 }
783 else if(block1->comments[i].entry != block2->comments[i].entry)
784 return false;
785 }
786 return true;
787}
788
Josh Coalson8e9c4512002-11-14 05:00:24 +0000789static FLAC__bool compare_block_data_cuesheet_(const FLAC__StreamMetadata_CueSheet *block1, const FLAC__StreamMetadata_CueSheet *block2)
790{
791 unsigned i, j;
792
793 if(0 != strcmp(block1->media_catalog_number, block2->media_catalog_number))
794 return false;
795
796 if(block1->lead_in != block2->lead_in)
797 return false;
798
Josh Coalson8f0c71b2002-12-05 06:37:46 +0000799 if(block1->is_cd != block2->is_cd)
800 return false;
801
Josh Coalson8e9c4512002-11-14 05:00:24 +0000802 if(block1->num_tracks != block2->num_tracks)
803 return false;
804
805 if(0 != block1->tracks && 0 != block2->tracks) {
806 FLAC__ASSERT(block1->num_tracks > 0);
807 for(i = 0; i < block1->num_tracks; i++) {
808 if(block1->tracks[i].offset != block2->tracks[i].offset)
809 return false;
810 if(block1->tracks[i].number != block2->tracks[i].number)
811 return false;
812 if(0 != memcmp(block1->tracks[i].isrc, block2->tracks[i].isrc, sizeof(block1->tracks[i].isrc)))
813 return false;
814 if(block1->tracks[i].type != block2->tracks[i].type)
815 return false;
816 if(block1->tracks[i].pre_emphasis != block2->tracks[i].pre_emphasis)
817 return false;
818 if(block1->tracks[i].num_indices != block2->tracks[i].num_indices)
819 return false;
820 if(0 != block1->tracks[i].indices && 0 != block2->tracks[i].indices) {
821 FLAC__ASSERT(block1->tracks[i].num_indices > 0);
822 for(j = 0; j < block1->tracks[i].num_indices; j++) {
823 if(block1->tracks[i].indices[j].offset != block2->tracks[i].indices[j].offset)
824 return false;
825 if(block1->tracks[i].indices[j].number != block2->tracks[i].indices[j].number)
826 return false;
827 }
828 }
829 else if(block1->tracks[i].indices != block2->tracks[i].indices)
830 return false;
831 }
832 }
833 else if(block1->tracks != block2->tracks)
834 return false;
835 return true;
836}
837
Josh Coalsone343ab22006-09-23 19:21:19 +0000838static FLAC__bool compare_block_data_picture_(const FLAC__StreamMetadata_Picture *block1, const FLAC__StreamMetadata_Picture *block2)
839{
840 if(block1->type != block2->type)
841 return false;
842 if(block1->mime_type != block2->mime_type && (0 == block1->mime_type || 0 == block2->mime_type || strcmp(block1->mime_type, block2->mime_type)))
843 return false;
844 if(block1->description != block2->description && (0 == block1->description || 0 == block2->description || strcmp((const char *)block1->description, (const char *)block2->description)))
845 return false;
846 if(block1->width != block2->width)
847 return false;
848 if(block1->height != block2->height)
849 return false;
850 if(block1->depth != block2->depth)
851 return false;
Josh Coalson74ed2942006-09-23 23:15:05 +0000852 if(block1->colors != block2->colors)
853 return false;
Josh Coalsone343ab22006-09-23 19:21:19 +0000854 if(block1->data_length != block2->data_length)
855 return false;
856 if(block1->data != block2->data && (0 == block1->data || 0 == block2->data || memcmp(block1->data, block2->data, block1->data_length)))
857 return false;
858 return true;
859}
860
Josh Coalsond0609472003-01-10 05:37:13 +0000861static FLAC__bool compare_block_data_unknown_(const FLAC__StreamMetadata_Unknown *block1, const FLAC__StreamMetadata_Unknown *block2, unsigned block_length)
862{
863 FLAC__ASSERT(0 != block1);
864 FLAC__ASSERT(0 != block2);
865
866 if(0 != block1->data && 0 != block2->data)
867 return 0 == memcmp(block1->data, block2->data, block_length);
868 else
869 return block1->data == block2->data;
870}
871
Josh Coalson6afed9f2002-10-16 22:29:47 +0000872FLAC_API FLAC__bool FLAC__metadata_object_is_equal(const FLAC__StreamMetadata *block1, const FLAC__StreamMetadata *block2)
Josh Coalson57ba6f42002-06-07 05:27:37 +0000873{
Josh Coalsond8ab3462002-07-11 05:54:05 +0000874 FLAC__ASSERT(0 != block1);
875 FLAC__ASSERT(0 != block2);
876
Josh Coalson57ba6f42002-06-07 05:27:37 +0000877 if(block1->type != block2->type) {
878 return false;
Josh Coalson5a5de732002-08-01 06:37:11 +0000879 }
Josh Coalson57ba6f42002-06-07 05:27:37 +0000880 if(block1->is_last != block2->is_last) {
881 return false;
Josh Coalson5a5de732002-08-01 06:37:11 +0000882 }
Josh Coalson57ba6f42002-06-07 05:27:37 +0000883 if(block1->length != block2->length) {
884 return false;
Josh Coalson5a5de732002-08-01 06:37:11 +0000885 }
Josh Coalson57ba6f42002-06-07 05:27:37 +0000886 switch(block1->type) {
887 case FLAC__METADATA_TYPE_STREAMINFO:
888 return compare_block_data_streaminfo_(&block1->data.stream_info, &block2->data.stream_info);
889 case FLAC__METADATA_TYPE_PADDING:
890 return true; /* we don't compare the padding guts */
891 case FLAC__METADATA_TYPE_APPLICATION:
892 return compare_block_data_application_(&block1->data.application, &block2->data.application, block1->length);
893 case FLAC__METADATA_TYPE_SEEKTABLE:
894 return compare_block_data_seektable_(&block1->data.seek_table, &block2->data.seek_table);
895 case FLAC__METADATA_TYPE_VORBIS_COMMENT:
896 return compare_block_data_vorbiscomment_(&block1->data.vorbis_comment, &block2->data.vorbis_comment);
Josh Coalson8e9c4512002-11-14 05:00:24 +0000897 case FLAC__METADATA_TYPE_CUESHEET:
898 return compare_block_data_cuesheet_(&block1->data.cue_sheet, &block2->data.cue_sheet);
Josh Coalsone343ab22006-09-23 19:21:19 +0000899 case FLAC__METADATA_TYPE_PICTURE:
900 return compare_block_data_picture_(&block1->data.picture, &block2->data.picture);
Josh Coalson57ba6f42002-06-07 05:27:37 +0000901 default:
Josh Coalsond0609472003-01-10 05:37:13 +0000902 return compare_block_data_unknown_(&block1->data.unknown, &block2->data.unknown, block1->length);
Josh Coalson57ba6f42002-06-07 05:27:37 +0000903 }
904}
905
Josh Coalson6afed9f2002-10-16 22:29:47 +0000906FLAC_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 +0000907{
908 FLAC__byte *save;
909
Josh Coalsond8ab3462002-07-11 05:54:05 +0000910 FLAC__ASSERT(0 != object);
Josh Coalson90ced912002-05-30 05:23:38 +0000911 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_APPLICATION);
912 FLAC__ASSERT((0 != data && length > 0) || (0 == data && length == 0 && copy == false));
913
914 save = object->data.application.data;
915
916 /* do the copy first so that if we fail we leave the object untouched */
917 if(copy) {
918 if(!copy_bytes_(&object->data.application.data, data, length))
919 return false;
920 }
921 else {
922 object->data.application.data = data;
923 }
924
Erik de Castro Lopob105f9a2015-07-04 12:19:29 +1000925 free(save);
Josh Coalson90ced912002-05-30 05:23:38 +0000926
927 object->length = FLAC__STREAM_METADATA_APPLICATION_ID_LEN / 8 + length;
928 return true;
929}
930
Josh Coalson6afed9f2002-10-16 22:29:47 +0000931FLAC_API FLAC__bool FLAC__metadata_object_seektable_resize_points(FLAC__StreamMetadata *object, unsigned new_num_points)
Josh Coalson90ced912002-05-30 05:23:38 +0000932{
933 FLAC__ASSERT(0 != object);
934 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_SEEKTABLE);
935
936 if(0 == object->data.seek_table.points) {
937 FLAC__ASSERT(object->data.seek_table.num_points == 0);
938 if(0 == new_num_points)
939 return true;
940 else if(0 == (object->data.seek_table.points = seekpoint_array_new_(new_num_points)))
941 return false;
942 }
943 else {
Josh Coalson0f008d22007-09-11 04:49:56 +0000944 const size_t old_size = object->data.seek_table.num_points * sizeof(FLAC__StreamMetadata_SeekPoint);
945 const size_t new_size = new_num_points * sizeof(FLAC__StreamMetadata_SeekPoint);
946
947 /* overflow check */
Erik de Castro Lopo587e1182012-02-17 17:52:12 +1100948 if(new_num_points > UINT32_MAX / sizeof(FLAC__StreamMetadata_SeekPoint))
Josh Coalson0f008d22007-09-11 04:49:56 +0000949 return false;
Josh Coalson90ced912002-05-30 05:23:38 +0000950
951 FLAC__ASSERT(object->data.seek_table.num_points > 0);
952
953 if(new_size == 0) {
954 free(object->data.seek_table.points);
955 object->data.seek_table.points = 0;
956 }
Erik de Castro Lopo6c2040d2012-04-04 21:29:25 +1000957 else if(0 == (object->data.seek_table.points = realloc(object->data.seek_table.points, new_size)))
Josh Coalson90ced912002-05-30 05:23:38 +0000958 return false;
959
960 /* if growing, set new elements to placeholders */
961 if(new_size > old_size) {
962 unsigned i;
963 for(i = object->data.seek_table.num_points; i < new_num_points; i++) {
964 object->data.seek_table.points[i].sample_number = FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER;
965 object->data.seek_table.points[i].stream_offset = 0;
966 object->data.seek_table.points[i].frame_samples = 0;
967 }
968 }
969 }
970
971 object->data.seek_table.num_points = new_num_points;
972
973 seektable_calculate_length_(object);
974 return true;
975}
976
Josh Coalson6afed9f2002-10-16 22:29:47 +0000977FLAC_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 +0000978{
979 FLAC__ASSERT(0 != object);
980 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_SEEKTABLE);
Josh Coalson8e9c4512002-11-14 05:00:24 +0000981 FLAC__ASSERT(point_num < object->data.seek_table.num_points);
Josh Coalson90ced912002-05-30 05:23:38 +0000982
983 object->data.seek_table.points[point_num] = point;
984}
985
Josh Coalson6afed9f2002-10-16 22:29:47 +0000986FLAC_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 +0000987{
988 int i;
989
990 FLAC__ASSERT(0 != object);
Josh Coalson6b8e5302002-05-31 06:23:09 +0000991 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_SEEKTABLE);
Josh Coalson8e9c4512002-11-14 05:00:24 +0000992 FLAC__ASSERT(point_num <= object->data.seek_table.num_points);
Josh Coalson90ced912002-05-30 05:23:38 +0000993
994 if(!FLAC__metadata_object_seektable_resize_points(object, object->data.seek_table.num_points+1))
995 return false;
996
997 /* move all points >= point_num forward one space */
998 for(i = (int)object->data.seek_table.num_points-1; i > (int)point_num; i--)
999 object->data.seek_table.points[i] = object->data.seek_table.points[i-1];
1000
1001 FLAC__metadata_object_seektable_set_point(object, point_num, point);
1002 seektable_calculate_length_(object);
1003 return true;
1004}
1005
Josh Coalson6afed9f2002-10-16 22:29:47 +00001006FLAC_API FLAC__bool FLAC__metadata_object_seektable_delete_point(FLAC__StreamMetadata *object, unsigned point_num)
Josh Coalson90ced912002-05-30 05:23:38 +00001007{
1008 unsigned i;
1009
1010 FLAC__ASSERT(0 != object);
1011 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_SEEKTABLE);
Josh Coalson8e9c4512002-11-14 05:00:24 +00001012 FLAC__ASSERT(point_num < object->data.seek_table.num_points);
Josh Coalson90ced912002-05-30 05:23:38 +00001013
1014 /* move all points > point_num backward one space */
1015 for(i = point_num; i < object->data.seek_table.num_points-1; i++)
1016 object->data.seek_table.points[i] = object->data.seek_table.points[i+1];
1017
1018 return FLAC__metadata_object_seektable_resize_points(object, object->data.seek_table.num_points-1);
1019}
1020
Josh Coalson6afed9f2002-10-16 22:29:47 +00001021FLAC_API FLAC__bool FLAC__metadata_object_seektable_is_legal(const FLAC__StreamMetadata *object)
Josh Coalson28e08d82002-06-05 05:56:41 +00001022{
Josh Coalson28e08d82002-06-05 05:56:41 +00001023 FLAC__ASSERT(0 != object);
1024 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_SEEKTABLE);
1025
Josh Coalson0833f342002-07-15 05:31:55 +00001026 return FLAC__format_seektable_is_legal(&object->data.seek_table);
Josh Coalson28e08d82002-06-05 05:56:41 +00001027}
1028
Josh Coalson6afed9f2002-10-16 22:29:47 +00001029FLAC_API FLAC__bool FLAC__metadata_object_seektable_template_append_placeholders(FLAC__StreamMetadata *object, unsigned num)
Josh Coalson5a5de732002-08-01 06:37:11 +00001030{
1031 FLAC__ASSERT(0 != object);
1032 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_SEEKTABLE);
1033
1034 if(num > 0)
1035 /* WATCHOUT: we rely on the fact that growing the array adds PLACEHOLDERS at the end */
1036 return FLAC__metadata_object_seektable_resize_points(object, object->data.seek_table.num_points + num);
1037 else
1038 return true;
1039}
1040
Josh Coalson6afed9f2002-10-16 22:29:47 +00001041FLAC_API FLAC__bool FLAC__metadata_object_seektable_template_append_point(FLAC__StreamMetadata *object, FLAC__uint64 sample_number)
Josh Coalson5a5de732002-08-01 06:37:11 +00001042{
1043 FLAC__StreamMetadata_SeekTable *seek_table;
1044
1045 FLAC__ASSERT(0 != object);
1046 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_SEEKTABLE);
1047
1048 seek_table = &object->data.seek_table;
1049
1050 if(!FLAC__metadata_object_seektable_resize_points(object, seek_table->num_points + 1))
1051 return false;
1052
1053 seek_table->points[seek_table->num_points - 1].sample_number = sample_number;
1054 seek_table->points[seek_table->num_points - 1].stream_offset = 0;
1055 seek_table->points[seek_table->num_points - 1].frame_samples = 0;
1056
1057 return true;
1058}
1059
Josh Coalson6afed9f2002-10-16 22:29:47 +00001060FLAC_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 +00001061{
1062 FLAC__ASSERT(0 != object);
1063 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_SEEKTABLE);
1064 FLAC__ASSERT(0 != sample_numbers || num == 0);
1065
1066 if(num > 0) {
1067 FLAC__StreamMetadata_SeekTable *seek_table = &object->data.seek_table;
1068 unsigned i, j;
1069
1070 i = seek_table->num_points;
1071
1072 if(!FLAC__metadata_object_seektable_resize_points(object, seek_table->num_points + num))
1073 return false;
1074
1075 for(j = 0; j < num; i++, j++) {
1076 seek_table->points[i].sample_number = sample_numbers[j];
1077 seek_table->points[i].stream_offset = 0;
1078 seek_table->points[i].frame_samples = 0;
1079 }
1080 }
1081
1082 return true;
1083}
1084
Josh Coalson6afed9f2002-10-16 22:29:47 +00001085FLAC_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 +00001086{
1087 FLAC__ASSERT(0 != object);
1088 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_SEEKTABLE);
1089 FLAC__ASSERT(total_samples > 0);
1090
Josh Coalson6b21f662006-09-13 01:42:27 +00001091 if(num > 0 && total_samples > 0) {
Josh Coalson5a5de732002-08-01 06:37:11 +00001092 FLAC__StreamMetadata_SeekTable *seek_table = &object->data.seek_table;
1093 unsigned i, j;
1094
1095 i = seek_table->num_points;
1096
1097 if(!FLAC__metadata_object_seektable_resize_points(object, seek_table->num_points + num))
1098 return false;
1099
1100 for(j = 0; j < num; i++, j++) {
1101 seek_table->points[i].sample_number = total_samples * (FLAC__uint64)j / (FLAC__uint64)num;
1102 seek_table->points[i].stream_offset = 0;
1103 seek_table->points[i].frame_samples = 0;
1104 }
1105 }
1106
1107 return true;
1108}
1109
Josh Coalson6b21f662006-09-13 01:42:27 +00001110FLAC_API FLAC__bool FLAC__metadata_object_seektable_template_append_spaced_points_by_samples(FLAC__StreamMetadata *object, unsigned samples, FLAC__uint64 total_samples)
1111{
1112 FLAC__ASSERT(0 != object);
1113 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_SEEKTABLE);
1114 FLAC__ASSERT(samples > 0);
1115 FLAC__ASSERT(total_samples > 0);
1116
1117 if(samples > 0 && total_samples > 0) {
1118 FLAC__StreamMetadata_SeekTable *seek_table = &object->data.seek_table;
1119 unsigned i, j;
1120 FLAC__uint64 num, sample;
1121
1122 num = 1 + total_samples / samples; /* 1+ for the first sample at 0 */
1123 /* now account for the fact that we don't place a seekpoint at "total_samples" since samples are number from 0: */
1124 if(total_samples % samples == 0)
1125 num--;
1126
Erik de Castro Lopoc431a6c2015-02-21 07:05:21 +11001127 /* Put a strict upper bound on the number of allowed seek points. */
Erik de Castro Lopo033af7b2015-02-18 17:55:52 +11001128 if (num > 32768) {
1129 /* Set the bound and recalculate samples accordingly. */
1130 num = 32786;
1131 samples = total_samples / num;
1132 }
1133
Josh Coalson6b21f662006-09-13 01:42:27 +00001134 i = seek_table->num_points;
1135
Josh Coalsona65fd932006-10-03 01:02:44 +00001136 if(!FLAC__metadata_object_seektable_resize_points(object, seek_table->num_points + (unsigned)num))
Josh Coalson6b21f662006-09-13 01:42:27 +00001137 return false;
1138
1139 sample = 0;
1140 for(j = 0; j < num; i++, j++, sample += samples) {
1141 seek_table->points[i].sample_number = sample;
1142 seek_table->points[i].stream_offset = 0;
1143 seek_table->points[i].frame_samples = 0;
1144 }
1145 }
1146
1147 return true;
1148}
1149
Josh Coalson6afed9f2002-10-16 22:29:47 +00001150FLAC_API FLAC__bool FLAC__metadata_object_seektable_template_sort(FLAC__StreamMetadata *object, FLAC__bool compact)
Josh Coalson5a5de732002-08-01 06:37:11 +00001151{
1152 unsigned unique;
1153
1154 FLAC__ASSERT(0 != object);
1155 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_SEEKTABLE);
1156
1157 unique = FLAC__format_seektable_sort(&object->data.seek_table);
1158
1159 return !compact || FLAC__metadata_object_seektable_resize_points(object, unique);
1160}
1161
Josh Coalson6afed9f2002-10-16 22:29:47 +00001162FLAC_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 +00001163{
Josh Coalson2de11242004-12-30 03:41:19 +00001164 if(!FLAC__format_vorbiscomment_entry_value_is_legal(entry.entry, entry.length))
1165 return false;
Josh Coalson6b8e5302002-05-31 06:23:09 +00001166 return vorbiscomment_set_entry_(object, &object->data.vorbis_comment.vendor_string, &entry, copy);
Josh Coalson90ced912002-05-30 05:23:38 +00001167}
1168
Josh Coalson6afed9f2002-10-16 22:29:47 +00001169FLAC_API FLAC__bool FLAC__metadata_object_vorbiscomment_resize_comments(FLAC__StreamMetadata *object, unsigned new_num_comments)
Josh Coalson90ced912002-05-30 05:23:38 +00001170{
1171 FLAC__ASSERT(0 != object);
1172 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_VORBIS_COMMENT);
1173
1174 if(0 == object->data.vorbis_comment.comments) {
1175 FLAC__ASSERT(object->data.vorbis_comment.num_comments == 0);
1176 if(0 == new_num_comments)
1177 return true;
1178 else if(0 == (object->data.vorbis_comment.comments = vorbiscomment_entry_array_new_(new_num_comments)))
1179 return false;
1180 }
1181 else {
Josh Coalson0f008d22007-09-11 04:49:56 +00001182 const size_t old_size = object->data.vorbis_comment.num_comments * sizeof(FLAC__StreamMetadata_VorbisComment_Entry);
1183 const size_t new_size = new_num_comments * sizeof(FLAC__StreamMetadata_VorbisComment_Entry);
1184
1185 /* overflow check */
Erik de Castro Lopo587e1182012-02-17 17:52:12 +11001186 if(new_num_comments > UINT32_MAX / sizeof(FLAC__StreamMetadata_VorbisComment_Entry))
Josh Coalson0f008d22007-09-11 04:49:56 +00001187 return false;
Josh Coalson90ced912002-05-30 05:23:38 +00001188
1189 FLAC__ASSERT(object->data.vorbis_comment.num_comments > 0);
1190
1191 /* if shrinking, free the truncated entries */
1192 if(new_num_comments < object->data.vorbis_comment.num_comments) {
1193 unsigned i;
1194 for(i = new_num_comments; i < object->data.vorbis_comment.num_comments; i++)
1195 if(0 != object->data.vorbis_comment.comments[i].entry)
1196 free(object->data.vorbis_comment.comments[i].entry);
1197 }
1198
1199 if(new_size == 0) {
1200 free(object->data.vorbis_comment.comments);
1201 object->data.vorbis_comment.comments = 0;
1202 }
Erik de Castro Lopoff507792015-07-05 21:21:44 +10001203 else if(0 == (object->data.vorbis_comment.comments = realloc(object->data.vorbis_comment.comments, new_size))) {
1204 object->data.vorbis_comment.num_comments = 0;
Josh Coalson90ced912002-05-30 05:23:38 +00001205 return false;
Erik de Castro Lopoff507792015-07-05 21:21:44 +10001206 }
Josh Coalson90ced912002-05-30 05:23:38 +00001207
1208 /* if growing, zero all the length/pointers of new elements */
1209 if(new_size > old_size)
1210 memset(object->data.vorbis_comment.comments + object->data.vorbis_comment.num_comments, 0, new_size - old_size);
1211 }
1212
1213 object->data.vorbis_comment.num_comments = new_num_comments;
1214
1215 vorbiscomment_calculate_length_(object);
1216 return true;
1217}
1218
Josh Coalson6afed9f2002-10-16 22:29:47 +00001219FLAC_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 +00001220{
Josh Coalsonfb993862003-01-15 03:18:07 +00001221 FLAC__ASSERT(0 != object);
1222 FLAC__ASSERT(comment_num < object->data.vorbis_comment.num_comments);
1223
Josh Coalson2de11242004-12-30 03:41:19 +00001224 if(!FLAC__format_vorbiscomment_entry_is_legal(entry.entry, entry.length))
1225 return false;
Josh Coalson6b8e5302002-05-31 06:23:09 +00001226 return vorbiscomment_set_entry_(object, &object->data.vorbis_comment.comments[comment_num], &entry, copy);
Josh Coalson90ced912002-05-30 05:23:38 +00001227}
1228
Josh Coalson6afed9f2002-10-16 22:29:47 +00001229FLAC_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 +00001230{
Josh Coalsoncc682512002-06-08 04:53:42 +00001231 FLAC__StreamMetadata_VorbisComment *vc;
Josh Coalson90ced912002-05-30 05:23:38 +00001232
1233 FLAC__ASSERT(0 != object);
Josh Coalson90ced912002-05-30 05:23:38 +00001234 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_VORBIS_COMMENT);
Josh Coalson8e9c4512002-11-14 05:00:24 +00001235 FLAC__ASSERT(comment_num <= object->data.vorbis_comment.num_comments);
Josh Coalson90ced912002-05-30 05:23:38 +00001236
Josh Coalson2de11242004-12-30 03:41:19 +00001237 if(!FLAC__format_vorbiscomment_entry_is_legal(entry.entry, entry.length))
1238 return false;
1239
Josh Coalson6b8e5302002-05-31 06:23:09 +00001240 vc = &object->data.vorbis_comment;
1241
1242 if(!FLAC__metadata_object_vorbiscomment_resize_comments(object, vc->num_comments+1))
Josh Coalson90ced912002-05-30 05:23:38 +00001243 return false;
1244
1245 /* move all comments >= comment_num forward one space */
Josh Coalsoncc682512002-06-08 04:53:42 +00001246 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 +00001247 vc->comments[comment_num].length = 0;
1248 vc->comments[comment_num].entry = 0;
Josh Coalson90ced912002-05-30 05:23:38 +00001249
1250 return FLAC__metadata_object_vorbiscomment_set_comment(object, comment_num, entry, copy);
1251}
1252
Josh Coalsondef597e2004-12-30 00:59:30 +00001253FLAC_API FLAC__bool FLAC__metadata_object_vorbiscomment_append_comment(FLAC__StreamMetadata *object, FLAC__StreamMetadata_VorbisComment_Entry entry, FLAC__bool copy)
1254{
1255 FLAC__ASSERT(0 != object);
1256 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_VORBIS_COMMENT);
1257 return FLAC__metadata_object_vorbiscomment_insert_comment(object, object->data.vorbis_comment.num_comments, entry, copy);
1258}
1259
1260FLAC_API FLAC__bool FLAC__metadata_object_vorbiscomment_replace_comment(FLAC__StreamMetadata *object, FLAC__StreamMetadata_VorbisComment_Entry entry, FLAC__bool all, FLAC__bool copy)
1261{
1262 FLAC__ASSERT(0 != entry.entry && entry.length > 0);
Josh Coalson2de11242004-12-30 03:41:19 +00001263
1264 if(!FLAC__format_vorbiscomment_entry_is_legal(entry.entry, entry.length))
1265 return false;
1266
Josh Coalsondef597e2004-12-30 00:59:30 +00001267 {
1268 int i;
Josh Coalson9bedd782007-02-22 01:37:33 +00001269 size_t field_name_length;
Josh Coalsondef597e2004-12-30 00:59:30 +00001270 const FLAC__byte *eq = (FLAC__byte*)memchr(entry.entry, '=', entry.length);
1271
1272 FLAC__ASSERT(0 != eq);
1273
1274 if(0 == eq)
1275 return false; /* double protection */
1276
1277 field_name_length = eq-entry.entry;
1278
Josh Coalsone95399c2008-09-15 05:37:27 +00001279 i = vorbiscomment_find_entry_from_(object, 0, (const char *)entry.entry, field_name_length);
1280 if(i >= 0) {
Erik de Castro Lopoae7eda12013-04-05 20:21:22 +11001281 unsigned indx = (unsigned)i;
1282 if(!FLAC__metadata_object_vorbiscomment_set_comment(object, indx, entry, copy))
Josh Coalsondef597e2004-12-30 00:59:30 +00001283 return false;
Erik de Castro Lopoae7eda12013-04-05 20:21:22 +11001284 entry = object->data.vorbis_comment.comments[indx];
1285 indx++; /* skip over replaced comment */
1286 if(all && indx < object->data.vorbis_comment.num_comments) {
1287 i = vorbiscomment_find_entry_from_(object, indx, (const char *)entry.entry, field_name_length);
Josh Coalsone95399c2008-09-15 05:37:27 +00001288 while(i >= 0) {
Erik de Castro Lopoae7eda12013-04-05 20:21:22 +11001289 indx = (unsigned)i;
1290 if(!FLAC__metadata_object_vorbiscomment_delete_comment(object, indx))
Josh Coalsondef597e2004-12-30 00:59:30 +00001291 return false;
Erik de Castro Lopoae7eda12013-04-05 20:21:22 +11001292 if(indx < object->data.vorbis_comment.num_comments)
1293 i = vorbiscomment_find_entry_from_(object, indx, (const char *)entry.entry, field_name_length);
Josh Coalsondef597e2004-12-30 00:59:30 +00001294 else
1295 i = -1;
1296 }
1297 }
1298 return true;
1299 }
1300 else
1301 return FLAC__metadata_object_vorbiscomment_append_comment(object, entry, copy);
1302 }
1303}
1304
Josh Coalson6afed9f2002-10-16 22:29:47 +00001305FLAC_API FLAC__bool FLAC__metadata_object_vorbiscomment_delete_comment(FLAC__StreamMetadata *object, unsigned comment_num)
Josh Coalson90ced912002-05-30 05:23:38 +00001306{
Josh Coalsoncc682512002-06-08 04:53:42 +00001307 FLAC__StreamMetadata_VorbisComment *vc;
Josh Coalson90ced912002-05-30 05:23:38 +00001308
1309 FLAC__ASSERT(0 != object);
1310 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_VORBIS_COMMENT);
Josh Coalson8e9c4512002-11-14 05:00:24 +00001311 FLAC__ASSERT(comment_num < object->data.vorbis_comment.num_comments);
Josh Coalson90ced912002-05-30 05:23:38 +00001312
Josh Coalson6b8e5302002-05-31 06:23:09 +00001313 vc = &object->data.vorbis_comment;
1314
Josh Coalson90ced912002-05-30 05:23:38 +00001315 /* free the comment at comment_num */
Erik de Castro Lopob105f9a2015-07-04 12:19:29 +10001316 free(vc->comments[comment_num].entry);
Josh Coalson90ced912002-05-30 05:23:38 +00001317
1318 /* move all comments > comment_num backward one space */
Josh Coalsoncc682512002-06-08 04:53:42 +00001319 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 +00001320 vc->comments[vc->num_comments-1].length = 0;
1321 vc->comments[vc->num_comments-1].entry = 0;
Josh Coalson90ced912002-05-30 05:23:38 +00001322
Josh Coalson6b8e5302002-05-31 06:23:09 +00001323 return FLAC__metadata_object_vorbiscomment_resize_comments(object, vc->num_comments-1);
Josh Coalson90ced912002-05-30 05:23:38 +00001324}
Josh Coalson45bb9882002-10-26 04:34:16 +00001325
Josh Coalsondef597e2004-12-30 00:59:30 +00001326FLAC_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 +00001327{
Josh Coalsondef597e2004-12-30 00:59:30 +00001328 FLAC__ASSERT(0 != entry);
1329 FLAC__ASSERT(0 != field_name);
1330 FLAC__ASSERT(0 != field_value);
1331
Josh Coalson2de11242004-12-30 03:41:19 +00001332 if(!FLAC__format_vorbiscomment_entry_name_is_legal(field_name))
1333 return false;
Josh Coalsonb4de1692005-08-24 07:39:25 +00001334 if(!FLAC__format_vorbiscomment_entry_value_is_legal((const FLAC__byte *)field_value, (unsigned)(-1)))
Josh Coalson2de11242004-12-30 03:41:19 +00001335 return false;
1336
Josh Coalsondef597e2004-12-30 00:59:30 +00001337 {
1338 const size_t nn = strlen(field_name);
1339 const size_t nv = strlen(field_value);
1340 entry->length = nn + 1 /*=*/ + nv;
Erik de Castro Lopo6c2040d2012-04-04 21:29:25 +10001341 if(0 == (entry->entry = safe_malloc_add_4op_(nn, /*+*/1, /*+*/nv, /*+*/1)))
Josh Coalsondef597e2004-12-30 00:59:30 +00001342 return false;
1343 memcpy(entry->entry, field_name, nn);
1344 entry->entry[nn] = '=';
1345 memcpy(entry->entry+nn+1, field_value, nv);
1346 entry->entry[entry->length] = '\0';
1347 }
Erik de Castro Lopo587e1182012-02-17 17:52:12 +11001348
Josh Coalsondef597e2004-12-30 00:59:30 +00001349 return true;
1350}
1351
1352FLAC_API FLAC__bool FLAC__metadata_object_vorbiscomment_entry_to_name_value_pair(const FLAC__StreamMetadata_VorbisComment_Entry entry, char **field_name, char **field_value)
1353{
1354 FLAC__ASSERT(0 != entry.entry && entry.length > 0);
1355 FLAC__ASSERT(0 != field_name);
1356 FLAC__ASSERT(0 != field_value);
Josh Coalson2de11242004-12-30 03:41:19 +00001357
1358 if(!FLAC__format_vorbiscomment_entry_is_legal(entry.entry, entry.length))
1359 return false;
1360
Josh Coalsondef597e2004-12-30 00:59:30 +00001361 {
1362 const FLAC__byte *eq = (FLAC__byte*)memchr(entry.entry, '=', entry.length);
1363 const size_t nn = eq-entry.entry;
1364 const size_t nv = entry.length-nn-1; /* -1 for the '=' */
1365 FLAC__ASSERT(0 != eq);
1366 if(0 == eq)
1367 return false; /* double protection */
Erik de Castro Lopo6c2040d2012-04-04 21:29:25 +10001368 if(0 == (*field_name = safe_malloc_add_2op_(nn, /*+*/1)))
Josh Coalsondef597e2004-12-30 00:59:30 +00001369 return false;
Erik de Castro Lopo6c2040d2012-04-04 21:29:25 +10001370 if(0 == (*field_value = safe_malloc_add_2op_(nv, /*+*/1))) {
Josh Coalsondef597e2004-12-30 00:59:30 +00001371 free(*field_name);
1372 return false;
1373 }
1374 memcpy(*field_name, entry.entry, nn);
1375 memcpy(*field_value, entry.entry+nn+1, nv);
1376 (*field_name)[nn] = '\0';
1377 (*field_value)[nv] = '\0';
1378 }
1379
1380 return true;
1381}
1382
Josh Coalson44623112005-01-30 18:15:36 +00001383FLAC_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 +00001384{
1385 FLAC__ASSERT(0 != entry.entry && entry.length > 0);
1386 {
1387 const FLAC__byte *eq = (FLAC__byte*)memchr(entry.entry, '=', entry.length);
Josh Coalsondef597e2004-12-30 00:59:30 +00001388 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 +00001389 }
Josh Coalson45bb9882002-10-26 04:34:16 +00001390}
1391
Josh Coalsonb667e702002-11-05 07:24:33 +00001392FLAC_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 +00001393{
Josh Coalsondef597e2004-12-30 00:59:30 +00001394 FLAC__ASSERT(0 != field_name);
Josh Coalson45bb9882002-10-26 04:34:16 +00001395
Josh Coalsondef597e2004-12-30 00:59:30 +00001396 return vorbiscomment_find_entry_from_(object, offset, field_name, strlen(field_name));
Josh Coalson45bb9882002-10-26 04:34:16 +00001397}
1398
1399FLAC_API int FLAC__metadata_object_vorbiscomment_remove_entry_matching(FLAC__StreamMetadata *object, const char *field_name)
1400{
1401 const unsigned field_name_length = strlen(field_name);
1402 unsigned i;
1403
1404 FLAC__ASSERT(0 != object);
1405 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_VORBIS_COMMENT);
1406
1407 for(i = 0; i < object->data.vorbis_comment.num_comments; i++) {
Josh Coalsondef597e2004-12-30 00:59:30 +00001408 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 +00001409 if(!FLAC__metadata_object_vorbiscomment_delete_comment(object, i))
1410 return -1;
1411 else
1412 return 1;
1413 }
1414 }
1415
1416 return 0;
1417}
1418
1419FLAC_API int FLAC__metadata_object_vorbiscomment_remove_entries_matching(FLAC__StreamMetadata *object, const char *field_name)
1420{
1421 FLAC__bool ok = true;
1422 unsigned matching = 0;
1423 const unsigned field_name_length = strlen(field_name);
1424 int i;
1425
1426 FLAC__ASSERT(0 != object);
1427 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_VORBIS_COMMENT);
1428
1429 /* must delete from end to start otherwise it will interfere with our iteration */
1430 for(i = (int)object->data.vorbis_comment.num_comments - 1; ok && i >= 0; i--) {
Josh Coalsondef597e2004-12-30 00:59:30 +00001431 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 +00001432 matching++;
1433 ok &= FLAC__metadata_object_vorbiscomment_delete_comment(object, (unsigned)i);
1434 }
1435 }
1436
1437 return ok? (int)matching : -1;
1438}
Josh Coalson8e9c4512002-11-14 05:00:24 +00001439
Josh Coalsone3ec2ad2007-01-31 03:53:22 +00001440FLAC_API FLAC__StreamMetadata_CueSheet_Track *FLAC__metadata_object_cuesheet_track_new(void)
Josh Coalsondf7240a2002-11-16 06:32:30 +00001441{
Erik de Castro Lopo6c2040d2012-04-04 21:29:25 +10001442 return calloc(1, sizeof(FLAC__StreamMetadata_CueSheet_Track));
Josh Coalsondf7240a2002-11-16 06:32:30 +00001443}
1444
1445FLAC_API FLAC__StreamMetadata_CueSheet_Track *FLAC__metadata_object_cuesheet_track_clone(const FLAC__StreamMetadata_CueSheet_Track *object)
1446{
1447 FLAC__StreamMetadata_CueSheet_Track *to;
1448
1449 FLAC__ASSERT(0 != object);
1450
1451 if(0 != (to = FLAC__metadata_object_cuesheet_track_new())) {
1452 if(!copy_track_(to, object)) {
1453 FLAC__metadata_object_cuesheet_track_delete(to);
1454 return 0;
1455 }
1456 }
1457
1458 return to;
1459}
1460
1461void FLAC__metadata_object_cuesheet_track_delete_data(FLAC__StreamMetadata_CueSheet_Track *object)
1462{
1463 FLAC__ASSERT(0 != object);
1464
1465 if(0 != object->indices) {
1466 FLAC__ASSERT(object->num_indices > 0);
1467 free(object->indices);
1468 }
1469}
1470
1471FLAC_API void FLAC__metadata_object_cuesheet_track_delete(FLAC__StreamMetadata_CueSheet_Track *object)
1472{
1473 FLAC__metadata_object_cuesheet_track_delete_data(object);
1474 free(object);
1475}
1476
Josh Coalson8e9c4512002-11-14 05:00:24 +00001477FLAC_API FLAC__bool FLAC__metadata_object_cuesheet_track_resize_indices(FLAC__StreamMetadata *object, unsigned track_num, unsigned new_num_indices)
1478{
1479 FLAC__StreamMetadata_CueSheet_Track *track;
1480 FLAC__ASSERT(0 != object);
1481 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_CUESHEET);
1482 FLAC__ASSERT(track_num < object->data.cue_sheet.num_tracks);
1483
1484 track = &object->data.cue_sheet.tracks[track_num];
1485
1486 if(0 == track->indices) {
1487 FLAC__ASSERT(track->num_indices == 0);
1488 if(0 == new_num_indices)
1489 return true;
1490 else if(0 == (track->indices = cuesheet_track_index_array_new_(new_num_indices)))
1491 return false;
1492 }
1493 else {
Josh Coalson0f008d22007-09-11 04:49:56 +00001494 const size_t old_size = track->num_indices * sizeof(FLAC__StreamMetadata_CueSheet_Index);
1495 const size_t new_size = new_num_indices * sizeof(FLAC__StreamMetadata_CueSheet_Index);
1496
1497 /* overflow check */
Erik de Castro Lopo587e1182012-02-17 17:52:12 +11001498 if(new_num_indices > UINT32_MAX / sizeof(FLAC__StreamMetadata_CueSheet_Index))
Josh Coalson0f008d22007-09-11 04:49:56 +00001499 return false;
Josh Coalson8e9c4512002-11-14 05:00:24 +00001500
1501 FLAC__ASSERT(track->num_indices > 0);
1502
1503 if(new_size == 0) {
1504 free(track->indices);
1505 track->indices = 0;
1506 }
Erik de Castro Lopo6c2040d2012-04-04 21:29:25 +10001507 else if(0 == (track->indices = realloc(track->indices, new_size)))
Josh Coalson8e9c4512002-11-14 05:00:24 +00001508 return false;
1509
1510 /* if growing, zero all the lengths/pointers of new elements */
1511 if(new_size > old_size)
1512 memset(track->indices + track->num_indices, 0, new_size - old_size);
1513 }
1514
1515 track->num_indices = new_num_indices;
1516
1517 cuesheet_calculate_length_(object);
1518 return true;
1519}
1520
Erik de Castro Lopoae7eda12013-04-05 20:21:22 +11001521FLAC_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 +00001522{
1523 FLAC__StreamMetadata_CueSheet_Track *track;
1524
1525 FLAC__ASSERT(0 != object);
1526 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_CUESHEET);
1527 FLAC__ASSERT(track_num < object->data.cue_sheet.num_tracks);
1528 FLAC__ASSERT(index_num <= object->data.cue_sheet.tracks[track_num].num_indices);
1529
1530 track = &object->data.cue_sheet.tracks[track_num];
1531
1532 if(!FLAC__metadata_object_cuesheet_track_resize_indices(object, track_num, track->num_indices+1))
1533 return false;
1534
1535 /* move all indices >= index_num forward one space */
1536 memmove(&track->indices[index_num+1], &track->indices[index_num], sizeof(FLAC__StreamMetadata_CueSheet_Index)*(track->num_indices-1-index_num));
1537
Erik de Castro Lopoae7eda12013-04-05 20:21:22 +11001538 track->indices[index_num] = indx;
Josh Coalson8e9c4512002-11-14 05:00:24 +00001539 cuesheet_calculate_length_(object);
1540 return true;
1541}
1542
Josh Coalson3b026e82002-11-21 06:41:01 +00001543FLAC_API FLAC__bool FLAC__metadata_object_cuesheet_track_insert_blank_index(FLAC__StreamMetadata *object, unsigned track_num, unsigned index_num)
1544{
Erik de Castro Lopoae7eda12013-04-05 20:21:22 +11001545 FLAC__StreamMetadata_CueSheet_Index indx;
1546 memset(&indx, 0, sizeof(indx));
1547 return FLAC__metadata_object_cuesheet_track_insert_index(object, track_num, index_num, indx);
Josh Coalson3b026e82002-11-21 06:41:01 +00001548}
1549
Josh Coalson8e9c4512002-11-14 05:00:24 +00001550FLAC_API FLAC__bool FLAC__metadata_object_cuesheet_track_delete_index(FLAC__StreamMetadata *object, unsigned track_num, unsigned index_num)
1551{
1552 FLAC__StreamMetadata_CueSheet_Track *track;
1553
1554 FLAC__ASSERT(0 != object);
1555 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_CUESHEET);
1556 FLAC__ASSERT(track_num < object->data.cue_sheet.num_tracks);
1557 FLAC__ASSERT(index_num < object->data.cue_sheet.tracks[track_num].num_indices);
1558
1559 track = &object->data.cue_sheet.tracks[track_num];
1560
1561 /* move all indices > index_num backward one space */
Josh Coalson4fa90592002-12-04 07:01:37 +00001562 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 +00001563
1564 FLAC__metadata_object_cuesheet_track_resize_indices(object, track_num, track->num_indices-1);
1565 cuesheet_calculate_length_(object);
1566 return true;
1567}
1568
1569FLAC_API FLAC__bool FLAC__metadata_object_cuesheet_resize_tracks(FLAC__StreamMetadata *object, unsigned new_num_tracks)
1570{
1571 FLAC__ASSERT(0 != object);
1572 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_CUESHEET);
1573
1574 if(0 == object->data.cue_sheet.tracks) {
1575 FLAC__ASSERT(object->data.cue_sheet.num_tracks == 0);
1576 if(0 == new_num_tracks)
1577 return true;
1578 else if(0 == (object->data.cue_sheet.tracks = cuesheet_track_array_new_(new_num_tracks)))
1579 return false;
1580 }
1581 else {
Josh Coalson0f008d22007-09-11 04:49:56 +00001582 const size_t old_size = object->data.cue_sheet.num_tracks * sizeof(FLAC__StreamMetadata_CueSheet_Track);
1583 const size_t new_size = new_num_tracks * sizeof(FLAC__StreamMetadata_CueSheet_Track);
1584
1585 /* overflow check */
Erik de Castro Lopo587e1182012-02-17 17:52:12 +11001586 if(new_num_tracks > UINT32_MAX / sizeof(FLAC__StreamMetadata_CueSheet_Track))
Josh Coalson0f008d22007-09-11 04:49:56 +00001587 return false;
Josh Coalson8e9c4512002-11-14 05:00:24 +00001588
1589 FLAC__ASSERT(object->data.cue_sheet.num_tracks > 0);
1590
1591 /* if shrinking, free the truncated entries */
1592 if(new_num_tracks < object->data.cue_sheet.num_tracks) {
1593 unsigned i;
1594 for(i = new_num_tracks; i < object->data.cue_sheet.num_tracks; i++)
Erik de Castro Lopob105f9a2015-07-04 12:19:29 +10001595 free(object->data.cue_sheet.tracks[i].indices);
Josh Coalson8e9c4512002-11-14 05:00:24 +00001596 }
1597
1598 if(new_size == 0) {
1599 free(object->data.cue_sheet.tracks);
1600 object->data.cue_sheet.tracks = 0;
1601 }
Erik de Castro Lopo6c2040d2012-04-04 21:29:25 +10001602 else if(0 == (object->data.cue_sheet.tracks = realloc(object->data.cue_sheet.tracks, new_size)))
Josh Coalson8e9c4512002-11-14 05:00:24 +00001603 return false;
1604
1605 /* if growing, zero all the lengths/pointers of new elements */
1606 if(new_size > old_size)
1607 memset(object->data.cue_sheet.tracks + object->data.cue_sheet.num_tracks, 0, new_size - old_size);
1608 }
1609
1610 object->data.cue_sheet.num_tracks = new_num_tracks;
1611
1612 cuesheet_calculate_length_(object);
1613 return true;
1614}
1615
Josh Coalsondf7240a2002-11-16 06:32:30 +00001616FLAC_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 +00001617{
Josh Coalsonfb993862003-01-15 03:18:07 +00001618 FLAC__ASSERT(0 != object);
1619 FLAC__ASSERT(track_num < object->data.cue_sheet.num_tracks);
1620
Josh Coalsondf7240a2002-11-16 06:32:30 +00001621 return cuesheet_set_track_(object, object->data.cue_sheet.tracks + track_num, track, copy);
Josh Coalson8e9c4512002-11-14 05:00:24 +00001622}
1623
Josh Coalsondf7240a2002-11-16 06:32:30 +00001624FLAC_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 +00001625{
1626 FLAC__StreamMetadata_CueSheet *cs;
1627
1628 FLAC__ASSERT(0 != object);
1629 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_CUESHEET);
1630 FLAC__ASSERT(track_num <= object->data.cue_sheet.num_tracks);
1631
1632 cs = &object->data.cue_sheet;
1633
1634 if(!FLAC__metadata_object_cuesheet_resize_tracks(object, cs->num_tracks+1))
1635 return false;
1636
1637 /* move all tracks >= track_num forward one space */
1638 memmove(&cs->tracks[track_num+1], &cs->tracks[track_num], sizeof(FLAC__StreamMetadata_CueSheet_Track)*(cs->num_tracks-1-track_num));
1639 cs->tracks[track_num].num_indices = 0;
1640 cs->tracks[track_num].indices = 0;
1641
1642 return FLAC__metadata_object_cuesheet_set_track(object, track_num, track, copy);
1643}
1644
Josh Coalson3b026e82002-11-21 06:41:01 +00001645FLAC_API FLAC__bool FLAC__metadata_object_cuesheet_insert_blank_track(FLAC__StreamMetadata *object, unsigned track_num)
1646{
1647 FLAC__StreamMetadata_CueSheet_Track track;
1648 memset(&track, 0, sizeof(track));
1649 return FLAC__metadata_object_cuesheet_insert_track(object, track_num, &track, /*copy=*/false);
1650}
1651
Josh Coalson8e9c4512002-11-14 05:00:24 +00001652FLAC_API FLAC__bool FLAC__metadata_object_cuesheet_delete_track(FLAC__StreamMetadata *object, unsigned track_num)
1653{
1654 FLAC__StreamMetadata_CueSheet *cs;
1655
1656 FLAC__ASSERT(0 != object);
1657 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_CUESHEET);
1658 FLAC__ASSERT(track_num < object->data.cue_sheet.num_tracks);
1659
1660 cs = &object->data.cue_sheet;
1661
1662 /* free the track at track_num */
Erik de Castro Lopob105f9a2015-07-04 12:19:29 +10001663 free(cs->tracks[track_num].indices);
Josh Coalson8e9c4512002-11-14 05:00:24 +00001664
1665 /* move all tracks > track_num backward one space */
1666 memmove(&cs->tracks[track_num], &cs->tracks[track_num+1], sizeof(FLAC__StreamMetadata_CueSheet_Track)*(cs->num_tracks-track_num-1));
1667 cs->tracks[cs->num_tracks-1].num_indices = 0;
1668 cs->tracks[cs->num_tracks-1].indices = 0;
1669
1670 return FLAC__metadata_object_cuesheet_resize_tracks(object, cs->num_tracks-1);
1671}
1672
1673FLAC_API FLAC__bool FLAC__metadata_object_cuesheet_is_legal(const FLAC__StreamMetadata *object, FLAC__bool check_cd_da_subset, const char **violation)
1674{
1675 FLAC__ASSERT(0 != object);
1676 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_CUESHEET);
1677
1678 return FLAC__format_cuesheet_is_legal(&object->data.cue_sheet, check_cd_da_subset, violation);
1679}
Josh Coalson7cfac0b2006-04-10 05:37:34 +00001680
1681static FLAC__uint64 get_index_01_offset_(const FLAC__StreamMetadata_CueSheet *cs, unsigned track)
1682{
1683 if (track >= (cs->num_tracks-1) || cs->tracks[track].num_indices < 1)
1684 return 0;
1685 else if (cs->tracks[track].indices[0].number == 1)
1686 return cs->tracks[track].indices[0].offset + cs->tracks[track].offset + cs->lead_in;
1687 else if (cs->tracks[track].num_indices < 2)
1688 return 0;
1689 else if (cs->tracks[track].indices[1].number == 1)
1690 return cs->tracks[track].indices[1].offset + cs->tracks[track].offset + cs->lead_in;
1691 else
1692 return 0;
1693}
1694
1695static FLAC__uint32 cddb_add_digits_(FLAC__uint32 x)
1696{
1697 FLAC__uint32 n = 0;
1698 while (x) {
1699 n += (x%10);
1700 x /= 10;
1701 }
1702 return n;
1703}
1704
Josh Coalson504dcaf2007-09-13 15:42:47 +00001705/*@@@@add to tests*/
Josh Coalson7cfac0b2006-04-10 05:37:34 +00001706FLAC_API FLAC__uint32 FLAC__metadata_object_cuesheet_calculate_cddb_id(const FLAC__StreamMetadata *object)
1707{
1708 const FLAC__StreamMetadata_CueSheet *cs;
1709
1710 FLAC__ASSERT(0 != object);
1711 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_CUESHEET);
1712
1713 cs = &object->data.cue_sheet;
1714
1715 if (cs->num_tracks < 2) /* need at least one real track and the lead-out track */
1716 return 0;
1717
1718 {
1719 FLAC__uint32 i, length, sum = 0;
1720 for (i = 0; i < (cs->num_tracks-1); i++) /* -1 to avoid counting the lead-out */
1721 sum += cddb_add_digits_((FLAC__uint32)(get_index_01_offset_(cs, i) / 44100));
1722 length = (FLAC__uint32)((cs->tracks[cs->num_tracks-1].offset+cs->lead_in) / 44100) - (FLAC__uint32)(get_index_01_offset_(cs, 0) / 44100);
1723
1724 return (sum % 0xFF) << 24 | length << 8 | (FLAC__uint32)(cs->num_tracks-1);
1725 }
1726}
Josh Coalsone343ab22006-09-23 19:21:19 +00001727
1728FLAC_API FLAC__bool FLAC__metadata_object_picture_set_mime_type(FLAC__StreamMetadata *object, char *mime_type, FLAC__bool copy)
1729{
1730 char *old;
1731 size_t old_length, new_length;
1732
1733 FLAC__ASSERT(0 != object);
1734 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_PICTURE);
1735 FLAC__ASSERT(0 != mime_type);
1736
1737 old = object->data.picture.mime_type;
1738 old_length = old? strlen(old) : 0;
1739 new_length = strlen(mime_type);
1740
1741 /* do the copy first so that if we fail we leave the object untouched */
1742 if(copy) {
Josh Coalson0f008d22007-09-11 04:49:56 +00001743 if(new_length >= SIZE_MAX) /* overflow check */
1744 return false;
Josh Coalsone343ab22006-09-23 19:21:19 +00001745 if(!copy_bytes_((FLAC__byte**)(&object->data.picture.mime_type), (FLAC__byte*)mime_type, new_length+1))
1746 return false;
1747 }
1748 else {
1749 object->data.picture.mime_type = mime_type;
1750 }
1751
Erik de Castro Lopob105f9a2015-07-04 12:19:29 +10001752 free(old);
Josh Coalsone343ab22006-09-23 19:21:19 +00001753
1754 object->length -= old_length;
1755 object->length += new_length;
1756 return true;
1757}
1758
1759FLAC_API FLAC__bool FLAC__metadata_object_picture_set_description(FLAC__StreamMetadata *object, FLAC__byte *description, FLAC__bool copy)
1760{
1761 FLAC__byte *old;
1762 size_t old_length, new_length;
1763
1764 FLAC__ASSERT(0 != object);
1765 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_PICTURE);
1766 FLAC__ASSERT(0 != description);
1767
1768 old = object->data.picture.description;
1769 old_length = old? strlen((const char *)old) : 0;
1770 new_length = strlen((const char *)description);
1771
1772 /* do the copy first so that if we fail we leave the object untouched */
1773 if(copy) {
Josh Coalson0f008d22007-09-11 04:49:56 +00001774 if(new_length >= SIZE_MAX) /* overflow check */
1775 return false;
Josh Coalsone343ab22006-09-23 19:21:19 +00001776 if(!copy_bytes_(&object->data.picture.description, description, new_length+1))
1777 return false;
1778 }
1779 else {
1780 object->data.picture.description = description;
1781 }
1782
Erik de Castro Lopob105f9a2015-07-04 12:19:29 +10001783 free(old);
Josh Coalsone343ab22006-09-23 19:21:19 +00001784
1785 object->length -= old_length;
1786 object->length += new_length;
1787 return true;
1788}
1789
1790FLAC_API FLAC__bool FLAC__metadata_object_picture_set_data(FLAC__StreamMetadata *object, FLAC__byte *data, FLAC__uint32 length, FLAC__bool copy)
1791{
1792 FLAC__byte *old;
1793
1794 FLAC__ASSERT(0 != object);
1795 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_PICTURE);
1796 FLAC__ASSERT((0 != data && length > 0) || (0 == data && length == 0 && copy == false));
1797
1798 old = object->data.picture.data;
1799
1800 /* do the copy first so that if we fail we leave the object untouched */
1801 if(copy) {
1802 if(!copy_bytes_(&object->data.picture.data, data, length))
1803 return false;
1804 }
1805 else {
1806 object->data.picture.data = data;
1807 }
1808
Erik de Castro Lopob105f9a2015-07-04 12:19:29 +10001809 free(old);
Josh Coalsone343ab22006-09-23 19:21:19 +00001810
1811 object->length -= object->data.picture.data_length;
1812 object->data.picture.data_length = length;
1813 object->length += length;
1814 return true;
1815}
1816
1817FLAC_API FLAC__bool FLAC__metadata_object_picture_is_legal(const FLAC__StreamMetadata *object, const char **violation)
1818{
1819 FLAC__ASSERT(0 != object);
1820 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_PICTURE);
1821
1822 return FLAC__format_picture_is_legal(&object->data.picture, violation);
1823}