1
0
mirror of https://github.com/mstorsjo/fdk-aac.git synced 2025-02-19 20:40:36 +01:00

Increase the output buffer size for HE-AAC

This commit is contained in:
Martin Storsjo 2018-07-05 00:29:50 +03:00
parent 8484697c4b
commit 3a81d6ae68

View File

@ -77,7 +77,7 @@ int main(int argc, char *argv[]) {
return 1;
}
output_size = 8*2*1024;
output_size = 8*2*2048;
output_buf = (uint8_t*) malloc(output_size);
decode_buf = (int16_t*) malloc(output_size);