mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 07:14:56 +01:00
No-op; coding style.
git-svn-id: svn://localhost/ardour2/branches/3.0@8988 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
9e5f5ed0ee
commit
267cfbe731
2 changed files with 5 additions and 6 deletions
|
|
@ -140,7 +140,7 @@ void
|
||||||
StripSilenceDialog::silences (AudioIntervalMap& m)
|
StripSilenceDialog::silences (AudioIntervalMap& m)
|
||||||
{
|
{
|
||||||
for (list<ViewInterval>::iterator v = views.begin(); v != views.end(); ++v) {
|
for (list<ViewInterval>::iterator v = views.begin(); v != views.end(); ++v) {
|
||||||
pair<boost::shared_ptr<Region>,AudioIntervalResult> newpair ((*v).view->region(), (*v).intervals);
|
pair<boost::shared_ptr<Region>,AudioIntervalResult> newpair (v->view->region(), v->intervals);
|
||||||
m.insert (newpair);
|
m.insert (newpair);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -149,7 +149,7 @@ void
|
||||||
StripSilenceDialog::drop_rects ()
|
StripSilenceDialog::drop_rects ()
|
||||||
{
|
{
|
||||||
for (list<ViewInterval>::iterator v = views.begin(); v != views.end(); ++v) {
|
for (list<ViewInterval>::iterator v = views.begin(); v != views.end(); ++v) {
|
||||||
(*v).view->drop_silent_frames ();
|
v->view->drop_silent_frames ();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -190,7 +190,7 @@ StripSilenceDialog::update_silence_rects ()
|
||||||
double const y = _threshold.get_value();
|
double const y = _threshold.get_value();
|
||||||
|
|
||||||
for (list<ViewInterval>::iterator v = views.begin(); v != views.end(); ++v) {
|
for (list<ViewInterval>::iterator v = views.begin(); v != views.end(); ++v) {
|
||||||
(*v).view->set_silent_frames ((*v).intervals, y);
|
v->view->set_silent_frames (v->intervals, y);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -215,7 +215,7 @@ StripSilenceDialog::detection_thread_work ()
|
||||||
boost::shared_ptr<AudioRegion> ar = boost::dynamic_pointer_cast<AudioRegion> ((*i).view->region());
|
boost::shared_ptr<AudioRegion> ar = boost::dynamic_pointer_cast<AudioRegion> ((*i).view->region());
|
||||||
|
|
||||||
if (ar) {
|
if (ar) {
|
||||||
(*i).intervals = ar->find_silence (dB_to_coefficient (threshold ()), minimum_length (), _interthread_info);
|
i->intervals = ar->find_silence (dB_to_coefficient (threshold ()), minimum_length (), _interthread_info);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (_interthread_info.cancel) {
|
if (_interthread_info.cancel) {
|
||||||
|
|
|
||||||
|
|
@ -1540,7 +1540,6 @@ AudioRegion::find_silence (Sample threshold, framecnt_t min_length, InterThreadI
|
||||||
|
|
||||||
bool in_silence = false;
|
bool in_silence = false;
|
||||||
frameoffset_t silence_start = 0;
|
frameoffset_t silence_start = 0;
|
||||||
bool silence;
|
|
||||||
|
|
||||||
while (pos < end && !itt.cancel) {
|
while (pos < end && !itt.cancel) {
|
||||||
|
|
||||||
|
|
@ -1556,7 +1555,7 @@ AudioRegion::find_silence (Sample threshold, framecnt_t min_length, InterThreadI
|
||||||
|
|
||||||
/* now look for silence */
|
/* now look for silence */
|
||||||
for (framecnt_t i = 0; i < block_size; ++i) {
|
for (framecnt_t i = 0; i < block_size; ++i) {
|
||||||
silence = abs (loudest[i]) < threshold;
|
bool const silence = abs (loudest[i]) < threshold;
|
||||||
if (silence && !in_silence) {
|
if (silence && !in_silence) {
|
||||||
/* non-silence to silence */
|
/* non-silence to silence */
|
||||||
in_silence = true;
|
in_silence = true;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue