]> git.sesse.net Git - nageru/blob - video_encoder.h
Fix an issue with streaming the NUT mux to HTTP.
[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 <stdbool.h>
10 #include <stdint.h>
11 #include <atomic>
12 #include <memory>
13 #include <mutex>
14 #include <string>
15 #include <vector>
16
17 extern "C" {
18 #include <libavformat/avformat.h>
19 #include <libavformat/avio.h>
20 }
21
22 #include "ref_counted_gl_sync.h"
23
24 class AudioEncoder;
25 class DiskSpaceEstimator;
26 class HTTPD;
27 class Mux;
28 class QSurface;
29 class QuickSyncEncoder;
30 class RefCountedFrame;
31 class X264Encoder;
32
33 namespace movit {
34 class ResourcePool;
35 }  // namespace movit
36
37 class VideoEncoder {
38 public:
39         VideoEncoder(movit::ResourcePool *resource_pool, QSurface *surface, const std::string &va_display, int width, int height, HTTPD *httpd, DiskSpaceEstimator *disk_space_estimator);
40         ~VideoEncoder();
41
42         void add_audio(int64_t pts, std::vector<float> audio);
43         bool begin_frame(GLuint *y_tex, GLuint *cbcr_tex);
44         RefCountedGLsync end_frame(int64_t pts, int64_t duration, const std::vector<RefCountedFrame> &input_frames);
45
46         // Does a cut of the disk stream immediately ("frame" is used for the filename only).
47         void do_cut(int frame);
48
49         void change_x264_bitrate(unsigned rate_kbit);
50
51 private:
52         void open_output_stream();
53         static int write_packet2_thunk(void *opaque, uint8_t *buf, int buf_size, AVIODataMarkerType type, int64_t time);
54         int write_packet2(uint8_t *buf, int buf_size, AVIODataMarkerType type, int64_t time);
55
56         AVOutputFormat *oformat;
57         std::mutex qs_mu;
58         std::unique_ptr<QuickSyncEncoder> quicksync_encoder;  // Under <qs_mu>.
59         movit::ResourcePool *resource_pool;
60         QSurface *surface;
61         std::string va_display;
62         int width, height;
63         HTTPD *httpd;
64         DiskSpaceEstimator *disk_space_estimator;
65
66         bool seen_sync_markers = false;
67
68         std::unique_ptr<Mux> stream_mux;  // To HTTP.
69         std::unique_ptr<AudioEncoder> stream_audio_encoder;
70         std::unique_ptr<X264Encoder> x264_encoder;  // nullptr if not using x264.
71
72         std::string stream_mux_header;
73
74         std::atomic<int> quicksync_encoders_in_shutdown{0};
75
76         // Encoders that are shutdown, but need to call release_gl_resources()
77         // (or be deleted) from some thread with an OpenGL context.
78         std::vector<std::unique_ptr<QuickSyncEncoder>> qs_needing_cleanup;  // Under <qs_mu>.
79 };
80
81 #endif