aboutsummaryrefslogtreecommitdiffstats
path: root/fuzzer/aac_dec_fuzzer.cpp
diff options
context:
space:
mode:
authorXin Li <delphij@google.com>2021-08-14 06:31:12 +0000
committerXin Li <delphij@google.com>2021-08-14 06:31:12 +0000
commita950cd990528f07b93cc5af48145e7cb6bfeb3ca (patch)
treec6a1ddee22e29d9ea00ec2523071a711368189cd /fuzzer/aac_dec_fuzzer.cpp
parent6d10f91a77002b6371ebada491f507ef974ca572 (diff)
parentdcb2d8bd81e4f71007abed9bc89d67580a56b93a (diff)
downloadfdk-aac-a950cd990528f07b93cc5af48145e7cb6bfeb3ca.tar.gz
fdk-aac-a950cd990528f07b93cc5af48145e7cb6bfeb3ca.tar.bz2
fdk-aac-a950cd990528f07b93cc5af48145e7cb6bfeb3ca.zip
Merge sc-dev-plus-aosp-without-vendor@7634622
Merged-In: I18d2a0819145e1f02c8868674eab081ab243f0a9 Change-Id: Ia7a8fba7d5108dd4281a47b1aa15966bb6eee947
Diffstat (limited to 'fuzzer/aac_dec_fuzzer.cpp')
-rw-r--r--fuzzer/aac_dec_fuzzer.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/fuzzer/aac_dec_fuzzer.cpp b/fuzzer/aac_dec_fuzzer.cpp
index b5545fc..c970197 100644
--- a/fuzzer/aac_dec_fuzzer.cpp
+++ b/fuzzer/aac_dec_fuzzer.cpp
@@ -118,7 +118,8 @@ void Codec::decodeFrames(UCHAR *data, UINT size) {
INT_PCM outputBuf[kMaxOutBufferSize];
do {
mErrorCode =
- aacDecoder_DecodeFrame(mAacDecoderHandle, outputBuf, sizeof(outputBuf), 0);
+ aacDecoder_DecodeFrame(mAacDecoderHandle, outputBuf,
+ kMaxOutBufferSize /*size in number of INT_PCM, not bytes*/, 0);
} while (mErrorCode == AAC_DEC_OK);
UINT offset = inputSize - valid;
data += offset;