]> git.sesse.net Git - nageru/blobdiff - audio_encoder.h
Re-run include-what-you-use.
[nageru] / audio_encoder.h
index 7bdb02a3657d61675e3ea66354f58ea17e35015a..93adbafce954d6188f3d5ca86770ff7dace53f6c 100644 (file)
@@ -3,18 +3,21 @@
 #ifndef _AUDIO_ENCODER_H
 #define _AUDIO_ENCODER_H 1
 
-#include <memory>
+#include <stddef.h>
+#include <stdint.h>
 #include <string>
 #include <vector>
 
 extern "C" {
 #include <libavcodec/avcodec.h>
+#include <libavformat/avformat.h>
 #include <libavresample/avresample.h>
 #include <libavutil/frame.h>
 }
 
 #include "ffmpeg_raii.h"
-#include "mux.h"
+
+class Mux;
 
 class AudioEncoder {
 public: