/** @param job job that the examiner is operating in, or 0 */
FFmpegExaminer::FFmpegExaminer (shared_ptr<const FFmpegContent> c, shared_ptr<Job> job)
: FFmpeg (c)
- , _video_length (0)
- , _need_video_length (false)
- , _pulldown (false)
{
/* Find audio and subtitle streams */
/** Video length, either obtained from the header or derived by running
* through the whole file.
*/
- Frame _video_length;
- bool _need_video_length;
+ Frame _video_length = 0;
+ bool _need_video_length = false;
boost::optional<double> _rotation;
- bool _pulldown;
+ bool _pulldown = false;
struct SubtitleStart
{