X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Faudio_plot.cc;h=629de77672864eaf056b34310d665845dbdac267;hb=653b8ad853ba65d2140f8e4934f2ea3c0c98bd75;hp=079f69cdc005cc03478f7a370376ef5909bd7d63;hpb=ff19a446391f6a1d379689d52a0ac33a2af250df;p=dcpomatic.git diff --git a/src/wx/audio_plot.cc b/src/wx/audio_plot.cc index 079f69cdc..629de7767 100644 --- a/src/wx/audio_plot.cc +++ b/src/wx/audio_plot.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2013-2018 Carl Hetherington + Copyright (C) 2013-2020 Carl Hetherington This file is part of DCP-o-matic. @@ -19,10 +19,11 @@ */ #include "audio_plot.h" +#include "wx_util.h" +#include "film_viewer.h" #include "lib/audio_decoder.h" #include "lib/audio_analysis.h" #include "lib/compose.hpp" -#include "wx/wx_util.h" #include #include #include @@ -37,13 +38,16 @@ using std::map; using boost::bind; using boost::optional; using boost::shared_ptr; +using boost::weak_ptr; +using namespace dcpomatic; int const AudioPlot::_minimum = -70; int const AudioPlot::_cursor_size = 8; int const AudioPlot::max_smoothing = 128; -AudioPlot::AudioPlot (wxWindow* parent) +AudioPlot::AudioPlot (wxWindow* parent, weak_ptr viewer) : wxPanel (parent, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxFULL_REPAINT_ON_RESIZE) + , _viewer (viewer) , _smoothing (max_smoothing / 2) , _gain_correction (0) { @@ -86,6 +90,7 @@ AudioPlot::AudioPlot (wxWindow* parent) Bind (wxEVT_PAINT, boost::bind (&AudioPlot::paint, this)); Bind (wxEVT_MOTION, boost::bind (&AudioPlot::mouse_moved, this, _1)); Bind (wxEVT_LEAVE_WINDOW, boost::bind (&AudioPlot::mouse_leave, this, _1)); + Bind (wxEVT_LEFT_DOWN, boost::bind(&AudioPlot::left_down, this)); SetMinSize (wxSize (640, 512)); } @@ -266,7 +271,7 @@ AudioPlot::y_for_linear (float p, Metrics const & metrics) const p = 1e-4; } - return metrics.height - (20 * log10(p) - _minimum) * metrics.y_scale - metrics.y_origin; + return metrics.height - (linear_to_db(p) - _minimum) * metrics.y_scale - metrics.y_origin; } void @@ -293,7 +298,7 @@ AudioPlot::plot_peak (wxGraphicsPath& path, int channel, Metrics const & metrics Point ( wxPoint (metrics.db_label_width + i * metrics.x_scale, y_for_linear (peak, metrics)), DCPTime::from_frames (i * _analysis->samples_per_point(), _analysis->sample_rate()), - 20 * log10(peak) + linear_to_db(peak) ) ); } @@ -362,7 +367,7 @@ AudioPlot::plot_rms (wxGraphicsPath& path, int channel, Metrics const & metrics) Point ( wxPoint (metrics.db_label_width + i * metrics.x_scale, y_for_linear (p, metrics)), DCPTime::from_frames (i * _analysis->samples_per_point(), _analysis->sample_rate()), - 20 * log10(p) + linear_to_db(p) ) ); } @@ -396,7 +401,7 @@ AudioPlot::get_point (int channel, int point) const { AudioPoint p = _analysis->get_point (channel, point); for (int i = 0; i < AudioPoint::COUNT; ++i) { - p[i] *= pow (10, _gain_correction / 20); + p[i] *= db_to_linear(_gain_correction); } return p; @@ -426,6 +431,19 @@ AudioPlot::search (map const & search, wxMouseEvent const & ev, } } + +void +AudioPlot::left_down () +{ + if (_cursor) { + shared_ptr fv = _viewer.lock (); + if (fv) { + fv->seek (_cursor->time, true); + } + } +} + + void AudioPlot::mouse_moved (wxMouseEvent& ev) {