diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-07-20 21:22:52 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-07-20 21:22:52 +0100 |
| commit | d8d7ddd4c39e3ea347afd1fccc037d8b0a31bc87 (patch) | |
| tree | a9071c33d3a6e60f970e5e6c08c70a9efa142838 /src/lib/player.cc | |
| parent | 72ae435a9b2a554d5de7280ad51793ed6a835f42 (diff) | |
Basic support for decryption of imported DCPs.
Diffstat (limited to 'src/lib/player.cc')
| -rw-r--r-- | src/lib/player.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/player.cc b/src/lib/player.cc index c8ac591a7..06f9e1365 100644 --- a/src/lib/player.cc +++ b/src/lib/player.cc @@ -31,6 +31,7 @@ #include "subtitle_content.h" #include "subrip_decoder.h" #include "subrip_content.h" +#include "dcp_content.h" #include "playlist.h" #include "job.h" #include "image.h" @@ -189,7 +190,8 @@ Player::content_changed (weak_ptr<Content> w, int property, bool frequent) property == ContentProperty::TRIM_START || property == ContentProperty::TRIM_END || property == ContentProperty::PATH || - property == VideoContentProperty::VIDEO_FRAME_TYPE + property == VideoContentProperty::VIDEO_FRAME_TYPE || + property == DCPContentProperty::CAN_BE_PLAYED ) { _have_valid_pieces = false; |
