Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/core/VideoImpl.h
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ class VideoImpl
/// Loads a new media source. Subclasses override to set up their player.
virtual bool loadMovie(const QString& filename);

bool setPlayState(bool play);
virtual bool setPlayState(bool play);
bool getPlayState() const { return _playState; }

bool seekIsEnabled() const { return _seekEnabled; }
Expand Down
2 changes: 1 addition & 1 deletion src/core/VideoPlayerImpl.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class VideoPlayerImpl : public QObject, public VideoImpl
bool loadMovie(const QString& path) override;
bool isLive() override { return false; }

bool setPlayState(bool play);
bool setPlayState(bool play) override;
bool seekTo(qint64 positionMs) override;
void setRate(double rate) override;
void setVolume(double volume) override;
Expand Down
Loading