add set_apodization() to oggflac layers

This commit is contained in:
Josh Coalson
2006-05-01 05:27:13 +00:00
parent ea73d72ab6
commit c4fe269a90
9 changed files with 48 additions and 2 deletions

View File

@@ -106,6 +106,12 @@ namespace FLAC {
return (bool)::FLAC__stream_encoder_set_blocksize(encoder_, value);
}
bool Stream::set_apodization(const char *apodization)
{
FLAC__ASSERT(is_valid());
return (bool)::FLAC__stream_encoder_set_apodization(encoder_, specification);
}
bool Stream::set_max_lpc_order(unsigned value)
{
FLAC__ASSERT(is_valid());