| 84 | } |
| 85 | |
| 86 | unsigned int Timecode::max_frames() const { |
| 87 | return Timecode(23, 59, 59, nominal_framerate() - 1, frame_rate_, drop_frame_) |
| 88 | .total_frames(); |
| 89 | } |
| 90 | |
| 91 | void Timecode::validate() { |
| 92 | if (frames_ >= nominal_framerate()) { |
nothing calls this directly
no test coverage detected