diff options
Diffstat (limited to 'ac3dec/downmix.h')
-rw-r--r-- | ac3dec/downmix.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/ac3dec/downmix.h b/ac3dec/downmix.h index 7537c62..dcfe1e1 100644 --- a/ac3dec/downmix.h +++ b/ac3dec/downmix.h @@ -25,4 +25,10 @@ * */ -void downmix(bsi_t* bsi, stream_samples_t stream_samples,sint_16 *s16_samples); +typedef struct dm_par_s { + float unit; + float clev; + float slev; +} dm_par_t; + +void downmix_init(); |