summaryrefslogtreecommitdiff
path: root/src/lib/ffmpeg_decoder.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-04-28 13:48:29 +0200
committerCarl Hetherington <cth@carlh.net>2022-04-28 13:48:29 +0200
commitd52426b1e69f8af2f7d33022ed4e173a8c876afc (patch)
tree19b5eef5993190f79f33b6d18a51b008431013ac /src/lib/ffmpeg_decoder.h
parenta1d11f2e9cc3678bd68b95c0e444c8245ef776b5 (diff)
Tidying.
Diffstat (limited to 'src/lib/ffmpeg_decoder.h')
-rw-r--r--src/lib/ffmpeg_decoder.h12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/lib/ffmpeg_decoder.h b/src/lib/ffmpeg_decoder.h
index b4b0faa3b..663a3c687 100644
--- a/src/lib/ffmpeg_decoder.h
+++ b/src/lib/ffmpeg_decoder.h
@@ -18,26 +18,30 @@
*/
+
/** @file src/ffmpeg_decoder.h
* @brief A decoder using FFmpeg to decode content.
*/
-#include "util.h"
+
#include "decoder.h"
#include "ffmpeg.h"
+#include "util.h"
extern "C" {
#include <libavcodec/avcodec.h>
}
#include <boost/thread/mutex.hpp>
#include <stdint.h>
-class Log;
-class VideoFilterGraph;
-class FFmpegAudioStream;
+
class AudioBuffers;
+class FFmpegAudioStream;
class Image;
+class Log;
+class VideoFilterGraph;
struct ffmpeg_pts_offset_test;
+
/** @class FFmpegDecoder
* @brief A decoder using FFmpeg to decode content.
*/