summaryrefslogtreecommitdiff
path: root/src/lib/ffmpeg_decoder.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-11-04 16:55:50 +0000
committerCarl Hetherington <cth@carlh.net>2012-11-04 16:55:50 +0000
commit1d96023ab3987e55fd6452f655dfb900c6012881 (patch)
tree235b558aec10da89dca7484686ff035cbef4811c /src/lib/ffmpeg_decoder.cc
parent4fb0a5ab9eebc0f07981edc3a6813102520b8233 (diff)
Remove unused ignore_length parameter.
Diffstat (limited to 'src/lib/ffmpeg_decoder.cc')
-rw-r--r--src/lib/ffmpeg_decoder.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/ffmpeg_decoder.cc b/src/lib/ffmpeg_decoder.cc
index 198925bd3..f0e652cbe 100644
--- a/src/lib/ffmpeg_decoder.cc
+++ b/src/lib/ffmpeg_decoder.cc
@@ -55,8 +55,8 @@ using std::vector;
using std::stringstream;
using boost::shared_ptr;
-FFmpegDecoder::FFmpegDecoder (shared_ptr<Film> f, shared_ptr<const Options> o, Job* j, bool minimal, bool ignore_length)
- : Decoder (f, o, j, minimal, ignore_length)
+FFmpegDecoder::FFmpegDecoder (shared_ptr<Film> f, shared_ptr<const Options> o, Job* j, bool minimal)
+ : Decoder (f, o, j, minimal)
, _format_context (0)
, _video_stream (-1)
, _audio_stream (-1)