Displaying 1 result from an estimated 1 matches for "max_depth_seen".
2008 May 09
1
FLAC__metadata_get_picture()
...re, FLAC__StreamMetadata_Picture_Type type, 
const char *mime_type, const FLAC__byte *description, unsigned 
max_width, unsigned max_height, unsigned max_depth, unsigned max_colors)
  286 {
  287     FLAC__Metadata_SimpleIterator *it;
  288     FLAC__uint64 max_area_seen = 0;
  289     FLAC__uint64 max_depth_seen = 0;
  290
  291     FLAC__ASSERT(0 != filename);
  292     FLAC__ASSERT(0 != picture);
  293
  294     *picture = 0;
  295
  296     it = FLAC__metadata_simple_iterator_new();
  297     if(0 == it)
  298         return false;
  299     if(!FLAC__metadata_simple_iterator_init(it, filename, 
/*read_...