]> git.sesse.net Git - nageru/blob - video_encoder.cpp
Fix a circular initialization issue with AudioEncoder.
[nageru] / video_encoder.cpp
1 #include "video_encoder.h"
2
3 #include <assert.h>
4
5 #include <string>
6
7 #include "defs.h"
8 #include "flags.h"
9 #include "httpd.h"
10 #include "timebase.h"
11 #include "quicksync_encoder.h"
12
13 using namespace std;
14
15 namespace {
16
17 string generate_local_dump_filename(int frame)
18 {
19         time_t now = time(NULL);
20         tm now_tm;
21         localtime_r(&now, &now_tm);
22
23         char timestamp[256];
24         strftime(timestamp, sizeof(timestamp), "%F-%T%z", &now_tm);
25
26         // Use the frame number to disambiguate between two cuts starting
27         // on the same second.
28         char filename[256];
29         snprintf(filename, sizeof(filename), "%s%s-f%02d%s",
30                 LOCAL_DUMP_PREFIX, timestamp, frame % 100, LOCAL_DUMP_SUFFIX);
31         return filename;
32 }
33
34 }  // namespace
35
36 VideoEncoder::VideoEncoder(QSurface *surface, const std::string &va_display, int width, int height, HTTPD *httpd)
37         : surface(surface), va_display(va_display), width(width), height(height), httpd(httpd)
38 {
39         open_output_stream();
40
41         string filename = generate_local_dump_filename(/*frame=*/0);
42         quicksync_encoder.reset(new QuickSyncEncoder(filename, surface, va_display, width, height, stream_mux.get()));
43 }
44
45 VideoEncoder::~VideoEncoder()
46 {
47         quicksync_encoder.reset(nullptr);
48         close_output_stream();
49 }
50
51 void VideoEncoder::do_cut(int frame)
52 {
53         string filename = generate_local_dump_filename(frame);
54         printf("Starting new recording: %s\n", filename.c_str());
55         quicksync_encoder->shutdown();
56         quicksync_encoder.reset(new QuickSyncEncoder(filename, surface, va_display, width, height, stream_mux.get()));
57 }
58
59 void VideoEncoder::add_audio(int64_t pts, std::vector<float> audio)
60 {
61         quicksync_encoder->add_audio(pts, audio);
62 }
63
64 bool VideoEncoder::begin_frame(GLuint *y_tex, GLuint *cbcr_tex)
65 {
66         return quicksync_encoder->begin_frame(y_tex, cbcr_tex);
67 }
68
69 RefCountedGLsync VideoEncoder::end_frame(int64_t pts, int64_t duration, const std::vector<RefCountedFrame> &input_frames)
70 {
71         return quicksync_encoder->end_frame(pts, duration, input_frames);
72 }
73
74 void VideoEncoder::open_output_stream()
75 {
76         AVFormatContext *avctx = avformat_alloc_context();
77         AVOutputFormat *oformat = av_guess_format(global_flags.stream_mux_name.c_str(), nullptr, nullptr);
78         assert(oformat != nullptr);
79         avctx->oformat = oformat;
80
81         string codec_name;
82         int bit_rate;
83
84         if (global_flags.stream_audio_codec_name.empty()) {
85                 codec_name = AUDIO_OUTPUT_CODEC_NAME;
86                 bit_rate = DEFAULT_AUDIO_OUTPUT_BIT_RATE;
87         } else {
88                 codec_name = global_flags.stream_audio_codec_name;
89                 bit_rate = global_flags.stream_audio_codec_bitrate;
90         }
91
92         uint8_t *buf = (uint8_t *)av_malloc(MUX_BUFFER_SIZE);
93         avctx->pb = avio_alloc_context(buf, MUX_BUFFER_SIZE, 1, this, nullptr, &VideoEncoder::write_packet_thunk, nullptr);
94
95         Mux::Codec video_codec;
96         if (global_flags.uncompressed_video_to_http) {
97                 video_codec = Mux::CODEC_NV12;
98         } else {
99                 video_codec = Mux::CODEC_H264;
100         }
101
102         avctx->flags = AVFMT_FLAG_CUSTOM_IO;
103         AVCodec *codec_audio = avcodec_find_encoder_by_name(codec_name.c_str());
104         if (codec_audio == nullptr) {
105                 fprintf(stderr, "ERROR: Could not find codec '%s'\n", codec_name.c_str());
106                 exit(1);
107         }
108
109         int time_base = global_flags.stream_coarse_timebase ? COARSE_TIMEBASE : TIMEBASE;
110         stream_mux_writing_header = true;
111         stream_mux.reset(new Mux(avctx, width, height, video_codec, codec_audio, time_base, bit_rate, this));
112         stream_mux_writing_header = false;
113         httpd->set_header(stream_mux_header);
114         stream_mux_header.clear();
115 }
116
117 void VideoEncoder::close_output_stream()
118 {
119         stream_mux.reset();
120 }
121
122 int VideoEncoder::write_packet_thunk(void *opaque, uint8_t *buf, int buf_size)
123 {
124         VideoEncoder *video_encoder = (VideoEncoder *)opaque;
125         return video_encoder->write_packet(buf, buf_size);
126 }
127
128 int VideoEncoder::write_packet(uint8_t *buf, int buf_size)
129 {
130         if (stream_mux_writing_header) {
131                 stream_mux_header.append((char *)buf, buf_size);
132         } else {
133                 httpd->add_data((char *)buf, buf_size, stream_mux_writing_keyframes);
134                 stream_mux_writing_keyframes = false;
135         }
136         return buf_size;
137 }
138