mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 23:20:20 +00:00
7c10e1a08d
This change is in preparation for implementing audio codecs into the library and using audio as timing for video playback.
19 lines
558 B
C++
19 lines
558 B
C++
/*
|
|
* Copyright (c) 2022, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibMedia/Containers/Matroska/Reader.h>
|
|
#include <stddef.h>
|
|
|
|
extern "C" int LLVMFuzzerTestOneInput(u8 const* data, size_t size)
|
|
{
|
|
AK::set_debug_enabled(false);
|
|
auto matroska_reader_result = Media::Matroska::Reader::from_data({ data, size });
|
|
if (matroska_reader_result.is_error())
|
|
return 0;
|
|
(void)matroska_reader_result.value().segment_information();
|
|
(void)matroska_reader_result.value().track_count();
|
|
return 0;
|
|
}
|