MCPcopy Create free account
hub / github.com/LMMS/lmms / flacStreamEncoderMetadataCallback

Function flacStreamEncoderMetadataCallback

src/core/SampleBuffer.cpp:1116–1123  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1114
1115
1116void flacStreamEncoderMetadataCallback( const FLAC__StreamEncoder *,
1117 const FLAC__StreamMetadata * _metadata,
1118 void * _client_data )
1119{
1120 QBuffer * b = static_cast<QBuffer *>( _client_data );
1121 b->seek( 0 );
1122 b->write( (const char *) _metadata, sizeof( *_metadata ) );
1123}
1124
1125#endif
1126

Callers

nothing calls this directly

Calls 2

seekMethod · 0.45
writeMethod · 0.45

Tested by

no test coverage detected