mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
19 lines
522 B
C++
19 lines
522 B
C++
/*
|
|
* Copyright (c) 2022, Gregory Bertilson <zaggy1024@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibMedia/FFmpeg/FFmpegVideoDecoder.h>
|
|
|
|
#include "TestMediaCommon.h"
|
|
|
|
static NonnullOwnPtr<Media::VideoDecoder> make_decoder(Media::Matroska::SampleIterator const& iterator)
|
|
{
|
|
return MUST(Media::FFmpeg::FFmpegVideoDecoder::try_create(Media::CodecID::H264, iterator.track().codec_private_data()));
|
|
}
|
|
|
|
TEST_CASE(avc_in_matroska)
|
|
{
|
|
decode_video("./avc_in_matroska.mkv"sv, 50, make_decoder);
|
|
}
|