- Provider -> producer - (Audio|Video)DataProvider -> Decoded(Audio|Video)Producer - MediaTimeProvider remains suffixed Provider, moves out of the Providers folder to the root of LibMedia This brings the naming more in line with the intended split functionality split between different nodes in the pipeline.
14 lines
435 B
C++
14 lines
435 B
C++
/*
|
|
* Copyright (c) 2024, Jelle Raaijmakers <jelle@ladybird.org>
|
|
* Copyright (c) 2025, Gregory Bertilson <gregory@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <Tests/LibMedia/TestMediaCommon.h>
|
|
|
|
TEST_CASE(44_1Khz_stereo)
|
|
{
|
|
// FIXME: 96 samples are marked to be discarded, but DecodedAudioProducer currently is not aware of this.
|
|
decode_audio("vorbis/44_1Khz_stereo.ogg"sv, 44100, 2, 352800 + 96);
|
|
}
|