Instead of comparing the current time to the duration, the playback manager now has an explicit Ended state that jumps to the duration. The element simply reacts to that to trigger the ended event and attribute, along with all the other steps involved. This moves the ended event to fire after the seeked event, which matches other browsers' behavior. The spec doesn't explicitly say which order they should fire in.
25 lines
550 B
C++
25 lines
550 B
C++
/*
|
|
* Copyright (c) 2025-2026, Gregory Bertilson <gregory@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include "BufferingStateHandler.h"
|
|
|
|
#include <LibMedia/PlaybackManager.h>
|
|
#include <LibMedia/PlaybackStates/EndedStateHandler.h>
|
|
|
|
namespace Media {
|
|
|
|
void BufferingStateHandler::on_pipeline_status_changed(PipelineStatus status)
|
|
{
|
|
if (status == PipelineStatus::EndOfStream) {
|
|
manager().replace_state_handler<EndedStateHandler>();
|
|
return;
|
|
}
|
|
|
|
if (status != PipelineStatus::Blocked)
|
|
resume();
|
|
}
|
|
|
|
}
|