diff options
| author | Carl Hetherington <cth@carlh.net> | 2012-11-04 13:41:43 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2012-11-04 13:41:43 +0000 |
| commit | c366d41af080b9ac37117a9b27a249722c77f74e (patch) | |
| tree | 29e26d4b0877fd0212c3867eb42c32df47d9bcd3 /src/lib/tiff_decoder.cc | |
| parent | 09fcd95ff5125d7238188c59aa40430acb45ecbc (diff) | |
Skip every other frame with 50fps sources.
Diffstat (limited to 'src/lib/tiff_decoder.cc')
| -rw-r--r-- | src/lib/tiff_decoder.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/tiff_decoder.cc b/src/lib/tiff_decoder.cc index 9058fcc2a..1500b9b48 100644 --- a/src/lib/tiff_decoder.cc +++ b/src/lib/tiff_decoder.cc @@ -198,7 +198,7 @@ TIFFDecoder::pixel_format () const int TIFFDecoder::time_base_numerator () const { - return rint (_film->frames_per_second()); + return dcp_frame_rate(_film->frames_per_second()).frames_per_second; } |
