diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-03-06 01:11:01 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-03-06 01:11:01 +0000 |
| commit | 3f30952afbda7d945998f62fee836afc8bc8a48f (patch) | |
| tree | 0d667c3da23e3d5173af64fc04041665689023e7 /src | |
| parent | bb6ceb671f08e0294556036af7ca5f88d1db2fca (diff) | |
Fix mistake in previous simplification.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/video_decoder.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/video_decoder.cc b/src/lib/video_decoder.cc index 8461b1635..9c0d2bbe3 100644 --- a/src/lib/video_decoder.cc +++ b/src/lib/video_decoder.cc @@ -52,7 +52,7 @@ VideoDecoder::emit_video (shared_ptr<Image> image, double t) sub = _timed_subtitle->subtitle (); } - Video (image, same, sub, t); + Video (image, false, sub, t); ++_video_frame; _last_source_time = t; |
