Many experimental changes, including a new FrameMapper that is based on FileReaderBase, and lots of debug code.

This commit is contained in:
Jonathan Thomas
2012-10-17 09:57:02 -05:00
parent a57b81a734
commit 129a2fccd7
10 changed files with 327 additions and 306 deletions

View File

@@ -34,7 +34,7 @@ void ImageReader::Open() throw(InvalidFile)
image_frame = tr1::shared_ptr<Frame>(new Frame(1, source->size().width(), source->size().height(), "#000000", 0, 2));
// Add Image data to frame
image_frame->AddImage(source);
image_frame->AddImage(tr1::shared_ptr<Magick::Image>(source));
// Update image properties
info.has_audio = false;