1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 03:57:44 +00:00

LibVideo: Remove Starting playback state in favor of Seeking to zero

This commit is contained in:
Zaggy1024 2023-04-12 00:42:14 -05:00 committed by Sam Atkins
parent 4df9ef487d
commit e391f18e9e
2 changed files with 2 additions and 38 deletions

View file

@ -92,7 +92,6 @@ public:
};
enum class PlaybackState {
Starting,
Playing,
Paused,
Buffering,
@ -146,7 +145,6 @@ private:
class PlaybackStateHandler;
// Abstract class to allow resuming play/pause after the state is completed.
class ResumingStateHandler;
class StartingStateHandler;
class PlayingStateHandler;
class PausedStateHandler;
class BufferingStateHandler;