mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
38 lines
1.4 KiB
C++
38 lines
1.4 KiB
C++
|
|
/*
|
||
|
|
* Copyright (c) 2022, Gregory Bertilson <zaggy1024@gmail.com>
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include <LibTest/TestCase.h>
|
||
|
|
|
||
|
|
#include <LibVideo/MatroskaReader.h>
|
||
|
|
#include <LibVideo/VP9/Decoder.h>
|
||
|
|
|
||
|
|
TEST_CASE(webm_in_vp9)
|
||
|
|
{
|
||
|
|
auto matroska_document = Video::MatroskaReader::MatroskaReader::parse_matroska_from_file("./vp9_in_webm.webm"sv);
|
||
|
|
VERIFY(matroska_document);
|
||
|
|
auto video_track_optional = matroska_document->track_for_track_type(Video::TrackEntry::TrackType::Video);
|
||
|
|
VERIFY(video_track_optional.has_value());
|
||
|
|
auto video_track_entry = video_track_optional.value();
|
||
|
|
|
||
|
|
size_t cluster_index, block_index, frame_index;
|
||
|
|
Video::VP9::Decoder vp9_decoder;
|
||
|
|
|
||
|
|
for (cluster_index = 0; cluster_index < matroska_document->clusters().size(); cluster_index++) {
|
||
|
|
auto const& cluster = matroska_document->clusters()[cluster_index];
|
||
|
|
for (block_index = 0; block_index < cluster.blocks().size(); block_index++) {
|
||
|
|
auto const& block = cluster.blocks()[block_index];
|
||
|
|
if (block.track_number() != video_track_entry.track_number())
|
||
|
|
continue;
|
||
|
|
|
||
|
|
for (frame_index = 0; frame_index < block.frames().size(); frame_index++) {
|
||
|
|
MUST(vp9_decoder.decode(block.frames()[frame_index]));
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
VERIFY(cluster_index == 1 && block_index == 25 && frame_index == 1);
|
||
|
|
}
|