12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- /*
- * Copyright (C) 2023 Teluu Inc. (http://www.teluu.com)
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
- #include <stdio.h>
- #include <stdint.h>
- #include <stdlib.h>
- #include <pjlib.h>
- #include <pjmedia-codec/vpx_packetizer.h>
- #if defined(PJMEDIA_HAS_VIDEO) && (PJMEDIA_HAS_VIDEO != 0)
- #define kMinInputLength 10
- #define kMaxInputLength 5120
- pj_pool_factory *mem;
- int vpx_unpacketizer(const uint8_t *data, size_t size)
- {
- int ret = 0;
- pj_pool_t *pool;
- pj_status_t status;
- pjmedia_vpx_packetizer_cfg cfg;
- pjmedia_vpx_packetizer *pktz;
- unsigned desc_len = 0;
- pool = pj_pool_create(mem, "vpx_test", 1000, 1000, NULL);
- pj_bzero(&cfg, sizeof(cfg));
- status = pjmedia_vpx_packetizer_create(pool, &cfg, &pktz);
- if (status == PJ_SUCCESS) {
- status = pjmedia_vpx_unpacketize(pktz, data, size, &desc_len);
- }
- pj_pool_release(pool);
- return ret;
- }
- extern int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size)
- {
- int ret = 0;
- uint8_t *data;
- pj_caching_pool caching_pool;
- if (Size < kMinInputLength || Size > kMaxInputLength) {
- return 1;
- }
- /* Add null termination for the data */
- data = (uint8_t *)calloc((Size+1), sizeof(uint8_t));
- memcpy((void *)data, (void *)Data, Size);
- /* Init */
- pj_init();
- pj_caching_pool_init(&caching_pool, &pj_pool_factory_default_policy, 0);
- pj_log_set_level(0);
- mem = &caching_pool.factory;
- /* Fuzz */
- ret = vpx_unpacketizer(data, Size);
- free(data);
- pj_caching_pool_destroy(&caching_pool);
- return ret;
- }
- #else
- extern int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size)
- {
- PJ_UNUSED_ARG(Data);
- PJ_UNUSED_ARG(Size);
- return 0;
- }
- #endif
|