summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2018-08-19Work around visual glitch when clicking on an already-selectedv2.13.43Carl Hetherington
piece of content; on Linux at least you get a deselected event then a selected event for that content.
2018-08-19More missing updates.Carl Hetherington
2018-08-19Update new panels when they are created.Carl Hetherington
2018-08-19Remove unnecessary set_film call.Carl Hetherington
2018-08-19White space.Carl Hetherington
2018-08-19Similar pending/done for Film::Change.Carl Hetherington
2018-08-19Replace May/Done/NotDone signal sets with one signal and extendCarl Hetherington
this treatment to anything that caused Player::setup_pieces. This should fix out-of-sequence Player emissions caused by setup_pieces being called by one thread while the butler is calling pass().
2018-08-19Suspend butler on player may-change as otherwise there's a windowCarl Hetherington
between Player::_suspended being set to false and the the butler requesting a seek, during which the butler may call pass().
2018-08-18Destroy and re-create content sub-panels as required; fixes weirdCarl Hetherington
artefacts (unhidden bits of UI) on Windows/OS X.
2018-08-18Fix disappearing video panel on OS X.Carl Hetherington
2018-08-17Position is not affected when Content video frame rate is set.Carl Hetherington
2018-08-16Add pause/resume to the batch converter (#1248).Carl Hetherington
Add some missing locking to JobManager::decrease_priority.
2018-08-15Missing extension (thanks Igor).Carl Hetherington
2018-08-15Build fixes.Carl Hetherington
2018-08-15Add GDC and accounts icon.Carl Hetherington
2018-08-15Christie fixes.Carl Hetherington
2018-08-15Christie support.Carl Hetherington
2018-08-15More rearrangement and add Barco Alchemy.Carl Hetherington
2018-08-15Shift some more stuff around.Carl Hetherington
2018-08-15Remove unused setup stuff in DownloadCertificatePanel.Carl Hetherington
2018-08-15Move some stuff into DownloadCertificatePanel; add name().Carl Hetherington
2018-08-14Give filename (where possible) when image file decoding fails.Carl Hetherington
2018-08-14Add subscribers in their own part of the about box.Carl Hetherington
2018-08-14Temporary debugging.Carl Hetherington
2018-08-14Merge branch 'master' of ssh://git.carlh.net/home/carl/git/dcpomaticCarl Hetherington
2018-08-14Missing files.Carl Hetherington
2018-08-14More fixes for errors / crashes / misbehaviour with content changesCarl Hetherington
and the butler. Here we signal both before and after a change in content. Before, the player disables itself so that any pass()/seek() will be no-ops. After, the player rebuilds its pieces and the butler re-seeks to get back to where it was before the change.
2018-08-14Use a radio item rather than a check item when selecting CPL in the content ↵Carl Hetherington
menu.
2018-08-14Select CPL by name in the player (#1357).Carl Hetherington
2018-08-12Set up selection when opening timeline.Carl Hetherington
2018-08-12Punt jump-to-selected to a UI idle handler.Carl Hetherington
2018-08-12Update reels markers properly.Carl Hetherington
2018-08-12Fix bad redraw when dragging content views.Carl Hetherington
2018-08-12White space.Carl Hetherington
2018-08-12Don't seek during timeline drags.Carl Hetherington
2018-08-10Use more direct route to fix hangs after calling some Player methods.Carl Hetherington
2018-08-10Try to fix Windows build.Carl Hetherington
2018-08-10Add some Changed() emissions so that when a butler is in controlCarl Hetherington
we always do a seek when we set _have_valid_pieces to false.
2018-08-09Fix writer assertion at the end of some 3D encodes; one too many fill frames ↵Carl Hetherington
were being emitted.
2018-08-09White space.Carl Hetherington
2018-08-09Remove duplicated stuff from seek_unlocked(); tweak some ordering.Carl Hetherington
2018-08-09Rather dubious fix for crash due to the sequence:Carl Hetherington
- playlist change - _have_valid_pieces -> false - signal butler - but meanwhile, pass happens which calls setup_pieces and starts emitting data from time 0 - this new data is not in sync with what's already in the audio ring buffers
2018-08-08Tweak message now that hints dialog is shown even when there are no hints.Carl Hetherington
2018-08-05Missing files.v2.13.42Carl Hetherington
2018-08-05Fiddle with ccap window default size.v2.13.41Carl Hetherington
2018-08-05Get closed caption view data from the butler, rather than the player.Carl Hetherington
You can't introduce the butler (so that the player is ahead of time) and then ask the player what should be in the frame that is being displayed "now"; the player will already have moved on.
2018-08-04Some subtitle renaming.Carl Hetherington
2018-08-04Remove unused parameter.Carl Hetherington
2018-08-04Timestamp audio emissions from butler and hence discard very lateCarl Hetherington
audio in FilmViewer. This should help with the case where lots of video frames are rapidly discarded when they are late but the corresponding audio is not, hence audio buffers get overfilled.
2018-08-02A variety of changes to improve (but not entirely fix) behaviourCarl Hetherington
when moving content (or otherwise changing the playlist) while playing. This commit refills the butler when things change in certain ways, and improves locking to cope with Player methods being called from the GUI and butler threads at the same time.