]> git.sesse.net Git - nageru/blobdiff - x264_encoder.h
Support loading 10-bit x264 dynamically.
[nageru] / x264_encoder.h
index 34cf70242b75dbb60cf806386bfcca74700c0e06..455bb1e96e822282c3dfd41162f6fe0304b7ceda 100644 (file)
@@ -33,6 +33,7 @@ extern "C" {
 #include <movit/image_format.h>
 
 #include "print_latency.h"
+#include "x264_dynamic.h"
 
 class Mux;
 class X264SpeedControl;
@@ -88,6 +89,7 @@ private:
        std::thread encoder_thread;
        std::atomic<bool> x264_init_done{false};
        std::atomic<bool> should_quit{false};
+       X264Dynamic dyn;
        x264_t *x264;
        std::unique_ptr<X264SpeedControl> speed_control;