mirror of https://github.com/google/oss-fuzz.git
100 lines
3.7 KiB
C++
100 lines
3.7 KiB
C++
|
// Copyright 2021 Google LLC
|
||
|
//
|
||
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
// you may not use this file except in compliance with the License.
|
||
|
// You may obtain a copy of the License at
|
||
|
//
|
||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||
|
//
|
||
|
// Unless required by applicable law or agreed to in writing, software
|
||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
// See the License for the specific language governing permissions and
|
||
|
// limitations under the License.
|
||
|
|
||
|
#include <fuzzer/FuzzedDataProvider.h>
|
||
|
#include <math.h>
|
||
|
#include <stdint.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <string.h>
|
||
|
|
||
|
#include "opus.h"
|
||
|
#include "opus_defines.h"
|
||
|
#include "opus_projection.h"
|
||
|
#include "opus_types.h"
|
||
|
#include "../celt/os_support.h"
|
||
|
|
||
|
#define MAX_PACKET (1500)
|
||
|
static unsigned char out[MAX_PACKET];
|
||
|
|
||
|
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
|
||
|
FuzzedDataProvider fdp(data, size);
|
||
|
|
||
|
opus_int32 nb_channels = fdp.ConsumeIntegralInRange(0, 255);
|
||
|
const opus_int32 frequency = fdp.PickValueInArray({8, 12, 16, 24, 48}) * 1000;
|
||
|
int streams = fdp.ConsumeIntegralInRange(0, 255);
|
||
|
int coupled_streams = fdp.ConsumeIntegralInRange(0, 255);
|
||
|
int frame_size_ms_x2 =
|
||
|
fdp.PickValueInArray({5, 10, 20, 40, 80, 120, 160, 200, 240});
|
||
|
int frame_size = frame_size_ms_x2 * frequency / 2000;
|
||
|
int application =
|
||
|
fdp.PickValueInArray({OPUS_APPLICATION_AUDIO, OPUS_APPLICATION_VOIP,
|
||
|
OPUS_APPLICATION_RESTRICTED_LOWDELAY});
|
||
|
|
||
|
|
||
|
int err = OPUS_OK;
|
||
|
int mapping_family = fdp.PickValueInArray({0, 1, 2, 3, 255});
|
||
|
OpusProjectionEncoder *enc = opus_projection_ambisonics_encoder_create(
|
||
|
frequency, nb_channels, mapping_family, &streams, &coupled_streams,
|
||
|
application, &err);
|
||
|
|
||
|
if (err != OPUS_OK || enc == NULL) {
|
||
|
opus_projection_encoder_destroy(enc);
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
opus_projection_encoder_ctl(
|
||
|
enc, OPUS_SET_COMPLEXITY(fdp.ConsumeIntegralInRange(0, 10)));
|
||
|
opus_projection_encoder_ctl(enc, OPUS_SET_VBR(fdp.ConsumeBool()));
|
||
|
opus_projection_encoder_ctl(enc, OPUS_SET_VBR_CONSTRAINT(fdp.ConsumeBool()));
|
||
|
opus_projection_encoder_ctl(
|
||
|
enc, OPUS_SET_FORCE_CHANNELS(fdp.PickValueInArray({OPUS_AUTO, 1, 2})));
|
||
|
opus_projection_encoder_ctl(
|
||
|
enc, OPUS_SET_MAX_BANDWIDTH(fdp.PickValueInArray(
|
||
|
{OPUS_BANDWIDTH_NARROWBAND, OPUS_BANDWIDTH_MEDIUMBAND,
|
||
|
OPUS_BANDWIDTH_WIDEBAND, OPUS_BANDWIDTH_SUPERWIDEBAND,
|
||
|
OPUS_BANDWIDTH_FULLBAND})));
|
||
|
opus_projection_encoder_ctl(enc, OPUS_SET_INBAND_FEC(fdp.ConsumeBool()));
|
||
|
opus_projection_encoder_ctl(
|
||
|
enc, OPUS_SET_PACKET_LOSS_PERC(fdp.ConsumeIntegralInRange(0, 100)));
|
||
|
opus_projection_encoder_ctl(enc, OPUS_SET_DTX(fdp.ConsumeBool()));
|
||
|
opus_projection_encoder_ctl(
|
||
|
enc, OPUS_SET_LSB_DEPTH(fdp.ConsumeIntegralInRange(8, 24)));
|
||
|
opus_projection_encoder_ctl(
|
||
|
enc, OPUS_SET_PREDICTION_DISABLED((fdp.ConsumeBool())));
|
||
|
opus_projection_encoder_ctl(
|
||
|
enc, OPUS_SET_SIGNAL(fdp.PickValueInArray(
|
||
|
{OPUS_AUTO, OPUS_SIGNAL_VOICE, OPUS_SIGNAL_MUSIC})));
|
||
|
opus_projection_encoder_ctl(
|
||
|
enc, OPUS_SET_PHASE_INVERSION_DISABLED(((fdp.ConsumeBool()))));
|
||
|
|
||
|
const int pcm_size = sizeof(opus_int16) * frame_size * nb_channels;
|
||
|
opus_int16 *pcm = (opus_int16 *)opus_alloc(pcm_size);
|
||
|
if (pcm == NULL) {
|
||
|
opus_projection_encoder_destroy(enc);
|
||
|
return 0;
|
||
|
}
|
||
|
memset(pcm, 0, pcm_size);
|
||
|
|
||
|
if (pcm_size == fdp.ConsumeData(pcm, pcm_size)) {
|
||
|
const int len =
|
||
|
opus_projection_encode(enc, pcm, frame_size, out, MAX_PACKET);
|
||
|
(void)len;
|
||
|
}
|
||
|
|
||
|
opus_free(pcm);
|
||
|
opus_projection_encoder_destroy(enc);
|
||
|
|
||
|
return 0;
|
||
|
}
|