1 #include "x264_encoder.h"
19 #include "print_latency.h"
21 #include "x264_dynamic.h"
22 #include "x264_speed_control.h"
25 #include <libavcodec/avcodec.h>
26 #include <libavformat/avformat.h>
29 using namespace movit;
31 using namespace std::chrono;
32 using namespace std::placeholders;
36 // X264Encoder can be restarted if --record-x264-video is set, so make these
38 atomic<int64_t> metric_x264_queued_frames{0};
39 atomic<int64_t> metric_x264_max_queued_frames{X264_QUEUE_LENGTH};
40 atomic<int64_t> metric_x264_dropped_frames{0};
41 atomic<int64_t> metric_x264_output_frames_i{0};
42 atomic<int64_t> metric_x264_output_frames_p{0};
43 atomic<int64_t> metric_x264_output_frames_b{0};
44 Histogram metric_x264_crf;
45 LatencyHistogram x264_latency_histogram;
46 once_flag x264_metrics_inited;
48 void update_vbv_settings(x264_param_t *param)
50 if (global_flags.x264_bitrate == -1) {
53 if (global_flags.x264_vbv_buffer_size < 0) {
54 param->rc.i_vbv_buffer_size = param->rc.i_bitrate; // One-second VBV.
56 param->rc.i_vbv_buffer_size = global_flags.x264_vbv_buffer_size;
58 if (global_flags.x264_vbv_max_bitrate < 0) {
59 param->rc.i_vbv_max_bitrate = param->rc.i_bitrate; // CBR.
61 param->rc.i_vbv_max_bitrate = global_flags.x264_vbv_max_bitrate;
67 X264Encoder::X264Encoder(AVOutputFormat *oformat)
68 : wants_global_headers(oformat->flags & AVFMT_GLOBALHEADER),
69 dyn(load_x264_for_bit_depth(global_flags.x264_bit_depth))
71 call_once(x264_metrics_inited, [](){
72 global_metrics.add("x264_queued_frames", &metric_x264_queued_frames, Metrics::TYPE_GAUGE);
73 global_metrics.add("x264_max_queued_frames", &metric_x264_max_queued_frames, Metrics::TYPE_GAUGE);
74 global_metrics.add("x264_dropped_frames", &metric_x264_dropped_frames);
75 global_metrics.add("x264_output_frames", {{ "type", "i" }}, &metric_x264_output_frames_i);
76 global_metrics.add("x264_output_frames", {{ "type", "p" }}, &metric_x264_output_frames_p);
77 global_metrics.add("x264_output_frames", {{ "type", "b" }}, &metric_x264_output_frames_b);
79 metric_x264_crf.init_uniform(50);
80 global_metrics.add("x264_crf", &metric_x264_crf);
81 x264_latency_histogram.init("x264");
84 size_t bytes_per_pixel = global_flags.x264_bit_depth > 8 ? 2 : 1;
85 frame_pool.reset(new uint8_t[global_flags.width * global_flags.height * 2 * bytes_per_pixel * X264_QUEUE_LENGTH]);
86 for (unsigned i = 0; i < X264_QUEUE_LENGTH; ++i) {
87 free_frames.push(frame_pool.get() + i * (global_flags.width * global_flags.height * 2 * bytes_per_pixel));
89 encoder_thread = thread(&X264Encoder::encoder_thread_func, this);
92 X264Encoder::~X264Encoder()
95 queued_frames_nonempty.notify_all();
96 encoder_thread.join();
102 void X264Encoder::add_frame(int64_t pts, int64_t duration, YCbCrLumaCoefficients ycbcr_coefficients, const uint8_t *data, const ReceivedTimestamps &received_ts)
104 assert(!should_quit);
108 qf.duration = duration;
109 qf.ycbcr_coefficients = ycbcr_coefficients;
110 qf.received_ts = received_ts;
113 lock_guard<mutex> lock(mu);
114 if (free_frames.empty()) {
115 fprintf(stderr, "WARNING: x264 queue full, dropping frame with pts %ld\n", pts);
116 ++metric_x264_dropped_frames;
120 qf.data = free_frames.front();
124 size_t bytes_per_pixel = global_flags.x264_bit_depth > 8 ? 2 : 1;
125 memcpy(qf.data, data, global_flags.width * global_flags.height * 2 * bytes_per_pixel);
128 lock_guard<mutex> lock(mu);
129 queued_frames.push(qf);
130 queued_frames_nonempty.notify_all();
131 metric_x264_queued_frames = queued_frames.size();
135 void X264Encoder::init_x264()
138 dyn.x264_param_default_preset(¶m, global_flags.x264_preset.c_str(), global_flags.x264_tune.c_str());
140 param.i_width = global_flags.width;
141 param.i_height = global_flags.height;
142 param.i_csp = X264_CSP_NV12;
143 if (global_flags.x264_bit_depth > 8) {
144 param.i_csp |= X264_CSP_HIGH_DEPTH;
146 param.b_vfr_input = 1;
147 param.i_timebase_num = 1;
148 param.i_timebase_den = TIMEBASE;
149 param.i_keyint_max = 50; // About one second.
150 if (global_flags.x264_speedcontrol) {
151 param.i_frame_reference = 16; // Because speedcontrol is never allowed to change this above what we set at start.
154 // NOTE: These should be in sync with the ones in quicksync_encoder.cpp (sps_rbsp()).
155 param.vui.i_vidformat = 5; // Unspecified.
156 param.vui.b_fullrange = 0;
157 param.vui.i_colorprim = 1; // BT.709.
158 param.vui.i_transfer = 13; // sRGB.
159 if (global_flags.ycbcr_rec709_coefficients) {
160 param.vui.i_colmatrix = 1; // BT.709.
162 param.vui.i_colmatrix = 6; // BT.601/SMPTE 170M.
165 if (!isinf(global_flags.x264_crf)) {
166 param.rc.i_rc_method = X264_RC_CRF;
167 param.rc.f_rf_constant = global_flags.x264_crf;
169 param.rc.i_rc_method = X264_RC_ABR;
170 param.rc.i_bitrate = global_flags.x264_bitrate;
172 update_vbv_settings(¶m);
173 if (param.rc.i_vbv_max_bitrate > 0) {
174 // If the user wants VBV control to cap the max rate, it is
175 // also reasonable to assume that they are fine with the stream
176 // constantly being around that rate even for very low-complexity
177 // content; the obvious and extreme example being a static
180 // One would think it's fine to have low-complexity content use
181 // less bitrate, but it seems to cause problems in practice;
182 // e.g. VLC seems to often drop the stream (similar to a buffer
183 // underrun) in such cases, but only when streaming from Nageru,
184 // not when reading a dump of the same stream from disk.
185 // I'm not 100% sure whether it's in VLC (possibly some buffering
186 // in the HTTP layer), in microhttpd or somewhere in Nageru itself,
187 // but it's a typical case of problems that can arise. Similarly,
188 // TCP's congestion control is not always fond of the rate staying
189 // low for a while and then rising quickly -- a variation on the same
192 // We solve this by simply asking x264 to fill in dummy bits
193 // in these cases, so that the bitrate stays reasonable constant.
194 // It's a waste of bandwidth, but it makes things go much more
195 // smoothly in these cases. (We don't do it if VBV control is off
196 // in general, not the least because it makes no sense and x264
197 // thus ignores the parameter.)
198 param.rc.b_filler = 1;
201 // Occasionally players have problem with extremely low quantizers;
202 // be on the safe side. Shouldn't affect quality in any meaningful way.
203 param.rc.i_qp_min = 5;
205 for (const string &str : global_flags.x264_extra_param) {
206 const size_t pos = str.find(',');
207 if (pos == string::npos) {
208 if (dyn.x264_param_parse(¶m, str.c_str(), nullptr) != 0) {
209 fprintf(stderr, "ERROR: x264 rejected parameter '%s'\n", str.c_str());
212 const string key = str.substr(0, pos);
213 const string value = str.substr(pos + 1);
214 if (dyn.x264_param_parse(¶m, key.c_str(), value.c_str()) != 0) {
215 fprintf(stderr, "ERROR: x264 rejected parameter '%s' set to '%s'\n",
216 key.c_str(), value.c_str());
221 if (global_flags.x264_bit_depth > 8) {
222 dyn.x264_param_apply_profile(¶m, "high10");
224 dyn.x264_param_apply_profile(¶m, "high");
227 param.b_repeat_headers = !wants_global_headers;
229 x264 = dyn.x264_encoder_open(¶m);
230 if (x264 == nullptr) {
231 fprintf(stderr, "ERROR: x264 initialization failed.\n");
235 if (global_flags.x264_speedcontrol) {
236 speed_control.reset(new X264SpeedControl(x264, /*f_speed=*/1.0f, X264_QUEUE_LENGTH, /*f_buffer_init=*/1.0f));
239 if (wants_global_headers) {
243 dyn.x264_encoder_headers(x264, &nal, &num_nal);
245 for (int i = 0; i < num_nal; ++i) {
246 if (nal[i].i_type == NAL_SEI) {
247 // Don't put the SEI in extradata; make it part of the first frame instead.
248 buffered_sei += string((const char *)nal[i].p_payload, nal[i].i_payload);
250 global_headers += string((const char *)nal[i].p_payload, nal[i].i_payload);
256 void X264Encoder::encoder_thread_func()
258 if (nice(5) == -1) { // Note that x264 further nices some of its threads.
260 // No exit; it's not fatal.
262 pthread_setname_np(pthread_self(), "x264_encode");
264 x264_init_done = true;
271 // Wait for a queued frame, then dequeue it.
273 unique_lock<mutex> lock(mu);
274 queued_frames_nonempty.wait(lock, [this]() { return !queued_frames.empty() || should_quit; });
275 if (!queued_frames.empty()) {
276 qf = queued_frames.front();
284 metric_x264_queued_frames = queued_frames.size();
285 frames_left = !queued_frames.empty();
291 lock_guard<mutex> lock(mu);
292 free_frames.push(qf.data);
295 // We should quit only if the should_quit flag is set _and_ we have nothing
297 } while (!should_quit || frames_left || dyn.x264_encoder_delayed_frames(x264) > 0);
299 dyn.x264_encoder_close(x264);
302 void X264Encoder::encode_frame(X264Encoder::QueuedFrame qf)
304 x264_nal_t *nal = nullptr;
307 x264_picture_t *input_pic = nullptr;
310 dyn.x264_picture_init(&pic);
313 if (global_flags.x264_bit_depth > 8) {
314 pic.img.i_csp = X264_CSP_NV12 | X264_CSP_HIGH_DEPTH;
316 pic.img.plane[0] = qf.data;
317 pic.img.i_stride[0] = global_flags.width * sizeof(uint16_t);
318 pic.img.plane[1] = qf.data + global_flags.width * global_flags.height * sizeof(uint16_t);
319 pic.img.i_stride[1] = global_flags.width / 2 * sizeof(uint32_t);
321 pic.img.i_csp = X264_CSP_NV12;
323 pic.img.plane[0] = qf.data;
324 pic.img.i_stride[0] = global_flags.width;
325 pic.img.plane[1] = qf.data + global_flags.width * global_flags.height;
326 pic.img.i_stride[1] = global_flags.width / 2 * sizeof(uint16_t);
328 pic.opaque = reinterpret_cast<void *>(intptr_t(qf.duration));
332 frames_being_encoded[qf.pts] = qf.received_ts;
335 unsigned new_rate = new_bitrate_kbit.load(); // Can be 0 for no change.
337 speed_control->set_config_override_function(bind(&speed_control_override_func, new_rate, qf.ycbcr_coefficients, _1));
340 dyn.x264_encoder_parameters(x264, ¶m);
341 speed_control_override_func(new_rate, qf.ycbcr_coefficients, ¶m);
342 dyn.x264_encoder_reconfig(x264, ¶m);
346 speed_control->before_frame(float(free_frames.size()) / X264_QUEUE_LENGTH, X264_QUEUE_LENGTH, 1e6 * qf.duration / TIMEBASE);
348 dyn.x264_encoder_encode(x264, &nal, &num_nal, input_pic, &pic);
350 speed_control->after_frame();
353 if (num_nal == 0) return;
355 if (IS_X264_TYPE_I(pic.i_type)) {
356 ++metric_x264_output_frames_i;
357 } else if (IS_X264_TYPE_B(pic.i_type)) {
358 ++metric_x264_output_frames_b;
360 ++metric_x264_output_frames_p;
363 metric_x264_crf.count_event(pic.prop.f_crf_avg);
365 if (frames_being_encoded.count(pic.i_pts)) {
366 ReceivedTimestamps received_ts = frames_being_encoded[pic.i_pts];
367 frames_being_encoded.erase(pic.i_pts);
369 static int frameno = 0;
370 print_latency("Current x264 latency (video inputs → network mux):",
371 received_ts, (pic.i_type == X264_TYPE_B || pic.i_type == X264_TYPE_BREF),
372 &frameno, &x264_latency_histogram);
377 // We really need one AVPacket for the entire frame, it seems,
378 // so combine it all.
379 size_t num_bytes = buffered_sei.size();
380 for (int i = 0; i < num_nal; ++i) {
381 num_bytes += nal[i].i_payload;
384 unique_ptr<uint8_t[]> data(new uint8_t[num_bytes]);
385 uint8_t *ptr = data.get();
387 if (!buffered_sei.empty()) {
388 memcpy(ptr, buffered_sei.data(), buffered_sei.size());
389 ptr += buffered_sei.size();
390 buffered_sei.clear();
392 for (int i = 0; i < num_nal; ++i) {
393 memcpy(ptr, nal[i].p_payload, nal[i].i_payload);
394 ptr += nal[i].i_payload;
398 memset(&pkt, 0, sizeof(pkt));
400 pkt.data = data.get();
401 pkt.size = num_bytes;
402 pkt.stream_index = 0;
403 if (pic.b_keyframe) {
404 pkt.flags = AV_PKT_FLAG_KEY;
408 pkt.duration = reinterpret_cast<intptr_t>(pic.opaque);
410 for (Mux *mux : muxes) {
411 mux->add_packet(pkt, pic.i_pts, pic.i_dts);
415 void X264Encoder::speed_control_override_func(unsigned bitrate_kbit, movit::YCbCrLumaCoefficients ycbcr_coefficients, x264_param_t *param)
417 if (bitrate_kbit != 0) {
418 param->rc.i_bitrate = bitrate_kbit;
419 update_vbv_settings(param);
422 if (ycbcr_coefficients == YCBCR_REC_709) {
423 param->vui.i_colmatrix = 1; // BT.709.
425 assert(ycbcr_coefficients == YCBCR_REC_601);
426 param->vui.i_colmatrix = 6; // BT.601/SMPTE 170M.