]> git.sesse.net Git - nageru/blobdiff - nageru/quicksync_encoder.h
Take --x264-speedcontrol-verbose out of the --help output.
[nageru] / nageru / quicksync_encoder.h
index 4f71f90067d3d8349f7f7ad11fe163c2b670dcf5..9f59c2c929b124d01666365a1ac9c551fc59f44a 100644 (file)
@@ -50,7 +50,7 @@ class Mux;
 class QSurface;
 class QuickSyncEncoderImpl;
 class RefCountedFrame;
-class X264Encoder;
+class VideoCodecInterface;
 
 namespace movit {
 class ResourcePool;
@@ -63,7 +63,7 @@ class ResourcePool;
 // This class is _not_ thread-safe, except where mentioned.
 class QuickSyncEncoder {
 public:
-        QuickSyncEncoder(const std::string &filename, movit::ResourcePool *resource_pool, QSurface *surface, const std::string &va_display, int width, int height, AVOutputFormat *oformat, X264Encoder *x264_encoder, DiskSpaceEstimator *disk_space_estimator);
+        QuickSyncEncoder(const std::string &filename, movit::ResourcePool *resource_pool, QSurface *surface, const std::string &va_display, int width, int height, const AVOutputFormat *oformat, VideoCodecInterface *http_encoder, VideoCodecInterface *disk_encoder, DiskSpaceEstimator *disk_space_estimator);
         ~QuickSyncEncoder();
 
        void set_stream_mux(Mux *mux);  // Does not take ownership. Must be called unless x264 is used for the stream.