summaryrefslogtreecommitdiff
path: root/src/lib/video_decoder.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-01-23 19:04:32 +0000
committerCarl Hetherington <cth@carlh.net>2013-01-23 19:04:32 +0000
commit4233db111cc4b1ca8a1a82b8aac96805a866ffa0 (patch)
tree8630ffa47b36962a34435e0ceed8f2efe9bdfb61 /src/lib/video_decoder.cc
parent52821965206bce3e5d47200d838e54996857d212 (diff)
Fix some unaligned images.
Diffstat (limited to 'src/lib/video_decoder.cc')
-rw-r--r--src/lib/video_decoder.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/video_decoder.cc b/src/lib/video_decoder.cc
index 3a803a863..0fa16bc32 100644
--- a/src/lib/video_decoder.cc
+++ b/src/lib/video_decoder.cc
@@ -57,7 +57,7 @@ void
VideoDecoder::repeat_last_video ()
{
if (!_last_image) {
- _last_image.reset (new SimpleImage (pixel_format(), native_size(), false));
+ _last_image.reset (new SimpleImage (pixel_format(), native_size(), true));
_last_image->make_black ();
}