Merge master branch.
[dcpomatic.git] / src / lib / subtitle.cc
index a7aa7cd21789a772edf04be8edd296362140b776..3754e5acf012c9a8dfe921fab46bb02440f397ef 100644 (file)
@@ -56,7 +56,7 @@ TimedSubtitle::TimedSubtitle (AVSubtitle const & sub)
                throw DecodeError ("non-bitmap subtitles not yet supported");
        }
        
-       shared_ptr<Image> image (new SimpleImage (PIX_FMT_RGBA, Size (rect->w, rect->h), true));
+       shared_ptr<Image> image (new SimpleImage (PIX_FMT_RGBA, libdcp::Size (rect->w, rect->h), true));
 
        /* Start of the first line in the subtitle */
        uint8_t* sub_p = rect->pict.data[0];