diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-05-27 20:55:51 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-06-02 13:38:21 +0100 |
| commit | 0a93237cb5e4642d3b698ff9b7d0cfae5401478c (patch) | |
| tree | b0d5255ae2b90d1c9ef489e78239c2f081ea0a9e /src/wx | |
| parent | 608c146eb09fac2a8fc60e1a72591f6bb8364e1f (diff) | |
Handle multiple audio streams in a single piece of content
in a similar way to the V1 patch.
Diffstat (limited to 'src/wx')
| -rw-r--r-- | src/wx/audio_dialog.cc | 2 | ||||
| -rw-r--r-- | src/wx/audio_panel.cc | 111 | ||||
| -rw-r--r-- | src/wx/audio_panel.h | 5 | ||||
| -rw-r--r-- | src/wx/content_properties_dialog.cc | 14 | ||||
| -rw-r--r-- | src/wx/dcp_panel.cc | 2 | ||||
| -rw-r--r-- | src/wx/timeline.cc | 2 |
6 files changed, 8 insertions, 128 deletions
diff --git a/src/wx/audio_dialog.cc b/src/wx/audio_dialog.cc index fcae9c30f..11de9586b 100644 --- a/src/wx/audio_dialog.cc +++ b/src/wx/audio_dialog.cc @@ -196,7 +196,7 @@ AudioDialog::content_changed (int p) if (p == AudioContentProperty::AUDIO_GAIN) { _plot->set_gain (_content->audio_gain ()); setup_peak_time (); - } else if (p == AudioContentProperty::AUDIO_MAPPING) { + } else if (p == AudioContentProperty::AUDIO_STREAMS) { try_to_load_analysis (); } } diff --git a/src/wx/audio_panel.cc b/src/wx/audio_panel.cc index 4d783ca9d..8b2682762 100644 --- a/src/wx/audio_panel.cc +++ b/src/wx/audio_panel.cc @@ -19,8 +19,6 @@ #include "lib/config.h" #include "lib/ffmpeg_content.h" -#include "lib/ffmpeg_audio_stream.h" -#include "lib/audio_processor.h" #include "lib/cinema_sound_processor.h" #include "audio_dialog.h" #include "audio_panel.h" @@ -83,17 +81,6 @@ AudioPanel::AudioPanel (ContentPanel* p) add_label_to_grid_bag_sizer (grid, this, _("ms"), false, wxGBPosition (r, 2)); ++r; - add_label_to_grid_bag_sizer (grid, this, _("Stream"), true, wxGBPosition (r, 0)); - _stream = new wxChoice (this, wxID_ANY); - grid->Add (_stream, wxGBPosition (r, 1), wxGBSpan (1, 3), wxEXPAND); - ++r; - - add_label_to_grid_bag_sizer (grid, this, _("Process with"), true, wxGBPosition (r, 0)); - _processor = new wxChoice (this, wxID_ANY); - setup_processors (); - grid->Add (_processor, wxGBPosition (r, 1), wxGBSpan (1, 3), wxEXPAND); - ++r; - _mapping = new AudioMappingView (this); _sizer->Add (_mapping, 1, wxEXPAND | wxALL, 6); ++r; @@ -111,10 +98,8 @@ AudioPanel::AudioPanel (ContentPanel* p) _gain->wrapped()->SetIncrement (0.5); _delay->wrapped()->SetRange (-1000, 1000); - _stream->Bind (wxEVT_COMMAND_CHOICE_SELECTED, boost::bind (&AudioPanel::stream_changed, this)); _show->Bind (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&AudioPanel::show_clicked, this)); _gain_calculate_button->Bind (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&AudioPanel::gain_calculate_button_clicked, this)); - _processor->Bind (wxEVT_COMMAND_CHOICE_SELECTED, boost::bind (&AudioPanel::processor_changed, this)); _mapping_connection = _mapping->Changed.connect (boost::bind (&AudioPanel::mapping_changed, this, _1)); } @@ -147,34 +132,10 @@ AudioPanel::film_content_changed (int property) fcs = dynamic_pointer_cast<FFmpegContent> (acs); } - if (property == AudioContentProperty::AUDIO_MAPPING) { + if (property == AudioContentProperty::AUDIO_STREAMS) { _mapping->set (acs ? acs->audio_mapping () : AudioMapping ()); _sizer->Layout (); - } else if (property == AudioContentProperty::AUDIO_FRAME_RATE) { setup_description (); - } else if (property == FFmpegContentProperty::AUDIO_STREAM) { - _mapping->set (acs ? acs->audio_mapping () : AudioMapping ()); - _sizer->Layout (); - } else if (property == FFmpegContentProperty::AUDIO_STREAMS) { - if (fcs) { - vector<pair<string, string> > data; - BOOST_FOREACH (shared_ptr<FFmpegAudioStream> i, fcs->audio_streams ()) { - data.push_back (make_pair (i->name, i->identifier ())); - } - checked_set (_stream, data); - - if (fcs->audio_stream()) { - checked_set (_stream, fcs->audio_stream()->identifier ()); - } - } else { - _stream->Clear (); - } - } else if (property == AudioContentProperty::AUDIO_PROCESSOR) { - if (acs) { - checked_set (_processor, acs->audio_processor() ? acs->audio_processor()->id() : N_("none")); - } else { - checked_set (_processor, N_("none")); - } } } @@ -223,47 +184,6 @@ AudioPanel::show_clicked () } void -AudioPanel::stream_changed () -{ - FFmpegContentList fc = _parent->selected_ffmpeg (); - if (fc.size() != 1) { - return; - } - - shared_ptr<FFmpegContent> fcs = fc.front (); - - if (_stream->GetSelection() == -1) { - return; - } - - vector<shared_ptr<FFmpegAudioStream> > a = fcs->audio_streams (); - vector<shared_ptr<FFmpegAudioStream> >::iterator i = a.begin (); - string const s = string_client_data (_stream->GetClientObject (_stream->GetSelection ())); - while (i != a.end() && (*i)->identifier () != s) { - ++i; - } - - if (i != a.end ()) { - fcs->set_audio_stream (*i); - } -} - -void -AudioPanel::processor_changed () -{ - string const s = string_client_data (_processor->GetClientObject (_processor->GetSelection ())); - AudioProcessor const * p = 0; - if (s != wx_to_std (N_("none"))) { - p = AudioProcessor::from_id (s); - } - - AudioContentList c = _parent->selected_audio (); - for (AudioContentList::const_iterator i = c.begin(); i != c.end(); ++i) { - (*i)->set_audio_processor (p); - } -} - -void AudioPanel::setup_description () { AudioContentList ac = _parent->selected_audio (); @@ -298,36 +218,7 @@ AudioPanel::content_selection_changed () _gain_calculate_button->Enable (sel.size() == 1); _show->Enable (sel.size() == 1); - _stream->Enable (sel.size() == 1); - _processor->Enable (!sel.empty()); _mapping->Enable (sel.size() == 1); - setup_processors (); - - film_content_changed (AudioContentProperty::AUDIO_MAPPING); - film_content_changed (AudioContentProperty::AUDIO_PROCESSOR); - film_content_changed (AudioContentProperty::AUDIO_FRAME_RATE); - film_content_changed (FFmpegContentProperty::AUDIO_STREAM); film_content_changed (FFmpegContentProperty::AUDIO_STREAMS); } - -void -AudioPanel::setup_processors () -{ - AudioContentList sel = _parent->selected_audio (); - - _processor->Clear (); - list<AudioProcessor const *> ap = AudioProcessor::all (); - _processor->Append (_("None"), new wxStringClientData (N_("none"))); - for (list<AudioProcessor const *>::const_iterator i = ap.begin(); i != ap.end(); ++i) { - - AudioContentList::const_iterator j = sel.begin(); - while (j != sel.end() && (*i)->in_channels().includes ((*j)->audio_channels ())) { - ++j; - } - - if (j == sel.end ()) { - _processor->Append (std_to_wx ((*i)->name ()), new wxStringClientData (std_to_wx ((*i)->id ()))); - } - } -} diff --git a/src/wx/audio_panel.h b/src/wx/audio_panel.h index a5bfef4ca..ad7d6081b 100644 --- a/src/wx/audio_panel.h +++ b/src/wx/audio_panel.h @@ -40,18 +40,13 @@ public: private: void gain_calculate_button_clicked (); void show_clicked (); - void stream_changed (); void mapping_changed (AudioMapping); - void processor_changed (); - void setup_processors (); void setup_description (); ContentSpinCtrlDouble<AudioContent>* _gain; wxButton* _gain_calculate_button; wxButton* _show; ContentSpinCtrl<AudioContent>* _delay; - wxChoice* _stream; - wxChoice* _processor; AudioMappingView* _mapping; wxStaticText* _description; AudioDialog* _audio_dialog; diff --git a/src/wx/content_properties_dialog.cc b/src/wx/content_properties_dialog.cc index c212eb50a..feb2c6a46 100644 --- a/src/wx/content_properties_dialog.cc +++ b/src/wx/content_properties_dialog.cc @@ -53,19 +53,13 @@ ContentPropertiesDialog::ContentPropertiesDialog (wxWindow* parent, shared_ptr<C ); } - shared_ptr<AudioContent> audio = dynamic_pointer_cast<AudioContent> (content); - if (audio) { - add_property ( - _("Audio channels"), - std_to_wx (raw_convert<string> (audio->audio_channels ())) - ); - } - + /* XXX: this could be better wrt audio streams */ + shared_ptr<SingleStreamAudioContent> single = dynamic_pointer_cast<SingleStreamAudioContent> (content); if (single) { add_property ( - _("Audio length"), - std_to_wx (raw_convert<string> (single->audio_length())) + " " + _("audio frames") + _("Audio channels"), + std_to_wx (raw_convert<string> (single->audio_stream()->channels ())) ); } diff --git a/src/wx/dcp_panel.cc b/src/wx/dcp_panel.cc index 18ffb8b3b..be6e08341 100644 --- a/src/wx/dcp_panel.cc +++ b/src/wx/dcp_panel.cc @@ -361,7 +361,7 @@ DCPPanel::film_changed (int p) void DCPPanel::film_content_changed (int property) { - if (property == FFmpegContentProperty::AUDIO_STREAM || + if (property == FFmpegContentProperty::AUDIO_STREAMS || property == SubtitleContentProperty::USE_SUBTITLES || property == VideoContentProperty::VIDEO_SCALE) { setup_dcp_name (); diff --git a/src/wx/timeline.cc b/src/wx/timeline.cc index f1c6e30f3..c1713bb61 100644 --- a/src/wx/timeline.cc +++ b/src/wx/timeline.cc @@ -142,7 +142,7 @@ Timeline::playlist_content_changed (int property) setup_pixels_per_second (); } Refresh (); - } else if (property == AudioContentProperty::AUDIO_MAPPING) { + } else if (property == AudioContentProperty::AUDIO_STREAMS) { recreate_views (); } } |
