diff options
Diffstat (limited to 'dgedit/player.h')
-rw-r--r-- | dgedit/player.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/dgedit/player.h b/dgedit/player.h index af278f5..0289cd5 100644 --- a/dgedit/player.h +++ b/dgedit/player.h @@ -63,7 +63,19 @@ public slots: void setGainDB(double gain_db); signals: + /** + * The absolute maximum of samples seen since last update. + */ void peakUpdate(double peak); + + /** + * The absolute maximum of samples seen since last update in dB. + */ + void peakUpdateDB(double peak_db); + + /** + * The sample position of the player. + */ void positionUpdate(size_t position); private slots: |