diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-03-29 21:23:13 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-03-29 21:23:13 +0200 |
commit | 08f8a684919ae05a3be6365bc69c5b3cfa57cc17 (patch) | |
tree | a30a741bf038cdb19a1be29f65772632e310da50 /libtoolame-dab/toolame.h | |
parent | 568f0147eb85e572f3a04d66fd4922a218f22e17 (diff) | |
download | ODR-AudioEnc-08f8a684919ae05a3be6365bc69c5b3cfa57cc17.tar.gz ODR-AudioEnc-08f8a684919ae05a3be6365bc69c5b3cfa57cc17.tar.bz2 ODR-AudioEnc-08f8a684919ae05a3be6365bc69c5b3cfa57cc17.zip |
Fix libtoolame-dab PAD insertion
Diffstat (limited to 'libtoolame-dab/toolame.h')
-rw-r--r-- | libtoolame-dab/toolame.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libtoolame-dab/toolame.h b/libtoolame-dab/toolame.h index 1c29e24..5450ca0 100644 --- a/libtoolame-dab/toolame.h +++ b/libtoolame-dab/toolame.h @@ -1,5 +1,6 @@ #ifndef __TOOLAME_H_ #define __TOOLAME_H_ +#include <stdlib.h> /* All exported functions shown here return zero * on success */ @@ -38,6 +39,7 @@ int toolame_set_pad(int pad_len); int toolame_encode_frame( short buffer[2][1152], unsigned char *xpad_data, + size_t xpad_len, unsigned char *output_buffer, size_t output_buffer_size); |