]> git.sesse.net Git - nageru/blob - nageru/video_encoder.h
Support AV1 streaming over HTTP, via SVT-AV1.
[nageru] / nageru / video_encoder.h
1 // A class to orchestrate the concept of video encoding. Will keep track of
2 // the muxes to stream and disk, the QuickSyncEncoder, and also the X264Encoder
3 // (for the stream) if there is one.
4
5 #ifndef _VIDEO_ENCODER_H
6 #define _VIDEO_ENCODER_H
7
8 #include <epoxy/gl.h>
9 #include <movit/image_format.h>
10 #include <stdbool.h>
11 #include <stdint.h>
12 #include <atomic>
13 #include <memory>
14 #include <mutex>
15 #include <string>
16 #include <vector>
17
18 extern "C" {
19 #include <libavformat/avformat.h>
20 #include <libavformat/avio.h>
21 }
22
23 #include "shared/mux.h"
24 #include "shared/ref_counted_gl_sync.h"
25
26 class AudioEncoder;
27 class AV1Encoder;
28 class DiskSpaceEstimator;
29 class HTTPD;
30 class Mux;
31 class QSurface;
32 class QuickSyncEncoder;
33 class RefCountedFrame;
34 class X264Encoder;
35
36 namespace movit {
37 class ResourcePool;
38 }  // namespace movit
39
40 class VideoEncoder {
41 public:
42         VideoEncoder(movit::ResourcePool *resource_pool, QSurface *surface, const std::string &va_display, int width, int height, HTTPD *httpd, DiskSpaceEstimator *disk_space_estimator);
43         ~VideoEncoder();
44
45         void add_audio(int64_t pts, std::vector<float> audio);
46
47         bool is_zerocopy() const;
48
49         // Allocate a frame to render into. The returned two textures
50         // are yours to render into (build them into an FBO).
51         // Call end_frame() when you're done.
52         //
53         // The semantics of y_tex and cbcr_tex depend on is_zerocopy():
54         //
55         //   - If false, they are input parameters, ie., the caller
56         //     allocates textures. (The contents are not read before
57         //     end_frame() is called.)
58         //   - If true, they are output parameters, ie., VideoEncoder
59         //     allocates textures and borrow them to you for rendering.
60         //     In this case, after end_frame(), you are no longer allowed
61         //     to use the textures; they are torn down and given to the
62         //     H.264 encoder.
63         bool begin_frame(int64_t pts, int64_t duration, movit::YCbCrLumaCoefficients ycbcr_coefficients, const std::vector<RefCountedFrame> &input_frames, GLuint *y_tex, GLuint *cbcr_tex);
64
65         // Call after you are done rendering into the frame; at this point,
66         // y_tex and cbcr_tex will be assumed done, and handed over to the
67         // encoder. The returned fence is purely a convenience; you do not
68         // need to use it for anything, but it's useful if you wanted to set
69         // one anyway.
70         RefCountedGLsync end_frame();
71
72         // Does a cut of the disk stream immediately ("frame" is used for the filename only).
73         void do_cut(int frame);
74
75         void change_x264_bitrate(unsigned rate_kbit);
76
77 private:
78         void open_output_stream();
79         static int write_packet2_thunk(void *opaque, uint8_t *buf, int buf_size, AVIODataMarkerType type, int64_t time);
80         int write_packet2(uint8_t *buf, int buf_size, AVIODataMarkerType type, int64_t time);
81
82         const AVOutputFormat *oformat;
83         mutable std::mutex qs_mu, qs_audio_mu;
84         std::unique_ptr<QuickSyncEncoder> quicksync_encoder;  // Under <qs_mu> _and_ <qs_audio_mu>.
85         movit::ResourcePool *resource_pool;
86         QSurface *surface;
87         std::string va_display;
88         int width, height;
89         HTTPD *httpd;
90         DiskSpaceEstimator *disk_space_estimator;
91
92         bool seen_sync_markers = false;
93
94         std::unique_ptr<Mux> stream_mux;  // To HTTP.
95         std::unique_ptr<AudioEncoder> stream_audio_encoder;
96         std::unique_ptr<X264Encoder> x264_encoder;  // nullptr if not using x264.
97         std::unique_ptr<X264Encoder> x264_disk_encoder;  // nullptr if not using x264, or if not having separate disk encodes.
98 #ifdef HAVE_AV1
99         std::unique_ptr<AV1Encoder> av1_encoder;  // nullptr if not using SVT-AV1.
100 #endif
101
102         std::string stream_mux_header;
103         MuxMetrics stream_mux_metrics;
104
105         std::atomic<int> quicksync_encoders_in_shutdown{0};
106         std::atomic<int> overriding_bitrate{0};
107
108         // Encoders that are shutdown, but need to call release_gl_resources()
109         // (or be deleted) from some thread with an OpenGL context.
110         std::vector<std::unique_ptr<QuickSyncEncoder>> qs_needing_cleanup;  // Under <qs_mu>.
111 };
112
113 #endif