Update for libdcp API changes.
[dcpomatic.git] / src / lib / ffmpeg_examiner.h
index 5cd70d979cd6722f22fdebc3a22bef7f28a64c12..67fdcfae0baa65986a407f2adfd2b237828875da 100644 (file)
@@ -71,6 +71,10 @@ public:
 
        boost::optional<int> bits_per_pixel () const;
 
+       boost::optional<double> rotation () const {
+               return _rotation;
+       }
+
 private:
        void video_packet (AVCodecContext *);
        void audio_packet (AVCodecContext *, boost::shared_ptr<FFmpegAudioStream>);
@@ -88,6 +92,8 @@ private:
        Frame _video_length;
        bool _need_video_length;
 
+       boost::optional<double> _rotation;
+
        struct SubtitleStart
        {
                SubtitleStart (std::string id_, bool image_, ContentTime time_)