X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=quicksync_encoder.h;h=16fd3d179cd048a2d6b29e447d3209a673ecebca;hb=d87cd97d2353be6cfacf738447bfe6faf048e6f3;hp=52aaf77dd48d4ac4007c121189ce3d295dd14640;hpb=3be00c8dd8b841cecc44f57234b9fc2d3a94cb45;p=nageru diff --git a/quicksync_encoder.h b/quicksync_encoder.h index 52aaf77..16fd3d1 100644 --- a/quicksync_encoder.h +++ b/quicksync_encoder.h @@ -27,8 +27,10 @@ #define _H264ENCODE_H #include +#include #include #include +#include #include #include #include @@ -41,9 +43,11 @@ extern "C" { #include "ref_counted_gl_sync.h" class AudioEncoder; +class DiskSpaceEstimator; class Mux; -class QuickSyncEncoderImpl; class QSurface; +class QuickSyncEncoderImpl; +class RefCountedFrame; class X264Encoder; namespace movit { @@ -55,14 +59,16 @@ class ResourcePool; // .cpp file. 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, AudioEncoder *stream_audio_encoder, X264Encoder *x264_encoder); + 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(); void set_stream_mux(Mux *mux); // Does not take ownership. Must be called unless x264 is used for the stream. void add_audio(int64_t pts, std::vector audio); bool begin_frame(GLuint *y_tex, GLuint *cbcr_tex); RefCountedGLsync end_frame(int64_t pts, int64_t duration, const std::vector &input_frames); - void shutdown(); // Blocking. + void shutdown(); // Blocking. Does not require an OpenGL context. + void release_gl_resources(); // Requires an OpenGL context. Must be run after shutdown. + int64_t global_delay() const; // So we never get negative dts. private: std::unique_ptr impl;