Home | History | Annotate | Download | only in FLAC

Lines Matching defs:picture

509 	/**< <A HREF="../format.html#metadata_block_picture">PICTURE</A> block */
728 /** An enumeration of the PICTURE types (see FLAC__StreamMetadataPicture and id3 v2.4 APIC tag). */
762 /** FLAC PICTURE structure. (See the
768 /**< The kind of picture stored. */
771 /**< Picture data's MIME type, in ASCII printable characters
773 * use picture data of MIME type \c image/jpeg or \c image/png. A
774 * MIME type of '-->' is also allowed, in which case the picture
782 /**< Picture's description in UTF-8, NUL terminated. In file storage,
789 /**< Picture's width in pixels. */
792 /**< Picture's height in pixels. */
795 /**< Picture's color depth in bits-per-pixel. */
798 /**< For indexed palettes (like GIF), picture's number of colors (the
803 /**< Length of binary picture data in bytes. */
806 /**< Binary picture data. */
850 FLAC__StreamMetadata_Picture picture;
986 /** Check picture data to see if it conforms to the FLAC specification.
988 * PICTURE block.
990 * \param picture A pointer to existing picture data to be checked.
998 * \code picture != NULL \endcode
1000 * \c false if picture data is illegal, else \c true.
1002 FLAC_API FLAC__bool FLAC__format_picture_is_legal(const FLAC__StreamMetadata_Picture *picture, const char **violation);