1 /* metaflac - Command-line FLAC metadata editor
2 * Copyright (C) 2001,2002,2003,2004 Josh Coalson
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version 2
7 * of the License, or (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 #include "operations.h"
22 #include "FLAC/assert.h"
23 #include "FLAC/metadata.h"
24 #include "share/grabbag.h"
29 static void show_version();
30 static FLAC__bool do_major_operation(const CommandLineOptions *options);
31 static FLAC__bool do_major_operation_on_file(const char *filename, const CommandLineOptions *options);
32 static FLAC__bool do_major_operation__list(const char *filename, FLAC__Metadata_Chain *chain, const CommandLineOptions *options);
33 static FLAC__bool do_major_operation__append(FLAC__Metadata_Chain *chain, const CommandLineOptions *options);
34 static FLAC__bool do_major_operation__remove(FLAC__Metadata_Chain *chain, const CommandLineOptions *options);
35 static FLAC__bool do_major_operation__remove_all(FLAC__Metadata_Chain *chain, const CommandLineOptions *options);
36 static FLAC__bool do_shorthand_operations(const CommandLineOptions *options);
37 static FLAC__bool do_shorthand_operations_on_file(const char *filename, const CommandLineOptions *options);
38 static FLAC__bool do_shorthand_operation(const char *filename, FLAC__bool prefix_with_filename, FLAC__Metadata_Chain *chain, const Operation *operation, FLAC__bool *needs_write, FLAC__bool utf8_convert);
39 static FLAC__bool do_shorthand_operation__add_replay_gain(char **filenames, unsigned num_files, FLAC__bool preserve_modtime);
40 static FLAC__bool do_shorthand_operation__add_padding(const char *filename, FLAC__Metadata_Chain *chain, unsigned length, FLAC__bool *needs_write);
42 static FLAC__bool passes_filter(const CommandLineOptions *options, const FLAC__StreamMetadata *block, unsigned block_number);
43 static void write_metadata(const char *filename, FLAC__StreamMetadata *block, unsigned block_number, FLAC__bool raw, FLAC__bool hexdump_application);
45 /* from operations_shorthand_seektable.c */
46 extern FLAC__bool do_shorthand_operation__add_seekpoints(const char *filename, FLAC__Metadata_Chain *chain, const char *specification, FLAC__bool *needs_write);
48 /* from operations_shorthand_streaminfo.c */
49 extern FLAC__bool do_shorthand_operation__streaminfo(const char *filename, FLAC__bool prefix_with_filename, FLAC__Metadata_Chain *chain, const Operation *operation, FLAC__bool *needs_write);
51 /* from operations_shorthand_vorbiscomment.c */
52 extern FLAC__bool do_shorthand_operation__vorbis_comment(const char *filename, FLAC__bool prefix_with_filename, FLAC__Metadata_Chain *chain, const Operation *operation, FLAC__bool *needs_write, FLAC__bool raw);
54 /* from operations_shorthand_cuesheet.c */
55 extern FLAC__bool do_shorthand_operation__cuesheet(const char *filename, FLAC__Metadata_Chain *chain, const Operation *operation, FLAC__bool *needs_write);
58 FLAC__bool do_operations(const CommandLineOptions *options)
62 if(options->show_long_help) {
65 if(options->show_version) {
68 else if(options->args.checks.num_major_ops > 0) {
69 FLAC__ASSERT(options->args.checks.num_shorthand_ops == 0);
70 FLAC__ASSERT(options->args.checks.num_major_ops == 1);
71 FLAC__ASSERT(options->args.checks.num_major_ops == options->ops.num_operations);
72 ok = do_major_operation(options);
74 else if(options->args.checks.num_shorthand_ops > 0) {
75 FLAC__ASSERT(options->args.checks.num_shorthand_ops == options->ops.num_operations);
76 ok = do_shorthand_operations(options);
88 printf("metaflac %s\n", FLAC__VERSION_STRING);
91 FLAC__bool do_major_operation(const CommandLineOptions *options)
96 /*@@@ to die after first error, v--- add '&& ok' here */
97 for(i = 0; i < options->num_files; i++)
98 ok &= do_major_operation_on_file(options->filenames[i], options);
103 FLAC__bool do_major_operation_on_file(const char *filename, const CommandLineOptions *options)
105 FLAC__bool ok = true, needs_write = false;
106 FLAC__Metadata_Chain *chain = FLAC__metadata_chain_new();
109 die("out of memory allocating chain");
111 if(!FLAC__metadata_chain_read(chain, filename)) {
112 fprintf(stderr, "%s: ERROR: reading metadata, status = \"%s\"\n", filename, FLAC__Metadata_ChainStatusString[FLAC__metadata_chain_status(chain)]);
116 switch(options->ops.operations[0].type) {
118 ok = do_major_operation__list(options->prefix_with_filename? filename : 0, chain, options);
121 ok = do_major_operation__append(chain, options);
125 ok = do_major_operation__remove(chain, options);
129 ok = do_major_operation__remove_all(chain, options);
132 case OP__MERGE_PADDING:
133 FLAC__metadata_chain_merge_padding(chain);
136 case OP__SORT_PADDING:
137 FLAC__metadata_chain_sort_padding(chain);
145 if(ok && needs_write) {
146 if(options->use_padding)
147 FLAC__metadata_chain_sort_padding(chain);
148 ok = FLAC__metadata_chain_write(chain, options->use_padding, options->preserve_modtime);
150 fprintf(stderr, "%s: ERROR: writing FLAC file, error = %s\n", filename, FLAC__Metadata_ChainStatusString[FLAC__metadata_chain_status(chain)]);
153 FLAC__metadata_chain_delete(chain);
158 FLAC__bool do_major_operation__list(const char *filename, FLAC__Metadata_Chain *chain, const CommandLineOptions *options)
160 FLAC__Metadata_Iterator *iterator = FLAC__metadata_iterator_new();
161 FLAC__StreamMetadata *block;
162 FLAC__bool ok = true;
163 unsigned block_number;
166 die("out of memory allocating iterator");
168 FLAC__metadata_iterator_init(iterator, chain);
172 block = FLAC__metadata_iterator_get_block(iterator);
175 fprintf(stderr, "%s: ERROR: couldn't get block from chain\n", filename);
176 else if(passes_filter(options, FLAC__metadata_iterator_get_block(iterator), block_number))
177 write_metadata(filename, block, block_number, !options->utf8_convert, options->application_data_format_is_hexdump);
179 } while(ok && FLAC__metadata_iterator_next(iterator));
181 FLAC__metadata_iterator_delete(iterator);
186 FLAC__bool do_major_operation__append(FLAC__Metadata_Chain *chain, const CommandLineOptions *options)
188 (void) chain, (void) options;
189 fprintf(stderr, "ERROR: --append not implemented yet\n"); /*@@@*/
193 FLAC__bool do_major_operation__remove(FLAC__Metadata_Chain *chain, const CommandLineOptions *options)
195 FLAC__Metadata_Iterator *iterator = FLAC__metadata_iterator_new();
196 FLAC__bool ok = true;
197 unsigned block_number;
200 die("out of memory allocating iterator");
202 FLAC__metadata_iterator_init(iterator, chain);
205 while(ok && FLAC__metadata_iterator_next(iterator)) {
207 if(passes_filter(options, FLAC__metadata_iterator_get_block(iterator), block_number)) {
208 ok &= FLAC__metadata_iterator_delete_block(iterator, options->use_padding);
209 if(options->use_padding)
210 ok &= FLAC__metadata_iterator_next(iterator);
214 FLAC__metadata_iterator_delete(iterator);
219 FLAC__bool do_major_operation__remove_all(FLAC__Metadata_Chain *chain, const CommandLineOptions *options)
221 FLAC__Metadata_Iterator *iterator = FLAC__metadata_iterator_new();
222 FLAC__bool ok = true;
225 die("out of memory allocating iterator");
227 FLAC__metadata_iterator_init(iterator, chain);
229 while(ok && FLAC__metadata_iterator_next(iterator)) {
230 ok &= FLAC__metadata_iterator_delete_block(iterator, options->use_padding);
231 if(options->use_padding)
232 ok &= FLAC__metadata_iterator_next(iterator);
235 FLAC__metadata_iterator_delete(iterator);
240 FLAC__bool do_shorthand_operations(const CommandLineOptions *options)
243 FLAC__bool ok = true;
245 /* to die after first error, v--- add '&& ok' here */
246 for(i = 0; i < options->num_files; i++)
247 ok &= do_shorthand_operations_on_file(options->filenames[i], options);
249 /* check if OP__ADD_REPLAY_GAIN requested */
250 if(ok && options->num_files > 0) {
251 for(i = 0; i < options->ops.num_operations; i++) {
252 if(options->ops.operations[i].type == OP__ADD_REPLAY_GAIN)
253 ok = do_shorthand_operation__add_replay_gain(options->filenames, options->num_files, options->preserve_modtime);
260 FLAC__bool do_shorthand_operations_on_file(const char *filename, const CommandLineOptions *options)
263 FLAC__bool ok = true, needs_write = false, use_padding = options->use_padding;
264 FLAC__Metadata_Chain *chain = FLAC__metadata_chain_new();
267 die("out of memory allocating chain");
269 if(!FLAC__metadata_chain_read(chain, filename)) {
270 fprintf(stderr, "%s: ERROR: reading metadata, status = \"%s\"\n", filename, FLAC__Metadata_ChainStatusString[FLAC__metadata_chain_status(chain)]);
274 for(i = 0; i < options->ops.num_operations && ok; i++) {
276 * Do OP__ADD_SEEKPOINT last to avoid decoding twice if both
277 * --add-seekpoint and --import-cuesheet-from are used.
279 if(options->ops.operations[i].type != OP__ADD_SEEKPOINT)
280 ok &= do_shorthand_operation(filename, options->prefix_with_filename, chain, &options->ops.operations[i], &needs_write, options->utf8_convert);
282 /* The following seems counterintuitive but the meaning
283 * of 'use_padding' is 'try to keep the overall metadata
284 * to its original size, adding or truncating extra
285 * padding if necessary' which is why we need to turn it
286 * off in this case. If we don't, the extra padding block
287 * will just be truncated.
289 if(options->ops.operations[i].type == OP__ADD_PADDING)
294 * Do OP__ADD_SEEKPOINT last to avoid decoding twice if both
295 * --add-seekpoint and --import-cuesheet-from are used.
297 for(i = 0; i < options->ops.num_operations && ok; i++) {
298 if(options->ops.operations[i].type == OP__ADD_SEEKPOINT)
299 ok &= do_shorthand_operation(filename, options->prefix_with_filename, chain, &options->ops.operations[i], &needs_write, options->utf8_convert);
302 if(ok && needs_write) {
304 FLAC__metadata_chain_sort_padding(chain);
305 ok = FLAC__metadata_chain_write(chain, use_padding, options->preserve_modtime);
307 fprintf(stderr, "%s: ERROR: writing FLAC file, error = %s\n", filename, FLAC__Metadata_ChainStatusString[FLAC__metadata_chain_status(chain)]);
310 FLAC__metadata_chain_delete(chain);
315 FLAC__bool do_shorthand_operation(const char *filename, FLAC__bool prefix_with_filename, FLAC__Metadata_Chain *chain, const Operation *operation, FLAC__bool *needs_write, FLAC__bool utf8_convert)
317 FLAC__bool ok = true;
319 switch(operation->type) {
320 case OP__SHOW_MD5SUM:
321 case OP__SHOW_MIN_BLOCKSIZE:
322 case OP__SHOW_MAX_BLOCKSIZE:
323 case OP__SHOW_MIN_FRAMESIZE:
324 case OP__SHOW_MAX_FRAMESIZE:
325 case OP__SHOW_SAMPLE_RATE:
326 case OP__SHOW_CHANNELS:
328 case OP__SHOW_TOTAL_SAMPLES:
330 case OP__SET_MIN_BLOCKSIZE:
331 case OP__SET_MAX_BLOCKSIZE:
332 case OP__SET_MIN_FRAMESIZE:
333 case OP__SET_MAX_FRAMESIZE:
334 case OP__SET_SAMPLE_RATE:
335 case OP__SET_CHANNELS:
337 case OP__SET_TOTAL_SAMPLES:
338 ok = do_shorthand_operation__streaminfo(filename, prefix_with_filename, chain, operation, needs_write);
340 case OP__SHOW_VC_VENDOR:
341 case OP__SHOW_VC_FIELD:
342 case OP__REMOVE_VC_ALL:
343 case OP__REMOVE_VC_FIELD:
344 case OP__REMOVE_VC_FIRSTFIELD:
345 case OP__SET_VC_FIELD:
346 case OP__IMPORT_VC_FROM:
347 case OP__EXPORT_VC_TO:
348 ok = do_shorthand_operation__vorbis_comment(filename, prefix_with_filename, chain, operation, needs_write, !utf8_convert);
350 case OP__IMPORT_CUESHEET_FROM:
351 case OP__EXPORT_CUESHEET_TO:
352 ok = do_shorthand_operation__cuesheet(filename, chain, operation, needs_write);
354 case OP__ADD_SEEKPOINT:
355 ok = do_shorthand_operation__add_seekpoints(filename, chain, operation->argument.add_seekpoint.specification, needs_write);
357 case OP__ADD_REPLAY_GAIN:
358 /* this command is always executed last */
361 case OP__ADD_PADDING:
362 ok = do_shorthand_operation__add_padding(filename, chain, operation->argument.add_padding.length, needs_write);
373 FLAC__bool do_shorthand_operation__add_replay_gain(char **filenames, unsigned num_files, FLAC__bool preserve_modtime)
375 FLAC__StreamMetadata streaminfo;
376 float *title_gains = 0, *title_peaks = 0;
377 float album_gain, album_peak;
378 unsigned sample_rate = 0;
379 unsigned bits_per_sample = 0;
380 unsigned channels = 0;
383 FLAC__bool first = true;
385 FLAC__ASSERT(num_files > 0);
387 for(i = 0; i < num_files; i++) {
388 FLAC__ASSERT(0 != filenames[i]);
389 if(!FLAC__metadata_get_streaminfo(filenames[i], &streaminfo)) {
390 fprintf(stderr, "%s: ERROR: can't open file or get STREAMINFO block\n", filenames[i]);
395 sample_rate = streaminfo.data.stream_info.sample_rate;
396 bits_per_sample = streaminfo.data.stream_info.bits_per_sample;
397 channels = streaminfo.data.stream_info.channels;
400 if(sample_rate != streaminfo.data.stream_info.sample_rate) {
401 fprintf(stderr, "%s: ERROR: sample rate of %u Hz does not match previous files' %u Hz\n", filenames[i], streaminfo.data.stream_info.sample_rate, sample_rate);
404 if(bits_per_sample != streaminfo.data.stream_info.bits_per_sample) {
405 fprintf(stderr, "%s: ERROR: resolution of %u bps does not match previous files' %u bps\n", filenames[i], streaminfo.data.stream_info.bits_per_sample, bits_per_sample);
408 if(channels != streaminfo.data.stream_info.channels) {
409 fprintf(stderr, "%s: ERROR: # channels (%u) does not match previous files' (%u)\n", filenames[i], streaminfo.data.stream_info.channels, channels);
413 if(!grabbag__replaygain_is_valid_sample_frequency(sample_rate)) {
414 fprintf(stderr, "%s: ERROR: sample rate of %u Hz is not supported\n", filenames[i], sample_rate);
417 if(channels != 1 && channels != 2) {
418 fprintf(stderr, "%s: ERROR: # of channels (%u) is not supported, must be 1 or 2\n", filenames[i], channels);
422 FLAC__ASSERT(bits_per_sample >= FLAC__MIN_BITS_PER_SAMPLE && bits_per_sample <= FLAC__MAX_BITS_PER_SAMPLE);
424 if(!grabbag__replaygain_init(sample_rate)) {
426 /* double protection */
427 fprintf(stderr, "internal error\n");
432 0 == (title_gains = (float*)malloc(sizeof(float) * num_files)) ||
433 0 == (title_peaks = (float*)malloc(sizeof(float) * num_files))
435 die("out of memory allocating space for title gains/peaks");
437 for(i = 0; i < num_files; i++) {
438 if(0 != (error = grabbag__replaygain_analyze_file(filenames[i], title_gains+i, title_peaks+i))) {
439 fprintf(stderr, "%s: ERROR: during analysis (%s)\n", filenames[i], error);
445 grabbag__replaygain_get_album(&album_gain, &album_peak);
447 for(i = 0; i < num_files; i++) {
448 if(0 != (error = grabbag__replaygain_store_to_file(filenames[i], album_gain, album_peak, title_gains[i], title_peaks[i], preserve_modtime))) {
449 fprintf(stderr, "%s: ERROR: writing tags (%s)\n", filenames[i], error);
461 FLAC__bool do_shorthand_operation__add_padding(const char *filename, FLAC__Metadata_Chain *chain, unsigned length, FLAC__bool *needs_write)
463 FLAC__StreamMetadata *padding = 0;
464 FLAC__Metadata_Iterator *iterator = FLAC__metadata_iterator_new();
467 die("out of memory allocating iterator");
469 FLAC__metadata_iterator_init(iterator, chain);
471 while(FLAC__metadata_iterator_next(iterator))
474 padding = FLAC__metadata_object_new(FLAC__METADATA_TYPE_PADDING);
476 die("out of memory allocating PADDING block");
478 padding->length = length;
480 if(!FLAC__metadata_iterator_insert_block_after(iterator, padding)) {
481 fprintf(stderr, "%s: ERROR: adding new PADDING block to metadata, status =\"%s\"\n", filename, FLAC__Metadata_ChainStatusString[FLAC__metadata_chain_status(chain)]);
482 FLAC__metadata_object_delete(padding);
483 FLAC__metadata_iterator_delete(iterator);
487 FLAC__metadata_iterator_delete(iterator);
492 FLAC__bool passes_filter(const CommandLineOptions *options, const FLAC__StreamMetadata *block, unsigned block_number)
495 FLAC__bool matches_number = false, matches_type = false;
496 FLAC__bool has_block_number_arg = false;
498 for(i = 0; i < options->args.num_arguments; i++) {
499 if(options->args.arguments[i].type == ARG__BLOCK_TYPE || options->args.arguments[i].type == ARG__EXCEPT_BLOCK_TYPE) {
500 for(j = 0; j < options->args.arguments[i].value.block_type.num_entries; j++) {
501 if(options->args.arguments[i].value.block_type.entries[j].type == block->type) {
502 if(block->type != FLAC__METADATA_TYPE_APPLICATION || !options->args.arguments[i].value.block_type.entries[j].filter_application_by_id || 0 == memcmp(options->args.arguments[i].value.block_type.entries[j].application_id, block->data.application.id, FLAC__STREAM_METADATA_APPLICATION_ID_LEN/8))
507 else if(options->args.arguments[i].type == ARG__BLOCK_NUMBER) {
508 has_block_number_arg = true;
509 for(j = 0; j < options->args.arguments[i].value.block_number.num_entries; j++) {
510 if(options->args.arguments[i].value.block_number.entries[j] == block_number)
511 matches_number = true;
516 if(!has_block_number_arg)
517 matches_number = true;
519 if(options->args.checks.has_block_type) {
520 FLAC__ASSERT(!options->args.checks.has_except_block_type);
522 else if(options->args.checks.has_except_block_type)
523 matches_type = !matches_type;
527 return matches_number && matches_type;
530 void write_metadata(const char *filename, FLAC__StreamMetadata *block, unsigned block_number, FLAC__bool raw, FLAC__bool hexdump_application)
534 /*@@@ yuck, should do this with a varargs function or something: */
535 #define PPR if(filename)printf("%s:",filename);
536 PPR; printf("METADATA block #%u\n", block_number);
537 PPR; printf(" type: %u (%s)\n", (unsigned)block->type, block->type < FLAC__METADATA_TYPE_UNDEFINED? FLAC__MetadataTypeString[block->type] : "UNKNOWN");
538 PPR; printf(" is last: %s\n", block->is_last? "true":"false");
539 PPR; printf(" length: %u\n", block->length);
541 switch(block->type) {
542 case FLAC__METADATA_TYPE_STREAMINFO:
543 PPR; printf(" minumum blocksize: %u samples\n", block->data.stream_info.min_blocksize);
544 PPR; printf(" maximum blocksize: %u samples\n", block->data.stream_info.max_blocksize);
545 PPR; printf(" minimum framesize: %u bytes\n", block->data.stream_info.min_framesize);
546 PPR; printf(" maximum framesize: %u bytes\n", block->data.stream_info.max_framesize);
547 PPR; printf(" sample_rate: %u Hz\n", block->data.stream_info.sample_rate);
548 PPR; printf(" channels: %u\n", block->data.stream_info.channels);
549 PPR; printf(" bits-per-sample: %u\n", block->data.stream_info.bits_per_sample);
550 PPR; printf(" total samples: %llu\n", block->data.stream_info.total_samples);
551 PPR; printf(" MD5 signature: ");
552 for(i = 0; i < 16; i++) {
553 printf("%02x", (unsigned)block->data.stream_info.md5sum[i]);
557 case FLAC__METADATA_TYPE_PADDING:
558 /* nothing to print */
560 case FLAC__METADATA_TYPE_APPLICATION:
561 PPR; printf(" application ID: ");
562 for(i = 0; i < 4; i++)
563 printf("%02x", block->data.application.id[i]);
565 PPR; printf(" data contents:\n");
566 if(0 != block->data.application.data) {
567 if(hexdump_application)
568 hexdump(filename, block->data.application.data, block->length - FLAC__STREAM_METADATA_HEADER_LENGTH, " ");
570 (void) local_fwrite(block->data.application.data, 1, block->length - FLAC__STREAM_METADATA_HEADER_LENGTH, stdout);
573 case FLAC__METADATA_TYPE_SEEKTABLE:
574 PPR; printf(" seek points: %u\n", block->data.seek_table.num_points);
575 for(i = 0; i < block->data.seek_table.num_points; i++) {
576 if(block->data.seek_table.points[i].sample_number != FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER) {
577 PPR; printf(" point %d: sample_number=%llu, stream_offset=%llu, frame_samples=%u\n", i, block->data.seek_table.points[i].sample_number, block->data.seek_table.points[i].stream_offset, block->data.seek_table.points[i].frame_samples);
580 PPR; printf(" point %d: PLACEHOLDER\n", i);
584 case FLAC__METADATA_TYPE_VORBIS_COMMENT:
585 PPR; printf(" vendor string: ");
586 write_vc_field(0, &block->data.vorbis_comment.vendor_string, raw, stdout);
587 PPR; printf(" comments: %u\n", block->data.vorbis_comment.num_comments);
588 for(i = 0; i < block->data.vorbis_comment.num_comments; i++) {
589 PPR; printf(" comment[%u]: ", i);
590 write_vc_field(0, &block->data.vorbis_comment.comments[i], raw, stdout);
593 case FLAC__METADATA_TYPE_CUESHEET:
594 PPR; printf(" media catalog number: %s\n", block->data.cue_sheet.media_catalog_number);
595 PPR; printf(" lead-in: %llu\n", block->data.cue_sheet.lead_in);
596 PPR; printf(" is CD: %s\n", block->data.cue_sheet.is_cd? "true":"false");
597 PPR; printf(" number of tracks: %u\n", block->data.cue_sheet.num_tracks);
598 for(i = 0; i < block->data.cue_sheet.num_tracks; i++) {
599 const FLAC__StreamMetadata_CueSheet_Track *track = block->data.cue_sheet.tracks+i;
600 const FLAC__bool is_last = (i == block->data.cue_sheet.num_tracks-1);
601 const FLAC__bool is_leadout = is_last && track->num_indices == 0;
602 PPR; printf(" track[%u]\n", i);
603 PPR; printf(" offset: %llu\n", track->offset);
605 PPR; printf(" number: %u (%s)\n", (unsigned)track->number, is_leadout? "LEAD-OUT" : "INVALID");
608 PPR; printf(" number: %u\n", (unsigned)track->number);
611 PPR; printf(" ISRC: %s\n", track->isrc);
612 PPR; printf(" type: %s\n", track->type == 1? "DATA" : "AUDIO");
613 PPR; printf(" pre-emphasis: %s\n", track->pre_emphasis? "true":"false");
614 PPR; printf(" number of index points: %u\n", track->num_indices);
615 for(j = 0; j < track->num_indices; j++) {
616 const FLAC__StreamMetadata_CueSheet_Index *index = track->indices+j;
617 PPR; printf(" index[%u]\n", j);
618 PPR; printf(" offset: %llu\n", index->offset);
619 PPR; printf(" number: %u\n", (unsigned)index->number);
625 PPR; printf(" data contents:\n");
626 if(0 != block->data.unknown.data)
627 hexdump(filename, block->data.unknown.data, block->length, " ");