Skip to content

Commit

Permalink
EngineBase: Fix mismatched definition
Browse files Browse the repository at this point in the history
  • Loading branch information
jonaski committed Jan 17, 2025
1 parent 121f45d commit d73cbc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/engine/enginebase.h
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ class EngineBase : public QObject {

// Plays a media stream represented with the URL 'u' from the given 'beginning' to the given 'end' (usually from 0 to a song's length).
// Both markers should be passed in nanoseconds. 'end' can be negative, indicating that the real length of 'u' stream is unknown.
bool Play(const QUrl &media_url, const QUrl &stream_url, const bool pause, const TrackChangeFlags flags, const bool force_stop_at_end, const quint64 beginning_nanosec, const qint64 end_nanosec, const quint64 offset_nanosec, const std::optional<double> ebur128_integrated_loudness_lufs);
bool Play(const QUrl &media_url, const QUrl &stream_url, const bool pause, const TrackChangeFlags flags, const bool force_stop_at_end, const quint64 beginning_offset_nanosec, const qint64 end_offset_nanosec, const quint64 offset_nanosec, const std::optional<double> ebur128_integrated_loudness_lufs);
void SetVolume(const uint volume);

public Q_SLOTS:
Expand Down

0 comments on commit d73cbc3

Please sign in to comment.