summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-09-05 01:35:20 +0100
committerCarl Hetherington <cth@carlh.net>2019-09-05 01:35:20 +0100
commitb578af0819126de2758687f9eae71dbcf5ed0325 (patch)
treeb71bd4bbf7b994e27e97df75277e0596e8545705 /src
parente4e038154f0bad3b91a57130c7a88d9fba6a488c (diff)
It seems that <FrameRate> of 96 is ok for 48fps 3D.
Diffstat (limited to 'src')
-rw-r--r--src/verify.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/verify.cc b/src/verify.cc
index 9ab9b150..e75be469 100644
--- a/src/verify.cc
+++ b/src/verify.cc
@@ -136,7 +136,8 @@ dcp::verify (vector<boost::filesystem::path> directories, function<void (string,
frame_rate.numerator != 30 &&
frame_rate.numerator != 48 &&
frame_rate.numerator != 50 &&
- frame_rate.numerator != 60)) {
+ frame_rate.numerator != 60 &&
+ frame_rate.numerator != 96)) {
notes.push_back (VerificationNote(VerificationNote::VERIFY_ERROR, VerificationNote::INVALID_PICTURE_FRAME_RATE));
}
/* Check asset */