diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-11-21 16:57:15 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2017-04-19 23:04:32 +0100 |
| commit | de2af791bdfdcd653752cba970e59efc7bf810c7 (patch) | |
| tree | 1aa5dbc35daee0babd0def347944a6bea4154deb /src/wx | |
| parent | 06152300e69e8faca44ff8d7f12a6fd354848b9a (diff) | |
Basic grunt-work, untested and unfinished, but it compiles.
Diffstat (limited to 'src/wx')
| -rw-r--r-- | src/wx/film_viewer.cc | 137 | ||||
| -rw-r--r-- | src/wx/film_viewer.h | 9 | ||||
| -rw-r--r-- | src/wx/subtitle_view.cc | 4 |
3 files changed, 63 insertions, 87 deletions
diff --git a/src/wx/film_viewer.cc b/src/wx/film_viewer.cc index 3c6138d46..beab8f321 100644 --- a/src/wx/film_viewer.cc +++ b/src/wx/film_viewer.cc @@ -79,7 +79,7 @@ FilmViewer::FilmViewer (wxWindow* p) , _play_button (new wxToggleButton (this, wxID_ANY, _("Play"))) , _coalesce_player_changes (false) , _pending_player_change (false) - , _last_get_accurate (true) + , _last_seek_accurate (true) { #ifndef __WXOSX__ _panel->SetDoubleBuffered (true); @@ -196,93 +196,56 @@ FilmViewer::refresh_panel () } void -FilmViewer::get (DCPTime p, bool accurate) +FilmViewer::video (shared_ptr<PlayerVideo> pv) { if (!_player) { return; } - list<shared_ptr<PlayerVideo> > all_pv; - try { - all_pv = _player->get_video (p, accurate); - } catch (exception& e) { - error_dialog (this, wxString::Format (_("Could not get video for view (%s)"), std_to_wx(e.what()).data())); - } - - if (!all_pv.empty ()) { - try { - shared_ptr<PlayerVideo> pv; - if (all_pv.size() == 2) { - /* We have 3D; choose the correct eye */ - if (_left_eye->GetValue()) { - if (all_pv.front()->eyes() == EYES_LEFT) { - pv = all_pv.front(); - } else { - pv = all_pv.back(); - } - } else { - if (all_pv.front()->eyes() == EYES_RIGHT) { - pv = all_pv.front(); - } else { - pv = all_pv.back(); - } - } - } else { - /* 2D; no choice to make */ - pv = all_pv.front (); - } - - /* In an ideal world, what we would do here is: - * - * 1. convert to XYZ exactly as we do in the DCP creation path. - * 2. convert back to RGB for the preview display, compensating - * for the monitor etc. etc. - * - * but this is inefficient if the source is RGB. Since we don't - * (currently) care too much about the precise accuracy of the preview's - * colour mapping (and we care more about its speed) we try to short- - * circuit this "ideal" situation in some cases. - * - * The content's specified colour conversion indicates the colourspace - * which the content is in (according to the user). - * - * PlayerVideo::image (bound to PlayerVideo::always_rgb) will take the source - * image and convert it (from whatever the user has said it is) to RGB. - */ - - _frame = pv->image ( - bind (&Log::dcp_log, _film->log().get(), _1, _2), - bind (&PlayerVideo::always_rgb, _1), - false, true - ); - - ImageChanged (pv); - - _position = pv->time (); - _inter_position = pv->inter_position (); - _inter_size = pv->inter_size (); - } catch (dcp::DCPReadError& e) { - /* This can happen on the following sequence of events: - * - load encrypted DCP - * - add KDM - * - DCP is examined again, which sets its "playable" flag to 1 - * - as a side effect of the exam, the viewer is updated using the old pieces - * - the DCPDecoder in the old piece gives us an encrypted frame - * - then, the pieces are re-made (but too late). - * - * I hope there's a better way to handle this ... - */ - _frame.reset (); - _position = p; + if (_film->three_d ()) { + if ((_left_eye->GetValue() && pv->eyes() == EYES_RIGHT) || (_right_eye->GetValue() && pv->eyes() == EYES_LEFT)) { + return; } - } else { - _frame.reset (); - _position = p; } + /* In an ideal world, what we would do here is: + * + * 1. convert to XYZ exactly as we do in the DCP creation path. + * 2. convert back to RGB for the preview display, compensating + * for the monitor etc. etc. + * + * but this is inefficient if the source is RGB. Since we don't + * (currently) care too much about the precise accuracy of the preview's + * colour mapping (and we care more about its speed) we try to short- + * circuit this "ideal" situation in some cases. + * + * The content's specified colour conversion indicates the colourspace + * which the content is in (according to the user). + * + * PlayerVideo::image (bound to PlayerVideo::always_rgb) will take the source + * image and convert it (from whatever the user has said it is) to RGB. + */ + + _frame = pv->image ( + bind (&Log::dcp_log, _film->log().get(), _1, _2), + bind (&PlayerVideo::always_rgb, _1), + false, true + ); + + ImageChanged (pv); + + _position = pv->time (); + _inter_position = pv->inter_position (); + _inter_size = pv->inter_size (); + refresh_panel (); +} - _last_get_accurate = accurate; +void +FilmViewer::get () +{ + Image const * current = _frame.get (); + while (!_player->pass() && _frame.get() == current) {} } void @@ -294,7 +257,7 @@ FilmViewer::timer () _play_button->SetValue (false); check_play_state (); } else { - get (_position + frame, true); + get (); } update_position_label (); @@ -351,7 +314,7 @@ FilmViewer::slider_moved () if (t >= _film->length ()) { t = _film->length() - DCPTime::from_frames (1, _film->video_frame_rate ()); } - get (t, false); + seek (t, false); update_position_label (); } @@ -485,7 +448,7 @@ FilmViewer::go_to (DCPTime t) t = _film->length (); } - get (t, true); + seek (t, true); update_position_label (); update_position_slider (); } @@ -551,14 +514,14 @@ FilmViewer::film_changed (Film::Property p) void FilmViewer::refresh () { - get (_position, _last_get_accurate); + seek (_position, _last_seek_accurate); } void FilmViewer::set_position (DCPTime p) { _position = p; - get (_position, true); + seek (p, true); update_position_label (); update_position_slider (); } @@ -602,3 +565,11 @@ FilmViewer::jump_to_selected_clicked () { Config::instance()->set_jump_to_selected (_jump_to_selected->GetValue ()); } + +void +FilmViewer::seek (DCPTime t, bool accurate) +{ + _player->seek (t, accurate); + _last_seek_accurate = accurate; + get (); +} diff --git a/src/wx/film_viewer.h b/src/wx/film_viewer.h index 0db4bccc5..563178ac3 100644 --- a/src/wx/film_viewer.h +++ b/src/wx/film_viewer.h @@ -67,7 +67,9 @@ private: void player_changed (bool); void update_position_label (); void update_position_slider (); - void get (DCPTime, bool); + void video (boost::shared_ptr<PlayerVideo>); + void get (); + void seek (DCPTime t, bool accurate); void refresh_panel (); void setup_sensitivity (); void film_changed (Film::Property); @@ -105,12 +107,11 @@ private: dcp::Size _out_size; /** Size of the panel that we have available */ dcp::Size _panel_size; - /** true if the last call to ::get() was specified to be accurate; + /** true if the last call to Player::seek() was specified to be accurate; * this is used so that when re-fetching the current frame we * can get the same one that we got last time. */ - bool _last_get_accurate; - + bool _last_seek_accurate; boost::signals2::scoped_connection _film_connection; boost::signals2::scoped_connection _player_connection; }; diff --git a/src/wx/subtitle_view.cc b/src/wx/subtitle_view.cc index e3aaffdfc..6ec71fce5 100644 --- a/src/wx/subtitle_view.cc +++ b/src/wx/subtitle_view.cc @@ -66,6 +66,9 @@ SubtitleView::SubtitleView (wxWindow* parent, shared_ptr<Film> film, shared_ptr< sizer->Add (buttons, wxSizerFlags().Expand().DoubleBorder()); } +#if 0 + XXX + list<ContentTextSubtitle> subs = decoder->subtitle->get_text (ContentTimePeriod (ContentTime(), ContentTime::max ()), true, true); FrameRateChange const frc = film->active_frame_rate_change (position); int n = 0; @@ -81,6 +84,7 @@ SubtitleView::SubtitleView (wxWindow* parent, shared_ptr<Film> film, shared_ptr< ++n; } } +#endif SetSizerAndFit (sizer); } |
