]> git.sesse.net Git - nageru/blobdiff - quicksync_encoder.h
Move X264Encoder out of QuickSyncEncoder. This completes independent restart of the...
[nageru] / quicksync_encoder.h
index 9ec7c85b88a28e76777b8474ec6449fdd61eceaa..40bf15e90904bdb682906e7f130e2a33ef184f08 100644 (file)
@@ -40,13 +40,14 @@ class AudioEncoder;
 class Mux;
 class QuickSyncEncoderImpl;
 class QSurface;
+class X264Encoder;
 
 // This is just a pimpl, because including anything X11-related in a .h file
 // tends to trip up Qt. All the real logic is in QuickSyncEncoderImpl, defined in the
 // .cpp file.
 class QuickSyncEncoder {
 public:
-        QuickSyncEncoder(const std::string &filename, QSurface *surface, const std::string &va_display, int width, int height, Mux *stream_mux, AudioEncoder *stream_audio_encoder);
+        QuickSyncEncoder(const std::string &filename, QSurface *surface, const std::string &va_display, int width, int height, Mux *stream_mux, AudioEncoder *stream_audio_encoder, X264Encoder *x264_encoder);
         ~QuickSyncEncoder();
 
        void add_audio(int64_t pts, std::vector<float> audio);