ChangeLog.
[dcpomatic.git] / src / lib / ffmpeg_examiner.h
index ec84865ed7cce45fdcc40999e5bb4f197fb55ce2..4de475d2a3f78d753985f6b165e56bf3b74c7290 100644 (file)
@@ -47,9 +47,11 @@ public:
        
 private:
        std::string stream_name (AVStream* s) const;
+       std::string audio_stream_name (AVStream* s) const;
+       std::string subtitle_stream_name (AVStream* s) const;
        boost::optional<double> frame_time (int) const;
        
-        std::vector<boost::shared_ptr<FFmpegSubtitleStream> > _subtitle_streams;
-        std::vector<boost::shared_ptr<FFmpegAudioStream> > _audio_streams;
+       std::vector<boost::shared_ptr<FFmpegSubtitleStream> > _subtitle_streams;
+       std::vector<boost::shared_ptr<FFmpegAudioStream> > _audio_streams;
        boost::optional<double> _first_video;
 };