minor comments
[platform/upstream/flac.git] / src / metaflac / operations.c
1 /* metaflac - Command-line FLAC metadata editor
2  * Copyright (C) 2001,2002,2003,2004,2005,2006  Josh Coalson
3  *
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.
8  *
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.
13  *
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.
17  */
18
19 #if HAVE_CONFIG_H
20 #  include <config.h>
21 #endif
22
23 #include "operations.h"
24 #include "usage.h"
25 #include "utils.h"
26 #include "FLAC/assert.h"
27 #include "FLAC/metadata.h"
28 #include "share/grabbag.h"
29 #include <stdio.h>
30 #include <stdlib.h>
31 #include <string.h>
32
33 static void show_version();
34 static FLAC__bool do_major_operation(const CommandLineOptions *options);
35 static FLAC__bool do_major_operation_on_file(const char *filename, const CommandLineOptions *options);
36 static FLAC__bool do_major_operation__list(const char *filename, FLAC__Metadata_Chain *chain, const CommandLineOptions *options);
37 static FLAC__bool do_major_operation__append(FLAC__Metadata_Chain *chain, const CommandLineOptions *options);
38 static FLAC__bool do_major_operation__remove(FLAC__Metadata_Chain *chain, const CommandLineOptions *options);
39 static FLAC__bool do_major_operation__remove_all(FLAC__Metadata_Chain *chain, const CommandLineOptions *options);
40 static FLAC__bool do_shorthand_operations(const CommandLineOptions *options);
41 static FLAC__bool do_shorthand_operations_on_file(const char *filename, const CommandLineOptions *options);
42 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);
43 static FLAC__bool do_shorthand_operation__add_replay_gain(char **filenames, unsigned num_files, FLAC__bool preserve_modtime);
44 static FLAC__bool do_shorthand_operation__add_padding(const char *filename, FLAC__Metadata_Chain *chain, unsigned length, FLAC__bool *needs_write);
45
46 static FLAC__bool passes_filter(const CommandLineOptions *options, const FLAC__StreamMetadata *block, unsigned block_number);
47 static void write_metadata(const char *filename, FLAC__StreamMetadata *block, unsigned block_number, FLAC__bool raw, FLAC__bool hexdump_application);
48
49 /* from operations_shorthand_seektable.c */
50 extern FLAC__bool do_shorthand_operation__add_seekpoints(const char *filename, FLAC__Metadata_Chain *chain, const char *specification, FLAC__bool *needs_write);
51
52 /* from operations_shorthand_streaminfo.c */
53 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);
54
55 /* from operations_shorthand_vorbiscomment.c */
56 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);
57
58 /* from operations_shorthand_cuesheet.c */
59 extern FLAC__bool do_shorthand_operation__cuesheet(const char *filename, FLAC__Metadata_Chain *chain, const Operation *operation, FLAC__bool *needs_write);
60
61 /* from operations_shorthand_picture.c */
62 extern FLAC__bool do_shorthand_operation__picture(const char *filename, FLAC__Metadata_Chain *chain, const Operation *operation, FLAC__bool *needs_write);
63
64
65 FLAC__bool do_operations(const CommandLineOptions *options)
66 {
67         FLAC__bool ok = true;
68
69         if(options->show_long_help) {
70                 long_usage(0);
71         }
72         if(options->show_version) {
73                 show_version();
74         }
75         else if(options->args.checks.num_major_ops > 0) {
76                 FLAC__ASSERT(options->args.checks.num_shorthand_ops == 0);
77                 FLAC__ASSERT(options->args.checks.num_major_ops == 1);
78                 FLAC__ASSERT(options->args.checks.num_major_ops == options->ops.num_operations);
79                 ok = do_major_operation(options);
80         }
81         else if(options->args.checks.num_shorthand_ops > 0) {
82                 FLAC__ASSERT(options->args.checks.num_shorthand_ops == options->ops.num_operations);
83                 ok = do_shorthand_operations(options);
84         }
85
86         return ok;
87 }
88
89 /*
90  * local routines
91  */
92
93 void show_version()
94 {
95         printf("metaflac %s\n", FLAC__VERSION_STRING);
96 }
97
98 FLAC__bool do_major_operation(const CommandLineOptions *options)
99 {
100         unsigned i;
101         FLAC__bool ok = true;
102
103         /* to die after first error,     v---  add '&& ok' here */
104         for(i = 0; i < options->num_files; i++)
105                 ok &= do_major_operation_on_file(options->filenames[i], options);
106
107         return ok;
108 }
109
110 FLAC__bool do_major_operation_on_file(const char *filename, const CommandLineOptions *options)
111 {
112         FLAC__bool ok = true, needs_write = false;
113         FLAC__Metadata_Chain *chain = FLAC__metadata_chain_new();
114
115         if(0 == chain)
116                 die("out of memory allocating chain");
117
118         if(!FLAC__metadata_chain_read(chain, filename)) {
119                 print_error_with_chain_status(chain, "%s: ERROR: reading metadata", filename);
120                 FLAC__metadata_chain_delete(chain);
121                 return false;
122         }
123
124         switch(options->ops.operations[0].type) {
125                 case OP__LIST:
126                         ok = do_major_operation__list(options->prefix_with_filename? filename : 0, chain, options);
127                         break;
128                 case OP__APPEND:
129                         ok = do_major_operation__append(chain, options);
130                         needs_write = true;
131                         break;
132                 case OP__REMOVE:
133                         ok = do_major_operation__remove(chain, options);
134                         needs_write = true;
135                         break;
136                 case OP__REMOVE_ALL:
137                         ok = do_major_operation__remove_all(chain, options);
138                         needs_write = true;
139                         break;
140                 case OP__MERGE_PADDING:
141                         FLAC__metadata_chain_merge_padding(chain);
142                         needs_write = true;
143                         break;
144                 case OP__SORT_PADDING:
145                         FLAC__metadata_chain_sort_padding(chain);
146                         needs_write = true;
147                         break;
148                 default:
149                         FLAC__ASSERT(0);
150                         return false;
151         }
152
153         if(ok && needs_write) {
154                 if(options->use_padding)
155                         FLAC__metadata_chain_sort_padding(chain);
156                 ok = FLAC__metadata_chain_write(chain, options->use_padding, options->preserve_modtime);
157                 if(!ok)
158                         print_error_with_chain_status(chain, "%s: ERROR: writing FLAC file", filename);
159         }
160
161         FLAC__metadata_chain_delete(chain);
162
163         return ok;
164 }
165
166 FLAC__bool do_major_operation__list(const char *filename, FLAC__Metadata_Chain *chain, const CommandLineOptions *options)
167 {
168         FLAC__Metadata_Iterator *iterator = FLAC__metadata_iterator_new();
169         FLAC__StreamMetadata *block;
170         FLAC__bool ok = true;
171         unsigned block_number;
172
173         if(0 == iterator)
174                 die("out of memory allocating iterator");
175
176         FLAC__metadata_iterator_init(iterator, chain);
177
178         block_number = 0;
179         do {
180                 block = FLAC__metadata_iterator_get_block(iterator);
181                 ok &= (0 != block);
182                 if(!ok)
183                         fprintf(stderr, "%s: ERROR: couldn't get block from chain\n", filename);
184                 else if(passes_filter(options, FLAC__metadata_iterator_get_block(iterator), block_number))
185                         write_metadata(filename, block, block_number, !options->utf8_convert, options->application_data_format_is_hexdump);
186                 block_number++;
187         } while(ok && FLAC__metadata_iterator_next(iterator));
188
189         FLAC__metadata_iterator_delete(iterator);
190
191         return ok;
192 }
193
194 FLAC__bool do_major_operation__append(FLAC__Metadata_Chain *chain, const CommandLineOptions *options)
195 {
196         (void) chain, (void) options;
197         fprintf(stderr, "ERROR: --append not implemented yet\n");
198         return false;
199 }
200
201 FLAC__bool do_major_operation__remove(FLAC__Metadata_Chain *chain, const CommandLineOptions *options)
202 {
203         FLAC__Metadata_Iterator *iterator = FLAC__metadata_iterator_new();
204         FLAC__bool ok = true;
205         unsigned block_number;
206
207         if(0 == iterator)
208                 die("out of memory allocating iterator");
209
210         FLAC__metadata_iterator_init(iterator, chain);
211
212         block_number = 0;
213         while(ok && FLAC__metadata_iterator_next(iterator)) {
214                 block_number++;
215                 if(passes_filter(options, FLAC__metadata_iterator_get_block(iterator), block_number)) {
216                         ok &= FLAC__metadata_iterator_delete_block(iterator, options->use_padding);
217                         if(options->use_padding)
218                                 ok &= FLAC__metadata_iterator_next(iterator);
219                 }
220         }
221
222         FLAC__metadata_iterator_delete(iterator);
223
224         return ok;
225 }
226
227 FLAC__bool do_major_operation__remove_all(FLAC__Metadata_Chain *chain, const CommandLineOptions *options)
228 {
229         FLAC__Metadata_Iterator *iterator = FLAC__metadata_iterator_new();
230         FLAC__bool ok = true;
231
232         if(0 == iterator)
233                 die("out of memory allocating iterator");
234
235         FLAC__metadata_iterator_init(iterator, chain);
236
237         while(ok && FLAC__metadata_iterator_next(iterator)) {
238                 ok &= FLAC__metadata_iterator_delete_block(iterator, options->use_padding);
239                 if(options->use_padding)
240                         ok &= FLAC__metadata_iterator_next(iterator);
241         }
242
243         FLAC__metadata_iterator_delete(iterator);
244
245         return ok;
246 }
247
248 FLAC__bool do_shorthand_operations(const CommandLineOptions *options)
249 {
250         unsigned i;
251         FLAC__bool ok = true;
252
253         /* to die after first error,     v---  add '&& ok' here */
254         for(i = 0; i < options->num_files; i++)
255                 ok &= do_shorthand_operations_on_file(options->filenames[i], options);
256
257         /* check if OP__ADD_REPLAY_GAIN requested */
258         if(ok && options->num_files > 0) {
259                 for(i = 0; i < options->ops.num_operations; i++) {
260                         if(options->ops.operations[i].type == OP__ADD_REPLAY_GAIN)
261                                 ok = do_shorthand_operation__add_replay_gain(options->filenames, options->num_files, options->preserve_modtime);
262                 }
263         }
264
265         return ok;
266 }
267
268 FLAC__bool do_shorthand_operations_on_file(const char *filename, const CommandLineOptions *options)
269 {
270         unsigned i;
271         FLAC__bool ok = true, needs_write = false, use_padding = options->use_padding;
272         FLAC__Metadata_Chain *chain = FLAC__metadata_chain_new();
273
274         if(0 == chain)
275                 die("out of memory allocating chain");
276
277         if(!FLAC__metadata_chain_read(chain, filename)) {
278                 print_error_with_chain_status(chain, "%s: ERROR: reading metadata", filename);
279                 return false;
280         }
281
282         for(i = 0; i < options->ops.num_operations && ok; i++) {
283                 /*
284                  * Do OP__ADD_SEEKPOINT last to avoid decoding twice if both
285                  * --add-seekpoint and --import-cuesheet-from are used.
286                  */
287                 if(options->ops.operations[i].type != OP__ADD_SEEKPOINT)
288                         ok &= do_shorthand_operation(filename, options->prefix_with_filename, chain, &options->ops.operations[i], &needs_write, options->utf8_convert);
289
290                 /* The following seems counterintuitive but the meaning
291                  * of 'use_padding' is 'try to keep the overall metadata
292                  * to its original size, adding or truncating extra
293                  * padding if necessary' which is why we need to turn it
294                  * off in this case.  If we don't, the extra padding block
295                  * will just be truncated.
296                  */
297                 if(options->ops.operations[i].type == OP__ADD_PADDING)
298                         use_padding = false;
299         }
300
301         /*
302          * Do OP__ADD_SEEKPOINT last to avoid decoding twice if both
303          * --add-seekpoint and --import-cuesheet-from are used.
304          */
305         for(i = 0; i < options->ops.num_operations && ok; i++) {
306                 if(options->ops.operations[i].type == OP__ADD_SEEKPOINT)
307                         ok &= do_shorthand_operation(filename, options->prefix_with_filename, chain, &options->ops.operations[i], &needs_write, options->utf8_convert);
308         }
309
310         if(ok && needs_write) {
311                 if(use_padding)
312                         FLAC__metadata_chain_sort_padding(chain);
313                 ok = FLAC__metadata_chain_write(chain, use_padding, options->preserve_modtime);
314                 if(!ok)
315                         print_error_with_chain_status(chain, "%s: ERROR: writing FLAC file", filename);
316         }
317
318         FLAC__metadata_chain_delete(chain);
319
320         return ok;
321 }
322
323 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)
324 {
325         FLAC__bool ok = true;
326
327         switch(operation->type) {
328                 case OP__SHOW_MD5SUM:
329                 case OP__SHOW_MIN_BLOCKSIZE:
330                 case OP__SHOW_MAX_BLOCKSIZE:
331                 case OP__SHOW_MIN_FRAMESIZE:
332                 case OP__SHOW_MAX_FRAMESIZE:
333                 case OP__SHOW_SAMPLE_RATE:
334                 case OP__SHOW_CHANNELS:
335                 case OP__SHOW_BPS:
336                 case OP__SHOW_TOTAL_SAMPLES:
337                 case OP__SET_MD5SUM:
338                 case OP__SET_MIN_BLOCKSIZE:
339                 case OP__SET_MAX_BLOCKSIZE:
340                 case OP__SET_MIN_FRAMESIZE:
341                 case OP__SET_MAX_FRAMESIZE:
342                 case OP__SET_SAMPLE_RATE:
343                 case OP__SET_CHANNELS:
344                 case OP__SET_BPS:
345                 case OP__SET_TOTAL_SAMPLES:
346                         ok = do_shorthand_operation__streaminfo(filename, prefix_with_filename, chain, operation, needs_write);
347                         break;
348                 case OP__SHOW_VC_VENDOR:
349                 case OP__SHOW_VC_FIELD:
350                 case OP__REMOVE_VC_ALL:
351                 case OP__REMOVE_VC_FIELD:
352                 case OP__REMOVE_VC_FIRSTFIELD:
353                 case OP__SET_VC_FIELD:
354                 case OP__IMPORT_VC_FROM:
355                 case OP__EXPORT_VC_TO:
356                         ok = do_shorthand_operation__vorbis_comment(filename, prefix_with_filename, chain, operation, needs_write, !utf8_convert);
357                         break;
358                 case OP__IMPORT_CUESHEET_FROM:
359                 case OP__EXPORT_CUESHEET_TO:
360                         ok = do_shorthand_operation__cuesheet(filename, chain, operation, needs_write);
361                         break;
362                 case OP__IMPORT_PICTURE:
363                         ok = do_shorthand_operation__picture(filename, chain, operation, needs_write);
364                         break;
365                 case OP__ADD_SEEKPOINT:
366                         ok = do_shorthand_operation__add_seekpoints(filename, chain, operation->argument.add_seekpoint.specification, needs_write);
367                         break;
368                 case OP__ADD_REPLAY_GAIN:
369                         /* this command is always executed last */
370                         ok = true;
371                         break;
372                 case OP__ADD_PADDING:
373                         ok = do_shorthand_operation__add_padding(filename, chain, operation->argument.add_padding.length, needs_write);
374                         break;
375                 default:
376                         ok = false;
377                         FLAC__ASSERT(0);
378                         break;
379         };
380
381         return ok;
382 }
383
384 FLAC__bool do_shorthand_operation__add_replay_gain(char **filenames, unsigned num_files, FLAC__bool preserve_modtime)
385 {
386         FLAC__StreamMetadata streaminfo;
387         float *title_gains = 0, *title_peaks = 0;
388         float album_gain, album_peak;
389         unsigned sample_rate = 0;
390         unsigned bits_per_sample = 0;
391         unsigned channels = 0;
392         unsigned i;
393         const char *error;
394         FLAC__bool first = true;
395
396         FLAC__ASSERT(num_files > 0);
397
398         for(i = 0; i < num_files; i++) {
399                 FLAC__ASSERT(0 != filenames[i]);
400                 if(!FLAC__metadata_get_streaminfo(filenames[i], &streaminfo)) {
401                         fprintf(stderr, "%s: ERROR: can't open file or get STREAMINFO block\n", filenames[i]);
402                         return false;
403                 }
404                 if(first) {
405                         first = false;
406                         sample_rate = streaminfo.data.stream_info.sample_rate;
407                         bits_per_sample = streaminfo.data.stream_info.bits_per_sample;
408                         channels = streaminfo.data.stream_info.channels;
409                 }
410                 else {
411                         if(sample_rate != streaminfo.data.stream_info.sample_rate) {
412                                 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);
413                                 return false;
414                         }
415                         if(bits_per_sample != streaminfo.data.stream_info.bits_per_sample) {
416                                 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);
417                                 return false;
418                         }
419                         if(channels != streaminfo.data.stream_info.channels) {
420                                 fprintf(stderr, "%s: ERROR: # channels (%u) does not match previous files' (%u)\n", filenames[i], streaminfo.data.stream_info.channels, channels);
421                                 return false;
422                         }
423                 }
424                 if(!grabbag__replaygain_is_valid_sample_frequency(sample_rate)) {
425                         fprintf(stderr, "%s: ERROR: sample rate of %u Hz is not supported\n", filenames[i], sample_rate);
426                         return false;
427                 }
428                 if(channels != 1 && channels != 2) {
429                         fprintf(stderr, "%s: ERROR: # of channels (%u) is not supported, must be 1 or 2\n", filenames[i], channels);
430                         return false;
431                 }
432         }
433         FLAC__ASSERT(bits_per_sample >= FLAC__MIN_BITS_PER_SAMPLE && bits_per_sample <= FLAC__MAX_BITS_PER_SAMPLE);
434
435         if(!grabbag__replaygain_init(sample_rate)) {
436                 FLAC__ASSERT(0);
437                 /* double protection */
438                 fprintf(stderr, "internal error\n");
439                 return false;
440         }
441
442         if(
443                 0 == (title_gains = (float*)malloc(sizeof(float) * num_files)) ||
444                 0 == (title_peaks = (float*)malloc(sizeof(float) * num_files))
445         )
446                 die("out of memory allocating space for title gains/peaks");
447
448         for(i = 0; i < num_files; i++) {
449                 if(0 != (error = grabbag__replaygain_analyze_file(filenames[i], title_gains+i, title_peaks+i))) {
450                         fprintf(stderr, "%s: ERROR: during analysis (%s)\n", filenames[i], error);
451                         free(title_gains);
452                         free(title_peaks);
453                         return false;
454                 }
455         }
456         grabbag__replaygain_get_album(&album_gain, &album_peak);
457
458         for(i = 0; i < num_files; i++) {
459                 if(0 != (error = grabbag__replaygain_store_to_file(filenames[i], album_gain, album_peak, title_gains[i], title_peaks[i], preserve_modtime))) {
460                         fprintf(stderr, "%s: ERROR: writing tags (%s)\n", filenames[i], error);
461                         free(title_gains);
462                         free(title_peaks);
463                         return false;
464                 }
465         }
466
467         free(title_gains);
468         free(title_peaks);
469         return true;
470 }
471
472 FLAC__bool do_shorthand_operation__add_padding(const char *filename, FLAC__Metadata_Chain *chain, unsigned length, FLAC__bool *needs_write)
473 {
474         FLAC__StreamMetadata *padding = 0;
475         FLAC__Metadata_Iterator *iterator = FLAC__metadata_iterator_new();
476
477         if(0 == iterator)
478                 die("out of memory allocating iterator");
479
480         FLAC__metadata_iterator_init(iterator, chain);
481
482         while(FLAC__metadata_iterator_next(iterator))
483                 ;
484
485         padding = FLAC__metadata_object_new(FLAC__METADATA_TYPE_PADDING);
486         if(0 == padding)
487                 die("out of memory allocating PADDING block");
488
489         padding->length = length;
490
491         if(!FLAC__metadata_iterator_insert_block_after(iterator, padding)) {
492                 print_error_with_chain_status(chain, "%s: ERROR: adding new PADDING block to metadata", filename);
493                 FLAC__metadata_object_delete(padding);
494                 FLAC__metadata_iterator_delete(iterator);
495                 return false;
496         }
497
498         FLAC__metadata_iterator_delete(iterator);
499         *needs_write = true;
500         return true;
501 }
502
503 FLAC__bool passes_filter(const CommandLineOptions *options, const FLAC__StreamMetadata *block, unsigned block_number)
504 {
505         unsigned i, j;
506         FLAC__bool matches_number = false, matches_type = false;
507         FLAC__bool has_block_number_arg = false;
508
509         for(i = 0; i < options->args.num_arguments; i++) {
510                 if(options->args.arguments[i].type == ARG__BLOCK_TYPE || options->args.arguments[i].type == ARG__EXCEPT_BLOCK_TYPE) {
511                         for(j = 0; j < options->args.arguments[i].value.block_type.num_entries; j++) {
512                                 if(options->args.arguments[i].value.block_type.entries[j].type == block->type) {
513                                         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))
514                                                 matches_type = true;
515                                 }
516                         }
517                 }
518                 else if(options->args.arguments[i].type == ARG__BLOCK_NUMBER) {
519                         has_block_number_arg = true;
520                         for(j = 0; j < options->args.arguments[i].value.block_number.num_entries; j++) {
521                                 if(options->args.arguments[i].value.block_number.entries[j] == block_number)
522                                         matches_number = true;
523                         }
524                 }
525         }
526
527         if(!has_block_number_arg)
528                 matches_number = true;
529
530         if(options->args.checks.has_block_type) {
531                 FLAC__ASSERT(!options->args.checks.has_except_block_type);
532         }
533         else if(options->args.checks.has_except_block_type)
534                 matches_type = !matches_type;
535         else
536                 matches_type = true;
537
538         return matches_number && matches_type;
539 }
540
541 void write_metadata(const char *filename, FLAC__StreamMetadata *block, unsigned block_number, FLAC__bool raw, FLAC__bool hexdump_application)
542 {
543         unsigned i, j;
544
545 /*@@@ yuck, should do this with a varargs function or something: */
546 #define PPR if(filename)printf("%s:",filename);
547         PPR; printf("METADATA block #%u\n", block_number);
548         PPR; printf("  type: %u (%s)\n", (unsigned)block->type, block->type < FLAC__METADATA_TYPE_UNDEFINED? FLAC__MetadataTypeString[block->type] : "UNKNOWN");
549         PPR; printf("  is last: %s\n", block->is_last? "true":"false");
550         PPR; printf("  length: %u\n", block->length);
551
552         switch(block->type) {
553                 case FLAC__METADATA_TYPE_STREAMINFO:
554                         PPR; printf("  minimum blocksize: %u samples\n", block->data.stream_info.min_blocksize);
555                         PPR; printf("  maximum blocksize: %u samples\n", block->data.stream_info.max_blocksize);
556                         PPR; printf("  minimum framesize: %u bytes\n", block->data.stream_info.min_framesize);
557                         PPR; printf("  maximum framesize: %u bytes\n", block->data.stream_info.max_framesize);
558                         PPR; printf("  sample_rate: %u Hz\n", block->data.stream_info.sample_rate);
559                         PPR; printf("  channels: %u\n", block->data.stream_info.channels);
560                         PPR; printf("  bits-per-sample: %u\n", block->data.stream_info.bits_per_sample);
561 #ifdef _MSC_VER
562                         PPR; printf("  total samples: %I64u\n", block->data.stream_info.total_samples);
563 #else
564                         PPR; printf("  total samples: %llu\n", block->data.stream_info.total_samples);
565 #endif
566                         PPR; printf("  MD5 signature: ");
567                         for(i = 0; i < 16; i++) {
568                                 printf("%02x", (unsigned)block->data.stream_info.md5sum[i]);
569                         }
570                         printf("\n");
571                         break;
572                 case FLAC__METADATA_TYPE_PADDING:
573                         /* nothing to print */
574                         break;
575                 case FLAC__METADATA_TYPE_APPLICATION:
576                         PPR; printf("  application ID: ");
577                         for(i = 0; i < 4; i++)
578                                 printf("%02x", block->data.application.id[i]);
579                         printf("\n");
580                         PPR; printf("  data contents:\n");
581                         if(0 != block->data.application.data) {
582                                 if(hexdump_application)
583                                         hexdump(filename, block->data.application.data, block->length - FLAC__STREAM_METADATA_HEADER_LENGTH, "    ");
584                                 else
585                                         (void) local_fwrite(block->data.application.data, 1, block->length - FLAC__STREAM_METADATA_HEADER_LENGTH, stdout);
586                         }
587                         break;
588                 case FLAC__METADATA_TYPE_SEEKTABLE:
589                         PPR; printf("  seek points: %u\n", block->data.seek_table.num_points);
590                         for(i = 0; i < block->data.seek_table.num_points; i++) {
591                                 if(block->data.seek_table.points[i].sample_number != FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER) {
592 #ifdef _MSC_VER
593                                         PPR; printf("    point %u: sample_number=%I64u, stream_offset=%I64u, 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);
594 #else
595                                         PPR; printf("    point %u: 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);
596 #endif
597                                 }
598                                 else {
599                                         PPR; printf("    point %u: PLACEHOLDER\n", i);
600                                 }
601                         }
602                         break;
603                 case FLAC__METADATA_TYPE_VORBIS_COMMENT:
604                         PPR; printf("  vendor string: ");
605                         write_vc_field(0, &block->data.vorbis_comment.vendor_string, raw, stdout);
606                         PPR; printf("  comments: %u\n", block->data.vorbis_comment.num_comments);
607                         for(i = 0; i < block->data.vorbis_comment.num_comments; i++) {
608                                 PPR; printf("    comment[%u]: ", i);
609                                 write_vc_field(0, &block->data.vorbis_comment.comments[i], raw, stdout);
610                         }
611                         break;
612                 case FLAC__METADATA_TYPE_CUESHEET:
613                         PPR; printf("  media catalog number: %s\n", block->data.cue_sheet.media_catalog_number);
614 #ifdef _MSC_VER
615                         PPR; printf("  lead-in: %I64u\n", block->data.cue_sheet.lead_in);
616 #else
617                         PPR; printf("  lead-in: %llu\n", block->data.cue_sheet.lead_in);
618 #endif
619                         PPR; printf("  is CD: %s\n", block->data.cue_sheet.is_cd? "true":"false");
620                         PPR; printf("  number of tracks: %u\n", block->data.cue_sheet.num_tracks);
621                         for(i = 0; i < block->data.cue_sheet.num_tracks; i++) {
622                                 const FLAC__StreamMetadata_CueSheet_Track *track = block->data.cue_sheet.tracks+i;
623                                 const FLAC__bool is_last = (i == block->data.cue_sheet.num_tracks-1);
624                                 const FLAC__bool is_leadout = is_last && track->num_indices == 0;
625                                 PPR; printf("    track[%u]\n", i);
626 #ifdef _MSC_VER
627                                 PPR; printf("      offset: %I64u\n", track->offset);
628 #else
629                                 PPR; printf("      offset: %llu\n", track->offset);
630 #endif
631                                 if(is_last) {
632                                         PPR; printf("      number: %u (%s)\n", (unsigned)track->number, is_leadout? "LEAD-OUT" : "INVALID");
633                                 }
634                                 else {
635                                         PPR; printf("      number: %u\n", (unsigned)track->number);
636                                 }
637                                 if(!is_leadout) {
638                                         PPR; printf("      ISRC: %s\n", track->isrc);
639                                         PPR; printf("      type: %s\n", track->type == 1? "DATA" : "AUDIO");
640                                         PPR; printf("      pre-emphasis: %s\n", track->pre_emphasis? "true":"false");
641                                         PPR; printf("      number of index points: %u\n", track->num_indices);
642                                         for(j = 0; j < track->num_indices; j++) {
643                                                 const FLAC__StreamMetadata_CueSheet_Index *index = track->indices+j;
644                                                 PPR; printf("        index[%u]\n", j);
645 #ifdef _MSC_VER
646                                                 PPR; printf("          offset: %I64u\n", index->offset);
647 #else
648                                                 PPR; printf("          offset: %llu\n", index->offset);
649 #endif
650                                                 PPR; printf("          number: %u\n", (unsigned)index->number);
651                                         }
652                                 }
653                         }
654                         break;
655                 case FLAC__METADATA_TYPE_PICTURE:
656                         PPR; printf("  type: %u (%s)\n", block->data.picture.type, block->data.picture.type < FLAC__STREAM_METADATA_PICTURE_TYPE_UNDEFINED? FLAC__StreamMetadata_Picture_TypeString[block->data.picture.type] : "UNDEFINED");
657                         PPR; printf("  MIME type: %s\n", block->data.picture.mime_type);
658                         PPR; printf("  description: %s\n", block->data.picture.description);
659                         PPR; printf("  width: %u\n", (unsigned)block->data.picture.width);
660                         PPR; printf("  height: %u\n", (unsigned)block->data.picture.height);
661                         PPR; printf("  depth: %u\n", (unsigned)block->data.picture.depth);
662                         PPR; printf("  colors: %u%s\n", (unsigned)block->data.picture.colors, block->data.picture.colors? "" : " (unindexed)");
663                         PPR; printf("  data length: %u\n", (unsigned)block->data.picture.data_length);
664                         PPR; printf("  data:\n");
665                         if(0 != block->data.picture.data)
666                                 hexdump(filename, block->data.picture.data, block->data.picture.data_length, "    ");
667                         break;
668                 default:
669                         PPR; printf("  data contents:\n");
670                         if(0 != block->data.unknown.data)
671                                 hexdump(filename, block->data.unknown.data, block->length, "    ");
672                         break;
673         }
674 #undef PPR
675 }