blob: 05ca6b313593bc32ad9069a72765bc63cc77b928 [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 Lopod9ae5e92015-08-22 19:22:50 +1000957 else if(0 == (object->data.seek_table.points = safe_realloc_(object->data.seek_table.points, new_size)))
958 return false;
Josh Coalson90ced912002-05-30 05:23:38 +0000959
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 Lopo584a1342015-08-22 20:28:44 +10001203 else {
1204 FLAC__StreamMetadata_VorbisComment_Entry *oldptr = object->data.vorbis_comment.comments;
1205 if(0 == (object->data.vorbis_comment.comments = realloc(object->data.vorbis_comment.comments, new_size))) {
1206 vorbiscomment_entry_array_delete_(oldptr, object->data.vorbis_comment.num_comments);
1207 object->data.vorbis_comment.num_comments = 0;
1208 return false;
1209 }
Erik de Castro Lopoff507792015-07-05 21:21:44 +10001210 }
Josh Coalson90ced912002-05-30 05:23:38 +00001211
1212 /* if growing, zero all the length/pointers of new elements */
1213 if(new_size > old_size)
1214 memset(object->data.vorbis_comment.comments + object->data.vorbis_comment.num_comments, 0, new_size - old_size);
1215 }
1216
1217 object->data.vorbis_comment.num_comments = new_num_comments;
1218
1219 vorbiscomment_calculate_length_(object);
1220 return true;
1221}
1222
Josh Coalson6afed9f2002-10-16 22:29:47 +00001223FLAC_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 +00001224{
Josh Coalsonfb993862003-01-15 03:18:07 +00001225 FLAC__ASSERT(0 != object);
1226 FLAC__ASSERT(comment_num < object->data.vorbis_comment.num_comments);
1227
Josh Coalson2de11242004-12-30 03:41:19 +00001228 if(!FLAC__format_vorbiscomment_entry_is_legal(entry.entry, entry.length))
1229 return false;
Josh Coalson6b8e5302002-05-31 06:23:09 +00001230 return vorbiscomment_set_entry_(object, &object->data.vorbis_comment.comments[comment_num], &entry, copy);
Josh Coalson90ced912002-05-30 05:23:38 +00001231}
1232
Josh Coalson6afed9f2002-10-16 22:29:47 +00001233FLAC_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 +00001234{
Josh Coalsoncc682512002-06-08 04:53:42 +00001235 FLAC__StreamMetadata_VorbisComment *vc;
Josh Coalson90ced912002-05-30 05:23:38 +00001236
1237 FLAC__ASSERT(0 != object);
Josh Coalson90ced912002-05-30 05:23:38 +00001238 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_VORBIS_COMMENT);
Josh Coalson8e9c4512002-11-14 05:00:24 +00001239 FLAC__ASSERT(comment_num <= object->data.vorbis_comment.num_comments);
Josh Coalson90ced912002-05-30 05:23:38 +00001240
Josh Coalson2de11242004-12-30 03:41:19 +00001241 if(!FLAC__format_vorbiscomment_entry_is_legal(entry.entry, entry.length))
1242 return false;
1243
Josh Coalson6b8e5302002-05-31 06:23:09 +00001244 vc = &object->data.vorbis_comment;
1245
1246 if(!FLAC__metadata_object_vorbiscomment_resize_comments(object, vc->num_comments+1))
Josh Coalson90ced912002-05-30 05:23:38 +00001247 return false;
1248
1249 /* move all comments >= comment_num forward one space */
Josh Coalsoncc682512002-06-08 04:53:42 +00001250 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 +00001251 vc->comments[comment_num].length = 0;
1252 vc->comments[comment_num].entry = 0;
Josh Coalson90ced912002-05-30 05:23:38 +00001253
1254 return FLAC__metadata_object_vorbiscomment_set_comment(object, comment_num, entry, copy);
1255}
1256
Josh Coalsondef597e2004-12-30 00:59:30 +00001257FLAC_API FLAC__bool FLAC__metadata_object_vorbiscomment_append_comment(FLAC__StreamMetadata *object, FLAC__StreamMetadata_VorbisComment_Entry entry, FLAC__bool copy)
1258{
1259 FLAC__ASSERT(0 != object);
1260 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_VORBIS_COMMENT);
1261 return FLAC__metadata_object_vorbiscomment_insert_comment(object, object->data.vorbis_comment.num_comments, entry, copy);
1262}
1263
1264FLAC_API FLAC__bool FLAC__metadata_object_vorbiscomment_replace_comment(FLAC__StreamMetadata *object, FLAC__StreamMetadata_VorbisComment_Entry entry, FLAC__bool all, FLAC__bool copy)
1265{
1266 FLAC__ASSERT(0 != entry.entry && entry.length > 0);
Josh Coalson2de11242004-12-30 03:41:19 +00001267
1268 if(!FLAC__format_vorbiscomment_entry_is_legal(entry.entry, entry.length))
1269 return false;
1270
Josh Coalsondef597e2004-12-30 00:59:30 +00001271 {
1272 int i;
Josh Coalson9bedd782007-02-22 01:37:33 +00001273 size_t field_name_length;
Josh Coalsondef597e2004-12-30 00:59:30 +00001274 const FLAC__byte *eq = (FLAC__byte*)memchr(entry.entry, '=', entry.length);
1275
1276 FLAC__ASSERT(0 != eq);
1277
1278 if(0 == eq)
1279 return false; /* double protection */
1280
1281 field_name_length = eq-entry.entry;
1282
Josh Coalsone95399c2008-09-15 05:37:27 +00001283 i = vorbiscomment_find_entry_from_(object, 0, (const char *)entry.entry, field_name_length);
1284 if(i >= 0) {
Erik de Castro Lopoae7eda12013-04-05 20:21:22 +11001285 unsigned indx = (unsigned)i;
1286 if(!FLAC__metadata_object_vorbiscomment_set_comment(object, indx, entry, copy))
Josh Coalsondef597e2004-12-30 00:59:30 +00001287 return false;
Erik de Castro Lopoae7eda12013-04-05 20:21:22 +11001288 entry = object->data.vorbis_comment.comments[indx];
1289 indx++; /* skip over replaced comment */
1290 if(all && indx < object->data.vorbis_comment.num_comments) {
1291 i = vorbiscomment_find_entry_from_(object, indx, (const char *)entry.entry, field_name_length);
Josh Coalsone95399c2008-09-15 05:37:27 +00001292 while(i >= 0) {
Erik de Castro Lopoae7eda12013-04-05 20:21:22 +11001293 indx = (unsigned)i;
1294 if(!FLAC__metadata_object_vorbiscomment_delete_comment(object, indx))
Josh Coalsondef597e2004-12-30 00:59:30 +00001295 return false;
Erik de Castro Lopoae7eda12013-04-05 20:21:22 +11001296 if(indx < object->data.vorbis_comment.num_comments)
1297 i = vorbiscomment_find_entry_from_(object, indx, (const char *)entry.entry, field_name_length);
Josh Coalsondef597e2004-12-30 00:59:30 +00001298 else
1299 i = -1;
1300 }
1301 }
1302 return true;
1303 }
1304 else
1305 return FLAC__metadata_object_vorbiscomment_append_comment(object, entry, copy);
1306 }
1307}
1308
Josh Coalson6afed9f2002-10-16 22:29:47 +00001309FLAC_API FLAC__bool FLAC__metadata_object_vorbiscomment_delete_comment(FLAC__StreamMetadata *object, unsigned comment_num)
Josh Coalson90ced912002-05-30 05:23:38 +00001310{
Josh Coalsoncc682512002-06-08 04:53:42 +00001311 FLAC__StreamMetadata_VorbisComment *vc;
Josh Coalson90ced912002-05-30 05:23:38 +00001312
1313 FLAC__ASSERT(0 != object);
1314 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_VORBIS_COMMENT);
Josh Coalson8e9c4512002-11-14 05:00:24 +00001315 FLAC__ASSERT(comment_num < object->data.vorbis_comment.num_comments);
Josh Coalson90ced912002-05-30 05:23:38 +00001316
Josh Coalson6b8e5302002-05-31 06:23:09 +00001317 vc = &object->data.vorbis_comment;
1318
Josh Coalson90ced912002-05-30 05:23:38 +00001319 /* free the comment at comment_num */
Erik de Castro Lopob105f9a2015-07-04 12:19:29 +10001320 free(vc->comments[comment_num].entry);
Josh Coalson90ced912002-05-30 05:23:38 +00001321
1322 /* move all comments > comment_num backward one space */
Josh Coalsoncc682512002-06-08 04:53:42 +00001323 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 +00001324 vc->comments[vc->num_comments-1].length = 0;
1325 vc->comments[vc->num_comments-1].entry = 0;
Josh Coalson90ced912002-05-30 05:23:38 +00001326
Josh Coalson6b8e5302002-05-31 06:23:09 +00001327 return FLAC__metadata_object_vorbiscomment_resize_comments(object, vc->num_comments-1);
Josh Coalson90ced912002-05-30 05:23:38 +00001328}
Josh Coalson45bb9882002-10-26 04:34:16 +00001329
Josh Coalsondef597e2004-12-30 00:59:30 +00001330FLAC_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 +00001331{
Josh Coalsondef597e2004-12-30 00:59:30 +00001332 FLAC__ASSERT(0 != entry);
1333 FLAC__ASSERT(0 != field_name);
1334 FLAC__ASSERT(0 != field_value);
1335
Josh Coalson2de11242004-12-30 03:41:19 +00001336 if(!FLAC__format_vorbiscomment_entry_name_is_legal(field_name))
1337 return false;
Josh Coalsonb4de1692005-08-24 07:39:25 +00001338 if(!FLAC__format_vorbiscomment_entry_value_is_legal((const FLAC__byte *)field_value, (unsigned)(-1)))
Josh Coalson2de11242004-12-30 03:41:19 +00001339 return false;
1340
Josh Coalsondef597e2004-12-30 00:59:30 +00001341 {
1342 const size_t nn = strlen(field_name);
1343 const size_t nv = strlen(field_value);
1344 entry->length = nn + 1 /*=*/ + nv;
Erik de Castro Lopo6c2040d2012-04-04 21:29:25 +10001345 if(0 == (entry->entry = safe_malloc_add_4op_(nn, /*+*/1, /*+*/nv, /*+*/1)))
Josh Coalsondef597e2004-12-30 00:59:30 +00001346 return false;
1347 memcpy(entry->entry, field_name, nn);
1348 entry->entry[nn] = '=';
1349 memcpy(entry->entry+nn+1, field_value, nv);
1350 entry->entry[entry->length] = '\0';
1351 }
Erik de Castro Lopo587e1182012-02-17 17:52:12 +11001352
Josh Coalsondef597e2004-12-30 00:59:30 +00001353 return true;
1354}
1355
1356FLAC_API FLAC__bool FLAC__metadata_object_vorbiscomment_entry_to_name_value_pair(const FLAC__StreamMetadata_VorbisComment_Entry entry, char **field_name, char **field_value)
1357{
1358 FLAC__ASSERT(0 != entry.entry && entry.length > 0);
1359 FLAC__ASSERT(0 != field_name);
1360 FLAC__ASSERT(0 != field_value);
Josh Coalson2de11242004-12-30 03:41:19 +00001361
1362 if(!FLAC__format_vorbiscomment_entry_is_legal(entry.entry, entry.length))
1363 return false;
1364
Josh Coalsondef597e2004-12-30 00:59:30 +00001365 {
1366 const FLAC__byte *eq = (FLAC__byte*)memchr(entry.entry, '=', entry.length);
1367 const size_t nn = eq-entry.entry;
1368 const size_t nv = entry.length-nn-1; /* -1 for the '=' */
1369 FLAC__ASSERT(0 != eq);
1370 if(0 == eq)
1371 return false; /* double protection */
Erik de Castro Lopo6c2040d2012-04-04 21:29:25 +10001372 if(0 == (*field_name = safe_malloc_add_2op_(nn, /*+*/1)))
Josh Coalsondef597e2004-12-30 00:59:30 +00001373 return false;
Erik de Castro Lopo6c2040d2012-04-04 21:29:25 +10001374 if(0 == (*field_value = safe_malloc_add_2op_(nv, /*+*/1))) {
Josh Coalsondef597e2004-12-30 00:59:30 +00001375 free(*field_name);
1376 return false;
1377 }
1378 memcpy(*field_name, entry.entry, nn);
1379 memcpy(*field_value, entry.entry+nn+1, nv);
1380 (*field_name)[nn] = '\0';
1381 (*field_value)[nv] = '\0';
1382 }
1383
1384 return true;
1385}
1386
Josh Coalson44623112005-01-30 18:15:36 +00001387FLAC_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 +00001388{
1389 FLAC__ASSERT(0 != entry.entry && entry.length > 0);
1390 {
1391 const FLAC__byte *eq = (FLAC__byte*)memchr(entry.entry, '=', entry.length);
Josh Coalsondef597e2004-12-30 00:59:30 +00001392 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 +00001393 }
Josh Coalson45bb9882002-10-26 04:34:16 +00001394}
1395
Josh Coalsonb667e702002-11-05 07:24:33 +00001396FLAC_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 +00001397{
Josh Coalsondef597e2004-12-30 00:59:30 +00001398 FLAC__ASSERT(0 != field_name);
Josh Coalson45bb9882002-10-26 04:34:16 +00001399
Josh Coalsondef597e2004-12-30 00:59:30 +00001400 return vorbiscomment_find_entry_from_(object, offset, field_name, strlen(field_name));
Josh Coalson45bb9882002-10-26 04:34:16 +00001401}
1402
1403FLAC_API int FLAC__metadata_object_vorbiscomment_remove_entry_matching(FLAC__StreamMetadata *object, const char *field_name)
1404{
1405 const unsigned field_name_length = strlen(field_name);
1406 unsigned i;
1407
1408 FLAC__ASSERT(0 != object);
1409 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_VORBIS_COMMENT);
1410
1411 for(i = 0; i < object->data.vorbis_comment.num_comments; i++) {
Josh Coalsondef597e2004-12-30 00:59:30 +00001412 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 +00001413 if(!FLAC__metadata_object_vorbiscomment_delete_comment(object, i))
1414 return -1;
1415 else
1416 return 1;
1417 }
1418 }
1419
1420 return 0;
1421}
1422
1423FLAC_API int FLAC__metadata_object_vorbiscomment_remove_entries_matching(FLAC__StreamMetadata *object, const char *field_name)
1424{
1425 FLAC__bool ok = true;
1426 unsigned matching = 0;
1427 const unsigned field_name_length = strlen(field_name);
1428 int i;
1429
1430 FLAC__ASSERT(0 != object);
1431 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_VORBIS_COMMENT);
1432
1433 /* must delete from end to start otherwise it will interfere with our iteration */
1434 for(i = (int)object->data.vorbis_comment.num_comments - 1; ok && i >= 0; i--) {
Josh Coalsondef597e2004-12-30 00:59:30 +00001435 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 +00001436 matching++;
1437 ok &= FLAC__metadata_object_vorbiscomment_delete_comment(object, (unsigned)i);
1438 }
1439 }
1440
1441 return ok? (int)matching : -1;
1442}
Josh Coalson8e9c4512002-11-14 05:00:24 +00001443
Josh Coalsone3ec2ad2007-01-31 03:53:22 +00001444FLAC_API FLAC__StreamMetadata_CueSheet_Track *FLAC__metadata_object_cuesheet_track_new(void)
Josh Coalsondf7240a2002-11-16 06:32:30 +00001445{
Erik de Castro Lopo6c2040d2012-04-04 21:29:25 +10001446 return calloc(1, sizeof(FLAC__StreamMetadata_CueSheet_Track));
Josh Coalsondf7240a2002-11-16 06:32:30 +00001447}
1448
1449FLAC_API FLAC__StreamMetadata_CueSheet_Track *FLAC__metadata_object_cuesheet_track_clone(const FLAC__StreamMetadata_CueSheet_Track *object)
1450{
1451 FLAC__StreamMetadata_CueSheet_Track *to;
1452
1453 FLAC__ASSERT(0 != object);
1454
1455 if(0 != (to = FLAC__metadata_object_cuesheet_track_new())) {
1456 if(!copy_track_(to, object)) {
1457 FLAC__metadata_object_cuesheet_track_delete(to);
1458 return 0;
1459 }
1460 }
1461
1462 return to;
1463}
1464
1465void FLAC__metadata_object_cuesheet_track_delete_data(FLAC__StreamMetadata_CueSheet_Track *object)
1466{
1467 FLAC__ASSERT(0 != object);
1468
1469 if(0 != object->indices) {
1470 FLAC__ASSERT(object->num_indices > 0);
1471 free(object->indices);
1472 }
1473}
1474
1475FLAC_API void FLAC__metadata_object_cuesheet_track_delete(FLAC__StreamMetadata_CueSheet_Track *object)
1476{
1477 FLAC__metadata_object_cuesheet_track_delete_data(object);
1478 free(object);
1479}
1480
Josh Coalson8e9c4512002-11-14 05:00:24 +00001481FLAC_API FLAC__bool FLAC__metadata_object_cuesheet_track_resize_indices(FLAC__StreamMetadata *object, unsigned track_num, unsigned new_num_indices)
1482{
1483 FLAC__StreamMetadata_CueSheet_Track *track;
1484 FLAC__ASSERT(0 != object);
1485 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_CUESHEET);
1486 FLAC__ASSERT(track_num < object->data.cue_sheet.num_tracks);
1487
1488 track = &object->data.cue_sheet.tracks[track_num];
1489
1490 if(0 == track->indices) {
1491 FLAC__ASSERT(track->num_indices == 0);
1492 if(0 == new_num_indices)
1493 return true;
1494 else if(0 == (track->indices = cuesheet_track_index_array_new_(new_num_indices)))
1495 return false;
1496 }
1497 else {
Josh Coalson0f008d22007-09-11 04:49:56 +00001498 const size_t old_size = track->num_indices * sizeof(FLAC__StreamMetadata_CueSheet_Index);
1499 const size_t new_size = new_num_indices * sizeof(FLAC__StreamMetadata_CueSheet_Index);
1500
1501 /* overflow check */
Erik de Castro Lopo587e1182012-02-17 17:52:12 +11001502 if(new_num_indices > UINT32_MAX / sizeof(FLAC__StreamMetadata_CueSheet_Index))
Josh Coalson0f008d22007-09-11 04:49:56 +00001503 return false;
Josh Coalson8e9c4512002-11-14 05:00:24 +00001504
1505 FLAC__ASSERT(track->num_indices > 0);
1506
1507 if(new_size == 0) {
1508 free(track->indices);
1509 track->indices = 0;
1510 }
Erik de Castro Lopod9ae5e92015-08-22 19:22:50 +10001511 else if(0 == (track->indices = safe_realloc_(track->indices, new_size)))
1512 return false;
Josh Coalson8e9c4512002-11-14 05:00:24 +00001513
1514 /* if growing, zero all the lengths/pointers of new elements */
1515 if(new_size > old_size)
1516 memset(track->indices + track->num_indices, 0, new_size - old_size);
1517 }
1518
1519 track->num_indices = new_num_indices;
1520
1521 cuesheet_calculate_length_(object);
1522 return true;
1523}
1524
Erik de Castro Lopoae7eda12013-04-05 20:21:22 +11001525FLAC_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 +00001526{
1527 FLAC__StreamMetadata_CueSheet_Track *track;
1528
1529 FLAC__ASSERT(0 != object);
1530 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_CUESHEET);
1531 FLAC__ASSERT(track_num < object->data.cue_sheet.num_tracks);
1532 FLAC__ASSERT(index_num <= object->data.cue_sheet.tracks[track_num].num_indices);
1533
1534 track = &object->data.cue_sheet.tracks[track_num];
1535
1536 if(!FLAC__metadata_object_cuesheet_track_resize_indices(object, track_num, track->num_indices+1))
1537 return false;
1538
1539 /* move all indices >= index_num forward one space */
1540 memmove(&track->indices[index_num+1], &track->indices[index_num], sizeof(FLAC__StreamMetadata_CueSheet_Index)*(track->num_indices-1-index_num));
1541
Erik de Castro Lopoae7eda12013-04-05 20:21:22 +11001542 track->indices[index_num] = indx;
Josh Coalson8e9c4512002-11-14 05:00:24 +00001543 cuesheet_calculate_length_(object);
1544 return true;
1545}
1546
Josh Coalson3b026e82002-11-21 06:41:01 +00001547FLAC_API FLAC__bool FLAC__metadata_object_cuesheet_track_insert_blank_index(FLAC__StreamMetadata *object, unsigned track_num, unsigned index_num)
1548{
Erik de Castro Lopoae7eda12013-04-05 20:21:22 +11001549 FLAC__StreamMetadata_CueSheet_Index indx;
1550 memset(&indx, 0, sizeof(indx));
1551 return FLAC__metadata_object_cuesheet_track_insert_index(object, track_num, index_num, indx);
Josh Coalson3b026e82002-11-21 06:41:01 +00001552}
1553
Josh Coalson8e9c4512002-11-14 05:00:24 +00001554FLAC_API FLAC__bool FLAC__metadata_object_cuesheet_track_delete_index(FLAC__StreamMetadata *object, unsigned track_num, unsigned index_num)
1555{
1556 FLAC__StreamMetadata_CueSheet_Track *track;
1557
1558 FLAC__ASSERT(0 != object);
1559 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_CUESHEET);
1560 FLAC__ASSERT(track_num < object->data.cue_sheet.num_tracks);
1561 FLAC__ASSERT(index_num < object->data.cue_sheet.tracks[track_num].num_indices);
1562
1563 track = &object->data.cue_sheet.tracks[track_num];
1564
1565 /* move all indices > index_num backward one space */
Josh Coalson4fa90592002-12-04 07:01:37 +00001566 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 +00001567
1568 FLAC__metadata_object_cuesheet_track_resize_indices(object, track_num, track->num_indices-1);
1569 cuesheet_calculate_length_(object);
1570 return true;
1571}
1572
1573FLAC_API FLAC__bool FLAC__metadata_object_cuesheet_resize_tracks(FLAC__StreamMetadata *object, unsigned new_num_tracks)
1574{
1575 FLAC__ASSERT(0 != object);
1576 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_CUESHEET);
1577
1578 if(0 == object->data.cue_sheet.tracks) {
1579 FLAC__ASSERT(object->data.cue_sheet.num_tracks == 0);
1580 if(0 == new_num_tracks)
1581 return true;
1582 else if(0 == (object->data.cue_sheet.tracks = cuesheet_track_array_new_(new_num_tracks)))
1583 return false;
1584 }
1585 else {
Josh Coalson0f008d22007-09-11 04:49:56 +00001586 const size_t old_size = object->data.cue_sheet.num_tracks * sizeof(FLAC__StreamMetadata_CueSheet_Track);
1587 const size_t new_size = new_num_tracks * sizeof(FLAC__StreamMetadata_CueSheet_Track);
1588
1589 /* overflow check */
Erik de Castro Lopo587e1182012-02-17 17:52:12 +11001590 if(new_num_tracks > UINT32_MAX / sizeof(FLAC__StreamMetadata_CueSheet_Track))
Josh Coalson0f008d22007-09-11 04:49:56 +00001591 return false;
Josh Coalson8e9c4512002-11-14 05:00:24 +00001592
1593 FLAC__ASSERT(object->data.cue_sheet.num_tracks > 0);
1594
1595 /* if shrinking, free the truncated entries */
1596 if(new_num_tracks < object->data.cue_sheet.num_tracks) {
1597 unsigned i;
1598 for(i = new_num_tracks; i < object->data.cue_sheet.num_tracks; i++)
Erik de Castro Lopob105f9a2015-07-04 12:19:29 +10001599 free(object->data.cue_sheet.tracks[i].indices);
Josh Coalson8e9c4512002-11-14 05:00:24 +00001600 }
1601
1602 if(new_size == 0) {
1603 free(object->data.cue_sheet.tracks);
1604 object->data.cue_sheet.tracks = 0;
1605 }
Erik de Castro Lopod9ae5e92015-08-22 19:22:50 +10001606 else if(0 == (object->data.cue_sheet.tracks = safe_realloc_(object->data.cue_sheet.tracks, new_size)))
1607 return false;
Josh Coalson8e9c4512002-11-14 05:00:24 +00001608
1609 /* if growing, zero all the lengths/pointers of new elements */
1610 if(new_size > old_size)
1611 memset(object->data.cue_sheet.tracks + object->data.cue_sheet.num_tracks, 0, new_size - old_size);
1612 }
1613
1614 object->data.cue_sheet.num_tracks = new_num_tracks;
1615
1616 cuesheet_calculate_length_(object);
1617 return true;
1618}
1619
Josh Coalsondf7240a2002-11-16 06:32:30 +00001620FLAC_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 +00001621{
Josh Coalsonfb993862003-01-15 03:18:07 +00001622 FLAC__ASSERT(0 != object);
1623 FLAC__ASSERT(track_num < object->data.cue_sheet.num_tracks);
1624
Josh Coalsondf7240a2002-11-16 06:32:30 +00001625 return cuesheet_set_track_(object, object->data.cue_sheet.tracks + track_num, track, copy);
Josh Coalson8e9c4512002-11-14 05:00:24 +00001626}
1627
Josh Coalsondf7240a2002-11-16 06:32:30 +00001628FLAC_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 +00001629{
1630 FLAC__StreamMetadata_CueSheet *cs;
1631
1632 FLAC__ASSERT(0 != object);
1633 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_CUESHEET);
1634 FLAC__ASSERT(track_num <= object->data.cue_sheet.num_tracks);
1635
1636 cs = &object->data.cue_sheet;
1637
1638 if(!FLAC__metadata_object_cuesheet_resize_tracks(object, cs->num_tracks+1))
1639 return false;
1640
1641 /* move all tracks >= track_num forward one space */
1642 memmove(&cs->tracks[track_num+1], &cs->tracks[track_num], sizeof(FLAC__StreamMetadata_CueSheet_Track)*(cs->num_tracks-1-track_num));
1643 cs->tracks[track_num].num_indices = 0;
1644 cs->tracks[track_num].indices = 0;
1645
1646 return FLAC__metadata_object_cuesheet_set_track(object, track_num, track, copy);
1647}
1648
Josh Coalson3b026e82002-11-21 06:41:01 +00001649FLAC_API FLAC__bool FLAC__metadata_object_cuesheet_insert_blank_track(FLAC__StreamMetadata *object, unsigned track_num)
1650{
1651 FLAC__StreamMetadata_CueSheet_Track track;
1652 memset(&track, 0, sizeof(track));
1653 return FLAC__metadata_object_cuesheet_insert_track(object, track_num, &track, /*copy=*/false);
1654}
1655
Josh Coalson8e9c4512002-11-14 05:00:24 +00001656FLAC_API FLAC__bool FLAC__metadata_object_cuesheet_delete_track(FLAC__StreamMetadata *object, unsigned track_num)
1657{
1658 FLAC__StreamMetadata_CueSheet *cs;
1659
1660 FLAC__ASSERT(0 != object);
1661 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_CUESHEET);
1662 FLAC__ASSERT(track_num < object->data.cue_sheet.num_tracks);
1663
1664 cs = &object->data.cue_sheet;
1665
1666 /* free the track at track_num */
Erik de Castro Lopob105f9a2015-07-04 12:19:29 +10001667 free(cs->tracks[track_num].indices);
Josh Coalson8e9c4512002-11-14 05:00:24 +00001668
1669 /* move all tracks > track_num backward one space */
1670 memmove(&cs->tracks[track_num], &cs->tracks[track_num+1], sizeof(FLAC__StreamMetadata_CueSheet_Track)*(cs->num_tracks-track_num-1));
1671 cs->tracks[cs->num_tracks-1].num_indices = 0;
1672 cs->tracks[cs->num_tracks-1].indices = 0;
1673
1674 return FLAC__metadata_object_cuesheet_resize_tracks(object, cs->num_tracks-1);
1675}
1676
1677FLAC_API FLAC__bool FLAC__metadata_object_cuesheet_is_legal(const FLAC__StreamMetadata *object, FLAC__bool check_cd_da_subset, const char **violation)
1678{
1679 FLAC__ASSERT(0 != object);
1680 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_CUESHEET);
1681
1682 return FLAC__format_cuesheet_is_legal(&object->data.cue_sheet, check_cd_da_subset, violation);
1683}
Josh Coalson7cfac0b2006-04-10 05:37:34 +00001684
1685static FLAC__uint64 get_index_01_offset_(const FLAC__StreamMetadata_CueSheet *cs, unsigned track)
1686{
1687 if (track >= (cs->num_tracks-1) || cs->tracks[track].num_indices < 1)
1688 return 0;
1689 else if (cs->tracks[track].indices[0].number == 1)
1690 return cs->tracks[track].indices[0].offset + cs->tracks[track].offset + cs->lead_in;
1691 else if (cs->tracks[track].num_indices < 2)
1692 return 0;
1693 else if (cs->tracks[track].indices[1].number == 1)
1694 return cs->tracks[track].indices[1].offset + cs->tracks[track].offset + cs->lead_in;
1695 else
1696 return 0;
1697}
1698
1699static FLAC__uint32 cddb_add_digits_(FLAC__uint32 x)
1700{
1701 FLAC__uint32 n = 0;
1702 while (x) {
1703 n += (x%10);
1704 x /= 10;
1705 }
1706 return n;
1707}
1708
Josh Coalson504dcaf2007-09-13 15:42:47 +00001709/*@@@@add to tests*/
Josh Coalson7cfac0b2006-04-10 05:37:34 +00001710FLAC_API FLAC__uint32 FLAC__metadata_object_cuesheet_calculate_cddb_id(const FLAC__StreamMetadata *object)
1711{
1712 const FLAC__StreamMetadata_CueSheet *cs;
1713
1714 FLAC__ASSERT(0 != object);
1715 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_CUESHEET);
1716
1717 cs = &object->data.cue_sheet;
1718
1719 if (cs->num_tracks < 2) /* need at least one real track and the lead-out track */
1720 return 0;
1721
1722 {
1723 FLAC__uint32 i, length, sum = 0;
1724 for (i = 0; i < (cs->num_tracks-1); i++) /* -1 to avoid counting the lead-out */
1725 sum += cddb_add_digits_((FLAC__uint32)(get_index_01_offset_(cs, i) / 44100));
1726 length = (FLAC__uint32)((cs->tracks[cs->num_tracks-1].offset+cs->lead_in) / 44100) - (FLAC__uint32)(get_index_01_offset_(cs, 0) / 44100);
1727
1728 return (sum % 0xFF) << 24 | length << 8 | (FLAC__uint32)(cs->num_tracks-1);
1729 }
1730}
Josh Coalsone343ab22006-09-23 19:21:19 +00001731
1732FLAC_API FLAC__bool FLAC__metadata_object_picture_set_mime_type(FLAC__StreamMetadata *object, char *mime_type, FLAC__bool copy)
1733{
1734 char *old;
1735 size_t old_length, new_length;
1736
1737 FLAC__ASSERT(0 != object);
1738 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_PICTURE);
1739 FLAC__ASSERT(0 != mime_type);
1740
1741 old = object->data.picture.mime_type;
1742 old_length = old? strlen(old) : 0;
1743 new_length = strlen(mime_type);
1744
1745 /* do the copy first so that if we fail we leave the object untouched */
1746 if(copy) {
Josh Coalson0f008d22007-09-11 04:49:56 +00001747 if(new_length >= SIZE_MAX) /* overflow check */
1748 return false;
Josh Coalsone343ab22006-09-23 19:21:19 +00001749 if(!copy_bytes_((FLAC__byte**)(&object->data.picture.mime_type), (FLAC__byte*)mime_type, new_length+1))
1750 return false;
1751 }
1752 else {
1753 object->data.picture.mime_type = mime_type;
1754 }
1755
Erik de Castro Lopob105f9a2015-07-04 12:19:29 +10001756 free(old);
Josh Coalsone343ab22006-09-23 19:21:19 +00001757
1758 object->length -= old_length;
1759 object->length += new_length;
1760 return true;
1761}
1762
1763FLAC_API FLAC__bool FLAC__metadata_object_picture_set_description(FLAC__StreamMetadata *object, FLAC__byte *description, FLAC__bool copy)
1764{
1765 FLAC__byte *old;
1766 size_t old_length, new_length;
1767
1768 FLAC__ASSERT(0 != object);
1769 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_PICTURE);
1770 FLAC__ASSERT(0 != description);
1771
1772 old = object->data.picture.description;
1773 old_length = old? strlen((const char *)old) : 0;
1774 new_length = strlen((const char *)description);
1775
1776 /* do the copy first so that if we fail we leave the object untouched */
1777 if(copy) {
Josh Coalson0f008d22007-09-11 04:49:56 +00001778 if(new_length >= SIZE_MAX) /* overflow check */
1779 return false;
Josh Coalsone343ab22006-09-23 19:21:19 +00001780 if(!copy_bytes_(&object->data.picture.description, description, new_length+1))
1781 return false;
1782 }
1783 else {
1784 object->data.picture.description = description;
1785 }
1786
Erik de Castro Lopob105f9a2015-07-04 12:19:29 +10001787 free(old);
Josh Coalsone343ab22006-09-23 19:21:19 +00001788
1789 object->length -= old_length;
1790 object->length += new_length;
1791 return true;
1792}
1793
1794FLAC_API FLAC__bool FLAC__metadata_object_picture_set_data(FLAC__StreamMetadata *object, FLAC__byte *data, FLAC__uint32 length, FLAC__bool copy)
1795{
1796 FLAC__byte *old;
1797
1798 FLAC__ASSERT(0 != object);
1799 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_PICTURE);
1800 FLAC__ASSERT((0 != data && length > 0) || (0 == data && length == 0 && copy == false));
1801
1802 old = object->data.picture.data;
1803
1804 /* do the copy first so that if we fail we leave the object untouched */
1805 if(copy) {
1806 if(!copy_bytes_(&object->data.picture.data, data, length))
1807 return false;
1808 }
1809 else {
1810 object->data.picture.data = data;
1811 }
1812
Erik de Castro Lopob105f9a2015-07-04 12:19:29 +10001813 free(old);
Josh Coalsone343ab22006-09-23 19:21:19 +00001814
1815 object->length -= object->data.picture.data_length;
1816 object->data.picture.data_length = length;
1817 object->length += length;
1818 return true;
1819}
1820
1821FLAC_API FLAC__bool FLAC__metadata_object_picture_is_legal(const FLAC__StreamMetadata *object, const char **violation)
1822{
1823 FLAC__ASSERT(0 != object);
1824 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_PICTURE);
1825
1826 return FLAC__format_picture_is_legal(&object->data.picture, violation);
1827}