/* * Copyright (C) 2016-2017 Paul Davis * Copyright (C) 2016-2018 Robin Gareus * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include #include #include #include #include #include "pbd/openuri.h" #include "pbd/basename.h" #include "gtkmm2ext/colors.h" #include "ardour/audiofilesource.h" #include "ardour/audioregion.h" #include "ardour/auditioner.h" #include "ardour/dB.h" #include "ardour/logmeter.h" #include "ardour/region_factory.h" #include "ardour/session.h" #include "ardour/smf_source.h" #include "ardour/source_factory.h" #include "ardour/srcfilesource.h" #include "ardour/utils.h" #include "audio_clock.h" #include "export_analysis_graphs.h" #include "export_report.h" #include "loudness_settings.h" #include "ui_config.h" #include "pbd/i18n.h" using namespace Gtk; using namespace ARDOUR; ExportReport::ExportReport (Session* session, StatusPtr s) : ArdourDialog (_("Export Report/Analysis")) , _session (session) , stop_btn (0) , play_btn (0) , _audition_num (-1) , _page_num (0) { init (s->result_map, true); } ExportReport::ExportReport (const std::string & title, const AnalysisResults & ar) : ArdourDialog (title) , _session (0) , stop_btn (0) , play_btn (0) , _audition_num (-1) , _page_num (0) { init (ar, false); } void ExportReport::init (const AnalysisResults & ar, bool with_file) { set_resizable (false); pages.set_scrollable (); std::vector dashes; dashes.push_back (3.0); dashes.push_back (5.0); int page = 0; for (AnalysisResults::const_iterator i = ar.begin (); i != ar.end (); ++i, ++page) { Label *l; VBox *vb = manage (new VBox ()); Table *t = manage (new Table (4, 4)); Table *wtbl = manage (new Table (3, 2)); int wrow = 0; t->set_border_width (0); t->set_spacings (4); wtbl->set_spacings (4); vb->set_spacing (4); vb->set_border_width (4); vb->pack_start (*t, false, false, 2); vb->pack_start (*wtbl, false, false, 2); std::string path = i->first; ExportAnalysisPtr p = i->second; const size_t p_width = p->width; std::list playhead_widgets; if (with_file) { l = manage (new Label (_("File:"), ALIGN_END)); t->attach (*l, 0, 1, 0, 1); l = manage (new Label ()); l->set_ellipsize (Pango::ELLIPSIZE_START); l->set_width_chars (48); l->set_max_width_chars (48); l->set_text (path); l->set_alignment (ALIGN_START, ALIGN_CENTER); t->attach (*l, 1, 3, 0, 1, FILL, SHRINK); Button *b = manage (new Button (_("Open Folder"))); t->attach (*b, 3, 4, 0, 2, FILL, SHRINK); b->signal_clicked ().connect (sigc::bind (sigc::mem_fun (*this, &ExportReport::open_folder), path)); } SoundFileInfo info; std::string errmsg; samplecnt_t file_length = 0; samplecnt_t sample_rate = 0; samplecnt_t start_off = 0; unsigned int channels = 0; std::string file_fmt; if (with_file && AudioFileSource::get_soundfile_info (path, info, errmsg)) { AudioClock * clock; file_length = info.length; sample_rate = info.samplerate; start_off = info.timecode; channels = info.channels; files.insert (std::make_pair (page, AuditionInfo (path, channels))); /* File Info Table */ samplecnt_t const nfr = _session ? _session->nominal_sample_rate () : 25; double src_coef = (double) nfr / info.samplerate; l = manage (new Label (_("Format:"), ALIGN_END)); t->attach (*l, 0, 1, 1, 2); file_fmt = info.format_name; std::replace (file_fmt.begin (), file_fmt.end (), '\n', ' '); l = manage (new Label ()); l->set_ellipsize (Pango::ELLIPSIZE_START); l->set_width_chars (48); l->set_max_width_chars (48); l->set_text (file_fmt); l->set_alignment (ALIGN_START, ALIGN_CENTER); t->attach (*l, 1, 3, 1, 2, FILL, SHRINK); l = manage (new Label (_("Channels:"), ALIGN_END)); t->attach (*l, 0, 1, 2, 3); l = manage (new Label (string_compose ("%1", info.channels), ALIGN_START)); t->attach (*l, 1, 2, 2, 3); l = manage (new Label (_("Sample Rate:"), ALIGN_END)); t->attach (*l, 0, 1, 3, 4); l = manage (new Label (string_compose (_("%1 Hz"), info.samplerate), ALIGN_START)); t->attach (*l, 1, 2, 3, 4); l = manage (new Label (_("Duration:"), ALIGN_END)); t->attach (*l, 2, 3, 2, 3); clock = manage (new AudioClock ("sfboxLengthClock", true, "", false, false, true, false)); clock->set_session (_session); clock->set_mode (AudioClock::MinSec); clock->set_duration (timecnt_t (samplecnt_t (info.length * src_coef + 0.5)), true); t->attach (*clock, 3, 4, 2, 3); l = manage (new Label (_("Timecode:"), ALIGN_END)); t->attach (*l, 2, 3, 3, 4); clock = manage (new AudioClock ("sfboxTimecodeClock", true, "", false, false, false, false)); clock->set_session (_session); clock->set_mode (AudioClock::Timecode); clock->set_duration (timecnt_t (samplecnt_t (info.timecode * src_coef + 0.5)), true); t->attach (*clock, 3, 4, 3, 4); } else if (with_file) { with_file = false; /* Note: errmsg can have size = 1, and contain "\0\0" */ if (!errmsg.empty() && 0 != strlen(errmsg.c_str())) { l = manage (new Label (_("Error:"), ALIGN_END)); t->attach (*l, 0, 1, 1, 2); l = manage (new Label (errmsg, ALIGN_START)); t->attach (*l, 1, 4, 1, 2); } } int w, h; Glib::RefPtr layout = Pango::Layout::create (get_pango_context ()); // calc geometry of numerics const float dbfs = accurate_coefficient_to_dB (p->peak); const float dbtp = accurate_coefficient_to_dB (p->truepeak); #define TXTSIZE(LINE, TXT, FONT) { \ layout->set_font_description (UIConfiguration::instance ().FONT ()); \ layout->set_text (TXT); \ layout->get_pixel_size (w, h); \ if (w > mnw) { mnw = w; } \ if (h > lin[LINE]) { lin[LINE] = h; } \ } #define TXTWIDTH(TXT, FONT) { \ layout->set_font_description (UIConfiguration::instance ().FONT ()); \ layout->set_text (TXT); \ layout->get_pixel_size (w, h); \ if (w > mml) { mml = w; } \ } int m_r = 0; // right side int mnh = 0; // mono height int mnw = 0; // max numeric width int anw = 0; // spectrum annotation text width int lin[6] = { 0, 0, 0, 0, 0, 0 }; // max line height TXTSIZE(0, _("(too short integration time)"), get_SmallFont); TXTSIZE(0, _("-888"), get_SmallMonospaceFont); anw = w; m_r = anw + 10; mnh = h + 1; TXTSIZE(0, _("Peak:"), get_SmallFont); TXTSIZE(1, string_compose (_("%1 dBFS"), std::setprecision (1), std::fixed, dbfs), get_LargeFont); TXTSIZE(2, _("True Peak:"), get_SmallFont); TXTSIZE(3, string_compose (_("%1 dBTP"), std::setprecision (1), std::fixed, dbtp), get_LargeFont); TXTSIZE(4, _("Normalization Gain:"), get_SmallFont); TXTSIZE(5, _("+888.88 dB"), get_SmallMonospaceFont); TXTSIZE(0, _("Integrated Loudness:"), get_SmallFont); TXTSIZE(1, string_compose (_("%1 LUFS"), std::setprecision (1), std::fixed, p->integrated_loudness), get_LargeFont); TXTSIZE(2, _("Loudness Range:"), get_SmallFont); TXTSIZE(3, string_compose (_("%1 LU"), std::setprecision (1), std::fixed, p->loudness_range), get_LargeFont); TXTSIZE(4, _("Max Short/Momentary:"), get_SmallFont); TXTSIZE(5, string_compose (_("%1/%2 LUFS"), std::setprecision (1), std::fixed, p->max_loudness_short, p->max_loudness_momentary), get_SmallFont); mnw += 8; const int ht = lin[0] * 1.25 + lin[1] * 1.25 + lin[2] * 1.25 + lin[3] *1.25 + lin[4] * 1.25 + lin[5]; const int hh = std::max (100, ht + 12); const int htn = lin[0] * 1.25 + lin[1] * 1.25 + lin[2] * 1.25 + lin[3]; int m_l = 2 * mnw + /*hist-width*/ 540 + /*box spacing*/ 8 - /*peak-width*/ p_width - m_r; // margin left int mml = 0; // min margin left -- ensure left margin is wide enough TXTWIDTH (_("Time"), get_SmallFont); TXTWIDTH (_("100"), get_SmallMonospaceFont); m_l = (std::max(anw + mnh + 14, std::max (m_l, mml + 8)) + 3) & ~3; mnw = (m_l - /*hist-width*/ 540 - /*box spacing*/ 8 + /*peak-width*/ p_width + m_r) / 2; const int nw2 = mnw / 2; // nums, horizontal center int y0[6]; if (true /*p->normalized*/) { y0[0] = (hh - ht) * .5; // 5 lines } else { y0[0] = (hh - htn) * .5; // 4 lines } y0[1] = y0[0] + lin[0] * 1.25; y0[2] = y0[1] + lin[1] * 1.25; y0[3] = y0[2] + lin[2] * 1.25; y0[4] = y0[3] + lin[3] * 1.25; y0[5] = y0[4] + lin[4] * 1.25; /* calc heights & alignment of png-image */ const float specth = p->spectrum[0].size (); const float waveh2 = std::min (100, 8 * lin[0] / (int) p->n_channels); const float loudnh = 180; Cairo::RefPtr png_surface; int png_w = 0; int png_y0 = 0; Glib::RefPtr win = get_window (); Glib::RefPtr screen; if (win) { screen = win->get_screen(); } else { screen = Gdk::Screen::get_default(); } int win_h = screen ? screen->get_height() : -1; int tbl_h = 4 * (lin[4] * 1.3 + 4); // height of file-info table t win_h -= 60 + lin[4] * 4.5 ; // window title, file-tab, bottom buttons if (with_file && UIConfiguration::instance().get_save_export_analysis_image ()) { /*png image */ const int top_w = 540 + 2 * (mnw + 4); // 4px spacing const int wav_w = m_l + m_r + 4 + p->width; const int spc_w = m_l + m_r + 4 + p->width / specth; int ann_h = 0; int linesp = 0; if (channels > 0 && file_length > 0 && sample_rate > 0) { layout->set_font_description (UIConfiguration::instance ().get_SmallMonospaceFont ()); layout->set_text (X_("00:00:00.0")); layout->get_pixel_size (w, h); int height = h * 1.75; ann_h = 4 + height /* Time Axis */; layout->set_font_description (UIConfiguration::instance ().get_SmallFont ()); layout->set_text (X_("0|A8")); layout->get_pixel_size (w, h); linesp = h * 1.5; ann_h += 4 + 3 * linesp; /* File Info */; } int png_h = hh + 4 + p->n_channels * (2 * waveh2 + 4) + ann_h + specth + 4; if (p->have_loudness && p->have_dbtp && p->have_lufs_graph && sample_rate > 0) { png_h += loudnh + 4; } if (p->have_loudness && p->have_dbtp && p->integrated_loudness > -180) { png_h += lin[0] * 4 + 4; } png_w = std::max (std::max (top_w, wav_w), spc_w); png_surface = Cairo::ImageSurface::create (Cairo::FORMAT_RGB24, png_w, png_h); Cairo::RefPtr pcx = Cairo::Context::create (png_surface); pcx->set_source_rgb (.2, .2, .2); pcx->paint (); if (channels > 0 && file_length > 0 && sample_rate > 0) { png_y0 += 4; // Add file-name, format, duration, sample-rate & timecode pcx->set_source_rgb (.7, .7, .7); layout->set_font_description (UIConfiguration::instance ().get_SmallFont ()); layout->set_alignment (Pango::ALIGN_LEFT); #define IMGLABEL(X0, STR, VAL) { \ layout->set_text (STR); \ pcx->move_to (X0, png_y0); \ layout->get_pixel_size (w, h); \ layout->show_in_cairo_context (pcx); \ layout->set_text (VAL); \ pcx->move_to (X0 + w + 2, png_y0); \ layout->show_in_cairo_context (pcx); \ } // TODO get max width of labels per column, right-align labels, x-align 1/3, 2/3 columns const int lx0 = m_l; const int lx1 = m_l + png_w * 2 / 3; // right-col is short (channels, SR, duration) std::string sha1sum = ARDOUR::compute_sha1_of_file (path); if (!sha1sum.empty()) { sha1sum = " (sha1: " + sha1sum + ")"; } IMGLABEL (lx0, _("File:"), Glib::path_get_basename (path) + sha1sum); IMGLABEL (lx1, _("Channels:"), string_compose ("%1", channels)); png_y0 += linesp; IMGLABEL (lx0, _("Format:"), file_fmt); IMGLABEL (lx1, _("Sample Rate:"), string_compose (_("%1 Hz"), sample_rate)); png_y0 += linesp; if (_session) { Timecode::Time tct; _session->sample_to_timecode (start_off, tct, false, false); IMGLABEL (lx0, _("Timecode:"), Timecode::timecode_format_time (tct)); } IMGLABEL (lx1, _("Duration:"), Timecode::timecode_format_sampletime (file_length, sample_rate, 1000, false)); png_y0 += linesp; } } { /* peak, loudness and R128 histogram */ Cairo::RefPtr nums = Cairo::ImageSurface::create (Cairo::FORMAT_ARGB32, mnw, hh); Cairo::RefPtr ebur = Cairo::ImageSurface::create (Cairo::FORMAT_ARGB32, mnw, hh); /* peak and true-peak numerics */ Cairo::RefPtr cr = Cairo::Context::create (nums); cr->set_source_rgba (0, 0, 0, 1.0); cr->paint (); layout->set_font_description (UIConfiguration::instance ().get_SmallFont ()); layout->set_alignment (Pango::ALIGN_LEFT); layout->set_text (_("Peak:")); layout->get_pixel_size (w, h); cr->move_to (rint (nw2 - w * .5), y0[0]); cr->set_source_rgba (.7, .7, .7, 1.0); layout->show_in_cairo_context (cr); layout->set_font_description (UIConfiguration::instance ().get_LargeFont ()); layout->set_text (string_compose (_("%1 dBFS"), std::setprecision (1), std::fixed, dbfs)); layout->get_pixel_size (w, h); cr->move_to (rint (nw2 - w * .5), y0[1]); if (dbfs >= 0.f) { cr->set_source_rgba (1.0, .1, .1, 1.0); } else if (dbfs > -1.f) { cr->set_source_rgba (1.0, .7, .0, 1.0); } layout->show_in_cairo_context (cr); if (p->have_dbtp) { layout->set_font_description (UIConfiguration::instance ().get_SmallFont ()); layout->set_text (_("True Peak:")); layout->get_pixel_size (w, h); cr->move_to (rint (nw2 - w * .5), y0[2]); cr->set_source_rgba (.7, .7, .7, 1.0); layout->show_in_cairo_context (cr); layout->set_font_description (UIConfiguration::instance ().get_LargeFont ()); layout->set_text (string_compose (_("%1 dBTP"), std::setprecision (1), std::fixed, dbtp)); layout->get_pixel_size (w, h); cr->move_to (rint (nw2 - w * .5), y0[3]); if (dbtp >= 0.f) { cr->set_source_rgba (1.0, .1, .1, 1.0); } else if (dbtp > -1.f) { cr->set_source_rgba (1.0, .7, .0, 1.0); } layout->show_in_cairo_context (cr); } if (p->normalized) { const float ndb = accurate_coefficient_to_dB (p->norm_gain_factor); layout->set_font_description (UIConfiguration::instance ().get_SmallFont ()); layout->set_text (_("Normalization Gain:")); layout->get_pixel_size (w, h); cr->move_to (rint (nw2 - w * .5), y0[4]); cr->set_source_rgba (.7, .7, .7, 1.0); layout->show_in_cairo_context (cr); layout->set_font_description (UIConfiguration::instance ().get_SmallMonospaceFont ()); layout->set_text (string_compose (_("%1 dB"), std::setprecision (2), std::showpos, std::fixed, ndb)); layout->get_pixel_size (w, h); cr->move_to (rint (nw2 - w * .5), y0[5]); // TODO tweak thresholds if (p->norm_gain_factor < 1.0) { cr->set_source_rgba (1.0, .7, .1, 1.0); } else if (p->norm_gain_factor == 1.0) { cr->set_source_rgba (.7, .7, .7, 1.0); } else if (fabsf (ndb) < 12) { cr->set_source_rgba (.1, 1.0, .1, 1.0); } else if (fabsf (ndb) < 18) { cr->set_source_rgba (1.0, .7, .1, 1.0); } else { cr->set_source_rgba (1.0, .1, .1, 1.0); } layout->show_in_cairo_context (cr); } nums->flush (); /* EBU R128 numerics */ cr = Cairo::Context::create (ebur); cr->set_source_rgba (0, 0, 0, 1.0); cr->paint (); cr->set_source_rgba (.7, .7, .7, 1.0); if (!i->second->have_loudness) { layout->set_alignment (Pango::ALIGN_CENTER); layout->set_font_description (UIConfiguration::instance ().get_LargeFont ()); layout->set_text (_("Not\nAvailable")); layout->get_pixel_size (w, h); cr->move_to (rint (nw2 - w * .5), rint ((hh - h) * .5)); layout->show_in_cairo_context (cr); } else if (p->integrated_loudness == -200 && p->loudness_range == 0) { layout->set_font_description (UIConfiguration::instance ().get_SmallFont ()); layout->set_alignment (Pango::ALIGN_LEFT); layout->set_text (_("Integrated Loudness:")); layout->get_pixel_size (w, h); cr->move_to (rint (nw2 - w * .5), y0[0]); layout->show_in_cairo_context (cr); layout->set_text (_("Not available")); layout->get_pixel_size (w, h); cr->move_to (rint (nw2 - w * .5), y0[1]); layout->show_in_cairo_context (cr); layout->set_text (_("(too short integration time)")); layout->get_pixel_size (w, h); cr->move_to (rint (nw2 - w * .5), y0[2]); layout->show_in_cairo_context (cr); if (p->max_loudness_short > -200 && p->max_loudness_momentary > -200) { layout->set_text (_("Max Short/Momentary:")); layout->get_pixel_size (w, h); cr->move_to (rint (nw2 - w * .5), y0[4]); layout->show_in_cairo_context (cr); layout->set_text (string_compose (_("%1/%2 LUFS"), std::setprecision (1), std::fixed, p->max_loudness_short, p->max_loudness_momentary)); layout->get_pixel_size (w, h); cr->move_to (rint (nw2 - w * .5), y0[5]); layout->show_in_cairo_context (cr); } } else { layout->set_font_description (UIConfiguration::instance ().get_SmallFont ()); layout->set_alignment (Pango::ALIGN_LEFT); layout->set_text (_("Integrated Loudness:")); layout->get_pixel_size (w, h); cr->move_to (rint (nw2 - w * .5), y0[0]); layout->show_in_cairo_context (cr); layout->set_font_description (UIConfiguration::instance ().get_LargeFont ()); layout->set_text (string_compose (_("%1 LUFS"), std::setprecision (1), std::fixed, p->integrated_loudness)); layout->get_pixel_size (w, h); cr->move_to (rint (nw2 - w * .5), y0[1]); layout->show_in_cairo_context (cr); layout->set_font_description (UIConfiguration::instance ().get_SmallFont ()); layout->set_text (_("Loudness Range:")); layout->get_pixel_size (w, h); cr->move_to (rint (nw2 - w * .5), y0[2]); layout->show_in_cairo_context (cr); layout->set_font_description (UIConfiguration::instance ().get_LargeFont ()); layout->set_text (string_compose (_("%1 LU"), std::setprecision (1), std::fixed, p->loudness_range)); layout->get_pixel_size (w, h); cr->move_to (rint (nw2 - w * .5), y0[3]); layout->show_in_cairo_context (cr); layout->set_font_description (UIConfiguration::instance ().get_SmallFont ()); layout->set_text (_("Max Short/Momentary:")); layout->get_pixel_size (w, h); cr->move_to (rint (nw2 - w * .5), y0[4]); layout->show_in_cairo_context (cr); layout->set_text (string_compose (_("%1/%2 LUFS"), std::setprecision (1), std::fixed, p->max_loudness_short, p->max_loudness_momentary)); layout->get_pixel_size (w, h); cr->move_to (rint (nw2 - w * .5), y0[5]); layout->show_in_cairo_context (cr); } ebur->flush (); /* draw loudness histogram */ Cairo::RefPtr hist = ArdourGraphs::loudness_histogram (get_pango_context(), p, hh, 540); if (png_surface) { Cairo::RefPtr pcx = Cairo::Context::create (png_surface); pcx->set_source (nums, 0, png_y0); pcx->paint (); pcx->set_source (hist, (png_w - 540) / 2, png_y0); pcx->paint (); pcx->set_source (ebur, png_w - mnw, png_y0); pcx->paint (); png_y0 += hh + 4; } CimgArea *nu = manage (new CimgArea (nums)); CimgArea *eb = manage (new CimgArea (ebur)); CimgArea *hi = manage (new CimgArea (hist)); HBox *hb = manage (new HBox ()); hb->set_spacing (4); hb->pack_start (*nu, false, false); hb->pack_start (*hi, false, false); hb->pack_start (*eb, false, false); wtbl->attach (*hb, 0, 2, wrow, wrow + 1, SHRINK, SHRINK); ++wrow; tbl_h += hh + 4; } { VBox *lrb = manage (new VBox()); ToggleButton *log = manage (new ToggleButton (S_("Logscale|Lg"))); ToggleButton *rec = manage (new ToggleButton (S_("Rectified|Rf"))); Gtkmm2ext::UI::instance()->set_tip (log, _("Logscale")); Gtkmm2ext::UI::instance()->set_tip (rec, _("Rectified")); lrb->pack_start (*log, false, false, 5); lrb->pack_end (*rec, false, false, 5); log->signal_toggled ().connect (sigc::bind (sigc::mem_fun (*this, &ExportReport::on_logscale_toggled), log)); rec->signal_toggled ().connect (sigc::bind (sigc::mem_fun (*this, &ExportReport::on_rectivied_toggled), rec)); lrb->show_all (); wtbl->attach (*lrb, 1, 2, wrow, wrow + p->n_channels, SHRINK, SHRINK); } for (uint32_t c = 0; c < p->n_channels; ++c) { /* draw waveform */ const size_t width = p->width; Cairo::RefPtr wave = ArdourGraphs::draw_waveform (get_pango_context (), p, c, waveh2, m_l, false, false); Cairo::RefPtr wave_log = ArdourGraphs::draw_waveform (get_pango_context (), p, c, waveh2, m_l, true, false); Cairo::RefPtr wave_rect = ArdourGraphs::draw_waveform (get_pango_context (), p, c, waveh2, m_l, false, true); Cairo::RefPtr wave_lr = ArdourGraphs::draw_waveform (get_pango_context (), p, c, waveh2, m_l, true, true); CimgWaveArea *wv = manage (new CimgWaveArea (wave, wave_log, wave_rect, wave_lr, m_l, width)); playhead_widgets.push_back (wv); waves.push_back (wv); wv->seek_playhead.connect (sigc::bind<0> (sigc::mem_fun (*this, &ExportReport::audition_seek), page)); wtbl->attach (*wv, 0, 1, wrow, wrow + 1, SHRINK, SHRINK); ++wrow; tbl_h += 2 * waveh2 + 4; if (png_surface) { Cairo::RefPtr pcx = Cairo::Context::create (png_surface); pcx->set_source (wave, 0, png_y0); pcx->paint (); png_y0 += 2 * waveh2 + 4; } } if (channels > 0 && file_length > 0 && sample_rate > 0) { /* Time Axis -- re-use waveform width */ const size_t width = p->width; Cairo::RefPtr ytme = ArdourGraphs::time_axis (get_pango_context (), width, m_l, start_off, file_length, sample_rate); CimgPlayheadArea *tm = manage (new CimgPlayheadArea (ytme, m_l, width, true)); playhead_widgets.push_back (tm); tm->seek_playhead.connect (sigc::bind<0> (sigc::mem_fun (*this, &ExportReport::audition_seek), page)); wtbl->attach (*tm, 0, 1, wrow, wrow + 1, SHRINK, SHRINK); ++wrow; tbl_h += ytme->get_height() + 4; if (png_surface) { Cairo::RefPtr pcx = Cairo::Context::create (png_surface); pcx->set_source (ytme, 0, png_y0); pcx->paint (); png_y0 += ytme->get_height() + 4; } } { /* Draw Spectrum */ Cairo::RefPtr spec = ArdourGraphs::draw_spectrum (get_pango_context (), p, specth, m_l); Cairo::RefPtr scale = ArdourGraphs::spectrum_legend (get_pango_context (), specth, m_r); CimgPlayheadArea *sp = manage (new CimgPlayheadArea (spec, m_l, spec->get_width () - m_l)); playhead_widgets.push_back (sp); sp->seek_playhead.connect (sigc::bind<0> (sigc::mem_fun (*this, &ExportReport::audition_seek), page)); CimgArea *an = manage (new CimgArea (scale)); wtbl->attach (*sp, 0, 1, wrow, wrow + 1, SHRINK, SHRINK); wtbl->attach (*an, 1, 2, wrow, wrow + 1, SHRINK, SHRINK); ++wrow; tbl_h += spec->get_height() + 4; if (png_surface) { Cairo::RefPtr pcx = Cairo::Context::create (png_surface); pcx->set_source (spec, 0, png_y0); pcx->paint (); pcx->set_source (scale, png_w - m_r, png_y0); pcx->paint (); png_y0 += spec->get_height() + 4; } } if (p->have_loudness && p->have_dbtp && p->have_lufs_graph && sample_rate > 0) { /* Loudness */ Cairo::RefPtr las = ArdourGraphs::plot_loudness (get_pango_context (), p, loudnh, m_l, sample_rate); if (win_h < 0 || win_h > tbl_h + las->get_height()) { CimgPlayheadArea *lp = manage (new CimgPlayheadArea (las, m_l, las->get_width () - m_l)); playhead_widgets.push_back (lp); lp->seek_playhead.connect (sigc::bind<0> (sigc::mem_fun (*this, &ExportReport::audition_seek), page)); wtbl->attach (*lp, 0, 1, wrow, wrow + 1, SHRINK, SHRINK); ++wrow; tbl_h += las->get_height() + 4; } if (png_surface) { Cairo::RefPtr pcx = Cairo::Context::create (png_surface); pcx->set_source (las, 0, png_y0); pcx->paint (); png_y0 += las->get_height() + 4; } } if (p->have_loudness && p->have_dbtp && p->integrated_loudness > -180) { ALoudnessPresets alp (false); std::vector const& lp = alp.presets (); std::vector::const_iterator pi; /* calc max label width */ int max_wl = 10; int n_reports = 0; for (pi = lp.begin (); pi != lp.end (); ++pi) { if (!pi->report) { continue; } ++n_reports; layout->set_font_description (UIConfiguration::instance ().get_SmallFont ()); layout->set_text (pi->label); layout->get_pixel_size (w, h); max_wl = std::max (max_wl, w); } /* calc max status width */ int max_wx = 10; layout->set_font_description (UIConfiguration::instance ().get_ArdourLargeFont ()); layout->set_text ("\u274C"); // cross mark layout->get_pixel_size (w, h); max_wx = std::max (max_wx, w); layout->set_text ("\U0001F509"); // speaker icon w/1 bar layout->get_pixel_size (w, h); max_wx = std::max (max_wx, w); layout->set_text ("\u2714"); // heavy check mark layout->get_pixel_size (w, h); max_wx = std::max (max_wx, w); /* calc geometry of conformity analysis, add 1/2 max_wx space */ int max_w = std::min (p_width, max_wl + max_wx * 1.5); int per_line = std::min (5, p_width / max_w); assert (per_line > 0); int lines = ceilf ((float)n_reports / per_line); /* calc column width */ std::vector col_w (per_line); int i; for (i = 0, pi = lp.begin (); pi != lp.end (); ++pi) { if (!pi->report) { continue; } int col = i % per_line; layout->set_font_description (UIConfiguration::instance ().get_SmallFont ()); layout->set_text (pi->label); layout->get_pixel_size (w, h); col_w[col] = std::max (col_w[col], w); ++i; } int cw = p_width + m_l; int ch = (lines * 1.3 + .65) * lin[0]; Cairo::RefPtr conf = Cairo::ImageSurface::create (Cairo::FORMAT_ARGB32, cw, ch); Cairo::RefPtr cr = Cairo::Context::create (conf); cr->set_source_rgba (0, 0, 0, 1.0); cr->paint (); cr->set_operator (Cairo::OPERATOR_SOURCE); cr->rectangle (0, 0, m_l - 1, ch); cr->set_source_rgba (0, 0, 0, 0); cr->fill (); cr->set_operator (Cairo::OPERATOR_OVER); layout->set_font_description (UIConfiguration::instance ().get_SmallerFont ()); layout->set_alignment (Pango::ALIGN_RIGHT); cr->set_source_rgba (.9, .9, .9, 1.0); layout->set_text (_("Conformity\nAnalysis")); layout->get_pixel_size (w, h); cr->move_to (rint (m_l - w - 6), rint ((ch - h) * .5)); layout->show_in_cairo_context (cr); layout->set_alignment (Pango::ALIGN_LEFT); const float lufs = rint (p->integrated_loudness * 10.f) / 10.f; const float dbfs = rint (accurate_coefficient_to_dB (p->peak) * 10.f) / 10.f; const float dbtp = rint (accurate_coefficient_to_dB (p->truepeak) * 10.f) / 10.f; int yl = lin[0] / 2; for (i = 0, pi = lp.begin (); pi != lp.end (); ++pi) { if (!pi->report) { continue; } int col = i % per_line; int xl = m_l + 10 + col * (cw - 20 - m_l) / per_line; layout->set_font_description (UIConfiguration::instance ().get_SmallFont ()); cr->set_source_rgba (.9, .9, .9, 1.0); layout->set_text (pi->label); cr->move_to (xl, yl); layout->get_pixel_size (w, h); layout->show_in_cairo_context (cr); cr->move_to (xl + w + 5, yl); layout->set_font_description (UIConfiguration::instance ().get_ArdourLargeFont ()); cr->set_source_rgba (.9, .9, .9, 1.0); if (lufs > pi->LUFS_range[0] || (pi->enable[0] && dbfs > pi->level[0]) || (pi->enable[1] && dbtp > pi->level[1]) ) { cr->set_source_rgba (1, 0, .0, 1.0); layout->set_text ("\u274C"); // cross mark } else if (lufs < pi->LUFS_range[1]) { cr->set_source_rgba (.6, .7, 0, 1.0); layout->set_text ("\U0001F509"); // speaker icon w/1 bar } else { cr->set_source_rgba (.1, 1, .1, 1.0); layout->set_text ("\u2714"); // heavy check mark } int ww, hh; layout->get_pixel_size (ww, hh); cr->move_to (xl + col_w[col] + 4, yl - (hh - h) * .5); layout->show_in_cairo_context (cr); if (i % per_line == per_line - 1) { yl += lin[0] * 1.3; } ++i; } if (win_h < 0 || win_h > tbl_h + conf->get_height()) { CimgArea *ci = manage (new CimgArea (conf)); wtbl->attach (*ci, 0, 1, wrow, wrow + 1, SHRINK, SHRINK); ++wrow; tbl_h += conf->get_height() + 4; } if (png_surface) { Cairo::RefPtr pcx = Cairo::Context::create (png_surface); pcx->set_source (conf, 0, png_y0); pcx->paint (); png_y0 += conf->get_height() + 4; } } timeline[page] = playhead_widgets; HBox *tab = manage (new HBox ()); l = manage (new Label (Glib::path_get_basename (path))); Gtk::Image *img = manage (new Image (Stock::MEDIA_PLAY, ICON_SIZE_MENU)); tab->pack_start (*img); tab->pack_start (*l); l->show(); tab->show(); img->hide(); pages.pages ().push_back (Notebook_Helpers::TabElem (*vb, *tab)); pages.signal_switch_page().connect (sigc::mem_fun (*this, &ExportReport::on_switch_page)); if (png_surface) { assert (with_file && !path.empty ()); std::string imgpath = Glib::build_filename (Glib::path_get_dirname (path), PBD::basename_nosuffix (path) + ".png"); PBD::info << string_compose(_("Writing Export Analysis Image: %1."), imgpath) << endmsg; png_surface->write_to_png (imgpath); } } pages.set_show_tabs (true); pages.show_all (); pages.set_name ("ExportReportNotebook"); pages.set_current_page (0); get_vbox ()->set_spacing (4); get_vbox ()->pack_start (pages, false, false); if (_session) { _session->AuditionActive.connect(auditioner_connections, invalidator (*this), boost::bind (&ExportReport::audition_active, this, _1), gui_context()); _session->the_auditioner()->AuditionProgress.connect(auditioner_connections, invalidator (*this), boost::bind (&ExportReport::audition_progress, this, _1, _2), gui_context()); } if (_session && with_file) { play_btn = add_button (Stock::MEDIA_PLAY, RESPONSE_ACCEPT); stop_btn = add_button (Stock::MEDIA_STOP, RESPONSE_ACCEPT); } add_button (Stock::CLOSE, RESPONSE_CLOSE); set_default_response (RESPONSE_CLOSE); if (_session && with_file) { stop_btn->signal_clicked().connect (sigc::mem_fun (*this, &ExportReport::stop_audition)); play_btn->signal_clicked().connect (sigc::mem_fun (*this, &ExportReport::play_audition)); stop_btn->set_sensitive (false); } show_all (); } int ExportReport::run () { do { int i = ArdourDialog::run (); if (i == Gtk::RESPONSE_DELETE_EVENT || i == RESPONSE_CLOSE) { break; } } while (1); if (_session) { _session->cancel_audition(); } return RESPONSE_CLOSE; } void ExportReport::open_folder (std::string p) { PBD::open_folder (Glib::path_get_dirname(p)); } void ExportReport::audition_active (bool active) { if (!stop_btn || !play_btn) { return; } stop_btn->set_sensitive (active); play_btn->set_sensitive (!active); if (!active && _audition_num == _page_num && timeline.find (_audition_num) != timeline.end ()) { for (std::list::const_iterator i = timeline[_audition_num].begin(); i != timeline[_audition_num].end(); ++i) { (*i)->set_playhead (-1); } } if (_audition_num >= 0 ) { Widget *page = pages.get_nth_page (_audition_num); HBox *box = static_cast (pages.get_tab_label (*page)); if (!active) { (*(box->get_children().begin()))->hide (); } else { (*(box->get_children().begin()))->show (); } } if (!active) { _audition_num = -1; } } void ExportReport::audition (std::string path, unsigned n_chn, int page) { assert (_session); _session->cancel_audition(); if (n_chn ==0) { return; } /* can't really happen, unless the user replaces the file while the dialog is open.. */ if (!Glib::file_test (path, Glib::FILE_TEST_EXISTS)) { PBD::warning << string_compose(_("Could not read file: %1 (%2)."), path, strerror(errno)) << endmsg; return; } if (SMFSource::valid_midi_file (path)) { return; } boost::shared_ptr r; SourceList srclist; boost::shared_ptr afs; bool old_sbp = AudioSource::get_build_peakfiles (); /* don't even think of building peakfiles for these files */ AudioSource::set_build_peakfiles (false); for (unsigned int n = 0; n < n_chn; ++n) { try { afs = boost::dynamic_pointer_cast ( SourceFactory::createExternal (DataType::AUDIO, *_session, path, n, Source::Flag (ARDOUR::AudioFileSource::NoPeakFile), false)); if (afs->sample_rate() != _session->nominal_sample_rate()) { boost::shared_ptr sfs (new SrcFileSource(*_session, afs, ARDOUR::SrcGood)); srclist.push_back(sfs); } else { srclist.push_back(afs); } } catch (failed_constructor& err) { PBD::error << _("Could not access soundfile: ") << path << endmsg; AudioSource::set_build_peakfiles (old_sbp); return; } } AudioSource::set_build_peakfiles (old_sbp); if (srclist.empty()) { return; } afs = boost::dynamic_pointer_cast (srclist[0]); std::string rname = region_name_from_path (afs->path(), false); PBD::PropertyList plist; plist.add (ARDOUR::Properties::start, timepos_t (0)); plist.add (ARDOUR::Properties::length, srclist[0]->length ()); plist.add (ARDOUR::Properties::name, rname); plist.add (ARDOUR::Properties::layer, 0); r = boost::dynamic_pointer_cast (RegionFactory::create (srclist, plist, false)); r->set_position (timepos_t ()); _session->audition_region(r); _audition_num = page; } void ExportReport::play_audition () { if (_audition_num >= 0 || !_session) { return; } if (files.find (_page_num) == files.end()) { return; } audition (files[_page_num].path, files[_page_num].channels, _page_num); } void ExportReport::stop_audition () { if (_audition_num == _page_num && timeline.find (_audition_num) != timeline.end ()) { for (std::list::const_iterator i = timeline[_audition_num].begin(); i != timeline[_audition_num].end(); ++i) { (*i)->set_playhead (-1); } } if (_session) { _session->cancel_audition(); } } void ExportReport::on_switch_page (GtkNotebookPage*, guint page_num) { if (_audition_num == _page_num) { for (std::list::const_iterator i = timeline[_audition_num].begin(); i != timeline[_audition_num].end(); ++i) { (*i)->set_playhead (-1); } } _page_num = page_num; } void ExportReport::audition_progress (samplecnt_t pos, samplecnt_t len) { if (_audition_num == _page_num && timeline.find (_audition_num) != timeline.end ()) { const float p = (float)pos / len; for (std::list::const_iterator i = timeline[_audition_num].begin(); i != timeline[_audition_num].end(); ++i) { (*i)->set_playhead (p); } } } void ExportReport::audition_seek (int page, float pos) { if (_audition_num == page && _session) { _session->the_auditioner()->seek_to_percent (100.f * pos); } } void ExportReport::on_logscale_toggled (Gtk::ToggleButton* b) { bool en = b->get_active (); for (std::list::iterator i = waves.begin (); i != waves.end (); ++i) { (*i)->set_logscale (en); } } void ExportReport::on_rectivied_toggled (Gtk::ToggleButton* b) { bool en = b->get_active (); for (std::list::iterator i = waves.begin (); i != waves.end (); ++i) { (*i)->set_rectified (en); } }