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

@@ -111,6 +111,12 @@ namespace OggFLAC {
return (bool)::OggFLAC__file_encoder_set_blocksize(encoder_, value);
}
bool File::set_apodization(const char *specification)
{
FLAC__ASSERT(is_valid());
return (bool)::OggFLAC__file_encoder_set_apodization(encoder_, specification);
}
bool File::set_max_lpc_order(unsigned value)
{
FLAC__ASSERT(is_valid());