summaryrefslogtreecommitdiff
path: root/src/lib/ffmpeg.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-08-26 20:27:45 +0100
committerCarl Hetherington <cth@carlh.net>2015-08-26 20:27:45 +0100
commit6b62e9c77b2a45fd1d7084626f2bb2949e832e5f (patch)
tree486f58182c8b740a8ba2be20d59e002f2d8c55dd /src/lib/ffmpeg.h
parente7e9347cdd1f43e0dd3d1ca35632e9493a010fc6 (diff)
Separate FFmpegSubtitlePeriod.
Diffstat (limited to 'src/lib/ffmpeg.h')
-rw-r--r--src/lib/ffmpeg.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/ffmpeg.h b/src/lib/ffmpeg.h
index 9e9d5125a..961f5cbb1 100644
--- a/src/lib/ffmpeg.h
+++ b/src/lib/ffmpeg.h
@@ -20,10 +20,11 @@
#ifndef DCPOMATIC_FFMPEG_H
#define DCPOMATIC_FFMPEG_H
+#include "file_group.h"
+#include "ffmpeg_subtitle_period.h"
extern "C" {
#include <libavcodec/avcodec.h>
}
-#include "file_group.h"
#include <boost/shared_ptr.hpp>
#include <boost/thread/mutex.hpp>
@@ -50,6 +51,7 @@ public:
protected:
AVCodecContext* video_codec_context () const;
AVCodecContext* subtitle_codec_context () const;
+ static FFmpegSubtitlePeriod subtitle_period (AVSubtitle const &);
boost::shared_ptr<const FFmpegContent> _ffmpeg_content;