From: Josh Coalson Date: Fri, 23 Feb 2001 21:01:51 +0000 (+0000) Subject: add padding option to encoder X-Git-Tag: 1.2.0~2642 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=78236fa965a2ac017d53776cfde9bb128221bda1;p=platform%2Fupstream%2Fflac.git add padding option to encoder --- diff --git a/include/FLAC/encoder.h b/include/FLAC/encoder.h index a4c1464..902c279 100644 --- a/include/FLAC/encoder.h +++ b/include/FLAC/encoder.h @@ -69,6 +69,7 @@ typedef struct { bool do_exhaustive_model_search; /* 0 => use estimated bits per residual for scoring, 1 => generate all, take shortest */ unsigned rice_optimization_level; /* 0 => estimate Rice parameter based on residual variance, 1-8 => partition residual, use parameter for each */ uint64 total_samples_estimate; /* may be 0 if unknown. this will be a placeholder in the metadata block until the actual total is calculated */ + unsigned padding; /* size of PADDING block to add; 0 => do not add a PADDING block */ } FLAC__Encoder;