2fb5ac5697e136ff28886bb0c2f9b200e00e2900
[ardour.git] / gtk2_ardour / audio_region_editor.cc
1 /*
2     Copyright (C) 2001 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <boost/lexical_cast.hpp>
21
22 #include "pbd/memento_command.h"
23 #include "pbd/stateful_diff_command.h"
24 #include "pbd/pthread_utils.h"
25
26 #include "ardour/session.h"
27 #include "ardour/audioregion.h"
28 #include "ardour/playlist.h"
29 #include "ardour/utils.h"
30 #include "ardour/dB.h"
31 #include <gtkmm2ext/utils.h>
32 #include <cmath>
33
34 #include "audio_region_editor.h"
35 #include "audio_region_view.h"
36 #include "ardour_ui.h"
37 #include "utils.h"
38 #include "gui_thread.h"
39
40 #include "i18n.h"
41
42 using namespace ARDOUR;
43 using namespace PBD;
44 using namespace std;
45 using namespace Gtkmm2ext;
46
47 static void *
48 _peak_amplitude_thread (void* arg)
49 {
50         SessionEvent::create_per_thread_pool ("peak amplitude events", 64);
51         static_cast<AudioRegionEditor*>(arg)->peak_amplitude_thread ();
52         return 0;
53 }
54
55 AudioRegionEditor::AudioRegionEditor (Session* s, boost::shared_ptr<AudioRegion> r)
56         : RegionEditor (s, r)
57         , _audio_region (r)
58         , gain_adjustment(accurate_coefficient_to_dB(_audio_region->scale_amplitude()), -40.0, +40.0, 0.1, 1.0, 0)        
59         , _peak_amplitude_found (false)
60 {
61
62         Gtk::HBox* b = Gtk::manage (new Gtk::HBox);
63         b->set_spacing (6);
64         b->pack_start (gain_entry);
65         b->pack_start (*Gtk::manage (new Gtk::Label (_("dB"))), false, false);
66
67         gain_label.set_name ("AudioRegionEditorLabel");
68         gain_label.set_text (_("Region gain:"));
69         gain_label.set_alignment (1, 0.5);
70         gain_entry.configure (gain_adjustment, 0.0, 1);
71         _table.attach (gain_label, 0, 1, _table_row, _table_row + 1, Gtk::FILL, Gtk::FILL);
72         _table.attach (*b, 1, 2, _table_row, _table_row + 1, Gtk::FILL, Gtk::FILL);
73         ++_table_row;
74
75         b = Gtk::manage (new Gtk::HBox);
76         b->set_spacing (6);
77         b->pack_start (_peak_amplitude);
78         b->pack_start (*Gtk::manage (new Gtk::Label (_("dBFS"))), false, false);
79         
80         _peak_amplitude_label.set_name ("AudioRegionEditorLabel");
81         _peak_amplitude_label.set_text (_("Peak amplitude:"));
82         _peak_amplitude_label.set_alignment (1, 0.5);
83         _table.attach (_peak_amplitude_label, 0, 1, _table_row, _table_row + 1, Gtk::FILL, Gtk::FILL);
84         _table.attach (*b, 1, 2, _table_row, _table_row + 1, Gtk::FILL, Gtk::FILL);
85         ++_table_row;
86         
87         gain_changed ();
88
89         gain_adjustment.signal_value_changed().connect (sigc::mem_fun (*this, &AudioRegionEditor::gain_adjustment_changed));
90
91         _peak_amplitude.property_editable() = false;
92         _peak_amplitude.set_text (_("Calculating..."));
93
94         PeakAmplitudeFound.connect (_peak_amplitude_connection, invalidator (*this), boost::bind (&AudioRegionEditor::peak_amplitude_found, this, _1), gui_context ());
95         pthread_create_and_store (X_("peak-amplitude"), &_peak_amplitude_thread_handle, _peak_amplitude_thread, this);
96 }
97
98 AudioRegionEditor::~AudioRegionEditor ()
99 {
100         pthread_cancel_one (_peak_amplitude_thread_handle);
101         void* v;
102         int const r = pthread_join (_peak_amplitude_thread_handle, &v);
103         assert (r == 0);
104 }
105
106 void
107 AudioRegionEditor::region_changed (const PBD::PropertyChange& what_changed)
108 {
109         RegionEditor::region_changed (what_changed);
110         
111         if (what_changed.contains (ARDOUR::Properties::scale_amplitude)) {
112                 gain_changed ();
113         }
114 }
115 void
116 AudioRegionEditor::gain_changed ()
117 {
118         float const region_gain_dB = accurate_coefficient_to_dB (_audio_region->scale_amplitude());
119         if (region_gain_dB != gain_adjustment.get_value()) {
120                 gain_adjustment.set_value(region_gain_dB);
121         }
122 }
123
124 void
125 AudioRegionEditor::gain_adjustment_changed ()
126 {
127         float const gain = dB_to_coefficient (gain_adjustment.get_value());
128         if (_audio_region->scale_amplitude() != gain) {
129                 _audio_region->set_scale_amplitude (gain);
130         }
131 }
132
133 void
134 AudioRegionEditor::peak_amplitude_thread ()
135 {
136         PeakAmplitudeFound (accurate_coefficient_to_dB (_audio_region->maximum_amplitude ())); /* EMIT SIGNAL */
137 }
138
139 void
140 AudioRegionEditor::peak_amplitude_found (double p)
141 {
142         _peak_amplitude.set_text (boost::lexical_cast<string> (p));
143 }
144