The "GR-PEACH_Audio_Playback_7InchLCD_Sample" is a sample code that can provides high-resolution audio playback of FLAC format files. It also allows the user to audio-playback control functions such as play, pause, and stop by manipulating key switches.

Dependencies:   GR-PEACH_video R_BSP TLV320_RBSP USBHost_custom

Fork of GR-PEACH_Audio_Playback_Sample by Renesas

Embed: (wiki syntax)

« Back to documentation index

FLAC__StreamMetadata Struct Reference

FLAC__StreamMetadata Struct Reference
[FLAC/format.h: format components]

FLAC metadata block structure. More...

#include <format.h>

Data Fields

FLAC__MetadataType type
 The type of the metadata block; used determine which member of the data union to dereference.
FLAC__bool is_last
 true if this metadata block is the last, else false
unsigned length
 Length, in bytes, of the block data as it appears in the stream.
union {
data
 Polymorphic block data; use the type value to determine which to use.

Detailed Description

FLAC metadata block structure.

(c.f. format specification)

Definition at line 834 of file include/FLAC/format.h.


Field Documentation

union { ... } data

Polymorphic block data; use the type value to determine which to use.

FLAC__bool is_last

true if this metadata block is the last, else false

Definition at line 841 of file include/FLAC/format.h.

unsigned length

Length, in bytes, of the block data as it appears in the stream.

Definition at line 844 of file include/FLAC/format.h.

The type of the metadata block; used determine which member of the data union to dereference.

If type >= FLAC__METADATA_TYPE_UNDEFINED then data.unknown must be used.

Definition at line 836 of file include/FLAC/format.h.