X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Ftiming_panel.cc;h=184356a20cb39fc2ab80fcce5eac69f3ac529796;hb=5892c334c69b32901dab3c47124dfc7e72858f59;hp=7e7dd6fbdade58d1fd75a24b2858235e4e0e9d16;hpb=974d4a0bcdcb26ddb700d824e2deac32cfd171b1;p=dcpomatic.git diff --git a/src/wx/timing_panel.cc b/src/wx/timing_panel.cc index 7e7dd6fbd..184356a20 100644 --- a/src/wx/timing_panel.cc +++ b/src/wx/timing_panel.cc @@ -33,6 +33,8 @@ #include "lib/audio_content.h" #include "lib/string_text_file_content.h" #include "lib/video_content.h" +#include "lib/dcp_content.h" +#include "lib/ffmpeg_content.h" #include #include #include @@ -46,12 +48,14 @@ using boost::weak_ptr; using boost::dynamic_pointer_cast; using boost::optional; using dcp::locale_convert; +using namespace dcpomatic; TimingPanel::TimingPanel (ContentPanel* p, weak_ptr viewer) /* horrid hack for apparent lack of context support with wxWidgets i18n code */ /// TRANSLATORS: translate the word "Timing" here; do not include the "Timing|" prefix : ContentSubPanel (p, S_("Timing|Timing")) , _viewer (viewer) + , _film_content_changed_suspender (boost::bind(&TimingPanel::film_content_changed, this, _1)) { wxSize size = TimecodeBase::size (this); @@ -253,6 +257,10 @@ TimingPanel::update_play_length () void TimingPanel::film_content_changed (int property) { + if (_film_content_changed_suspender.check(property)) { + return; + } + int const film_video_frame_rate = _parent->film()->video_frame_rate (); /* Here we check to see if we have exactly one different value of various @@ -402,8 +410,7 @@ TimingPanel::trim_start_changed () optional ref_frc; optional ref_ph; - ContentTime const trim = _trim_start->get (_parent->film()->video_frame_rate ()); - + Suspender::Block bl = _film_content_changed_suspender.block (); BOOST_FOREACH (shared_ptr i, _parent->selected ()) { if (i->position() <= ph && ph < i->end(_parent->film())) { /* The playhead is in i. Use it as a reference to work out @@ -415,6 +422,7 @@ TimingPanel::trim_start_changed () ref_ph = ph - i->position() + DCPTime (i->trim_start(), ref_frc.get()); } + ContentTime const trim = _trim_start->get (i->video_frame_rate().get_value_or(_parent->film()->video_frame_rate())); i->set_trim_start (trim); } @@ -435,8 +443,9 @@ TimingPanel::trim_end_changed () fv->set_coalesce_player_changes (true); - ContentTime const trim = _trim_end->get (_parent->film()->video_frame_rate ()); + Suspender::Block bl = _film_content_changed_suspender.block (); BOOST_FOREACH (shared_ptr i, _parent->selected ()) { + ContentTime const trim = _trim_end->get (i->video_frame_rate().get_value_or(_parent->film()->video_frame_rate())); i->set_trim_end (trim); } @@ -445,13 +454,14 @@ TimingPanel::trim_end_changed () fv->seek (_parent->film()->length() - DCPTime::from_frames(1, _parent->film()->video_frame_rate()), true); } - fv->set_coalesce_player_changes (true); + fv->set_coalesce_player_changes (false); } void TimingPanel::play_length_changed () { DCPTime const play_length = _play_length->get (_parent->film()->video_frame_rate()); + Suspender::Block bl = _film_content_changed_suspender.block (); BOOST_FOREACH (shared_ptr i, _parent->selected ()) { FrameRateChange const frc = _parent->film()->active_frame_rate_change (i->position ()); i->set_trim_end ( @@ -463,7 +473,22 @@ TimingPanel::play_length_changed () void TimingPanel::video_frame_rate_changed () { - _set_video_frame_rate->Enable (true); + bool enable = true; + if (_video_frame_rate->GetValue() == wxT("")) { + /* No frame rate has been entered; if the user clicks "set" now it would unset the video + frame rate in the selected content. This can't be allowed for some content types. + */ + BOOST_FOREACH (shared_ptr i, _parent->selected()) { + if ( + dynamic_pointer_cast(i) || + dynamic_pointer_cast(i) + ) { + enable = false; + } + } + } + + _set_video_frame_rate->Enable (enable); } void @@ -473,6 +498,7 @@ TimingPanel::set_video_frame_rate () if (_video_frame_rate->GetValue() != wxT("")) { fr = locale_convert (wx_to_std (_video_frame_rate->GetValue ())); } + Suspender::Block bl = _film_content_changed_suspender.block (); BOOST_FOREACH (shared_ptr i, _parent->selected ()) { if (fr) { i->set_video_frame_rate (*fr);