diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-05-27 10:21:46 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-05-27 10:21:46 +0100 |
| commit | 0a20f4b0ee59f06732648f981fe4d3e387b5705a (patch) | |
| tree | 896bcb730b4985186597d854cadd18fa712d4ea6 /src/lib/ffmpeg_examiner.cc | |
| parent | 387304bc9147933b68eda2b38ba8cac0d250e87e (diff) | |
Fix some uninitialised variables.
Diffstat (limited to 'src/lib/ffmpeg_examiner.cc')
| -rw-r--r-- | src/lib/ffmpeg_examiner.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/ffmpeg_examiner.cc b/src/lib/ffmpeg_examiner.cc index eea99e1e8..5062ef0ca 100644 --- a/src/lib/ffmpeg_examiner.cc +++ b/src/lib/ffmpeg_examiner.cc @@ -40,6 +40,7 @@ using boost::optional; /** @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) { /* Find audio and subtitle streams */ |
