]> git.sesse.net Git - nageru/blob - x264_encoder.cpp
189da20ad7f0c64f0fff92b044b324a957cf44e5
[nageru] / x264_encoder.cpp
1 #include <string.h>
2 #include <unistd.h>
3
4 #include "defs.h"
5 #include "flags.h"
6 #include "mux.h"
7 #include "timebase.h"
8 #include "x264_encoder.h"
9
10 extern "C" {
11 #include <libavformat/avformat.h>
12 }
13
14 using namespace std;
15
16 X264Encoder::X264Encoder(Mux *mux)
17         : mux(mux)
18 {
19         frame_pool.reset(new uint8_t[WIDTH * HEIGHT * 2 * X264_QUEUE_LENGTH]);
20         for (unsigned i = 0; i < X264_QUEUE_LENGTH; ++i) {
21                 free_frames.push(frame_pool.get() + i * (WIDTH * HEIGHT * 2));
22         }
23         encoder_thread = thread(&X264Encoder::encoder_thread_func, this);
24 }
25
26 X264Encoder::~X264Encoder()
27 {
28         should_quit = true;
29         queued_frames_nonempty.notify_all();
30         encoder_thread.join();
31 }
32
33 void X264Encoder::add_frame(int64_t pts, int64_t duration, const uint8_t *data)
34 {
35         QueuedFrame qf;
36         qf.pts = pts;
37         qf.duration = duration;
38
39         {
40                 lock_guard<mutex> lock(mu);
41                 if (free_frames.empty()) {
42                         fprintf(stderr, "WARNING: x264 queue full, dropping frame with pts %ld\n", pts);
43                         return;
44                 }
45
46                 qf.data = free_frames.front();
47                 free_frames.pop();
48         }
49
50         memcpy(qf.data, data, WIDTH * HEIGHT * 2);
51
52         {
53                 lock_guard<mutex> lock(mu);
54                 queued_frames.push(qf);
55                 queued_frames_nonempty.notify_all();
56         }
57 }
58         
59 void X264Encoder::init_x264()
60 {
61         x264_param_t param;
62         x264_param_default_preset(&param, global_flags.x264_preset.c_str(), global_flags.x264_tune.c_str());
63
64         param.i_width = WIDTH;
65         param.i_height = HEIGHT;
66         param.i_csp = X264_CSP_NV12;
67         param.b_vfr_input = 1;
68         param.i_timebase_num = 1;
69         param.i_timebase_den = TIMEBASE;
70         param.i_keyint_max = 50; // About one second.
71
72         // NOTE: These should be in sync with the ones in h264encode.cpp (sbs_rbsp()).
73         param.vui.i_vidformat = 5;  // Unspecified.
74         param.vui.b_fullrange = 0;
75         param.vui.i_colorprim = 1;  // BT.709.
76         param.vui.i_transfer = 2;  // Unspecified (since we use sRGB).
77         param.vui.i_colmatrix = 6;  // BT.601/SMPTE 170M.
78
79         // 4.5 Mbit/sec, CBR.
80         param.rc.i_rc_method = X264_RC_ABR;
81         param.rc.i_bitrate = 4500;
82
83         // One-second VBV.
84         param.rc.i_vbv_max_bitrate = 4500;
85         param.rc.i_vbv_buffer_size = 4500;
86
87         // TODO: more flags here, via x264_param_parse().
88
89         x264_param_apply_profile(&param, "high");
90
91         x264 = x264_encoder_open(&param);
92         if (x264 == nullptr) {
93                 fprintf(stderr, "ERROR: x264 initialization failed.\n");
94                 exit(1);
95         }
96 }
97
98 void X264Encoder::encoder_thread_func()
99 {
100         nice(5);  // Note that x264 further nices some of its threads.
101         init_x264();
102
103         bool frames_left;
104
105         do {
106                 QueuedFrame qf;
107
108                 // Wait for a queued frame, then dequeue it.
109                 {
110                         unique_lock<mutex> lock(mu);
111                         queued_frames_nonempty.wait(lock, [this]() { return !queued_frames.empty() || should_quit; });
112                         if (!queued_frames.empty()) {
113                                 qf = queued_frames.front();
114                                 queued_frames.pop();
115                         } else {
116                                 qf.pts = -1;
117                                 qf.duration = -1;
118                                 qf.data = nullptr;
119                         }
120
121                         frames_left = !queued_frames.empty();
122                 }
123
124                 encode_frame(qf);
125                 
126                 {
127                         lock_guard<mutex> lock(mu);
128                         free_frames.push(qf.data);
129                 }
130
131                 // We should quit only if the should_quit flag is set _and_ we have nothing
132                 // in either queue.
133         } while (!should_quit || frames_left || x264_encoder_delayed_frames(x264) > 0);
134
135         x264_encoder_close(x264);
136 }
137
138 void X264Encoder::encode_frame(X264Encoder::QueuedFrame qf)
139 {
140         x264_nal_t *nal = nullptr;
141         int num_nal = 0;
142         x264_picture_t pic;
143
144         if (qf.data) {
145                 x264_picture_init(&pic);
146
147                 pic.i_pts = qf.pts;
148                 pic.img.i_csp = X264_CSP_NV12;
149                 pic.img.i_plane = 2;
150                 pic.img.plane[0] = qf.data;
151                 pic.img.i_stride[0] = WIDTH;
152                 pic.img.plane[1] = qf.data + WIDTH * HEIGHT;
153                 pic.img.i_stride[1] = WIDTH / 2 * sizeof(uint16_t);
154                 pic.opaque = reinterpret_cast<void *>(intptr_t(qf.duration));
155
156                 x264_encoder_encode(x264, &nal, &num_nal, &pic, &pic);
157         } else {
158                 x264_encoder_encode(x264, &nal, &num_nal, nullptr, &pic);
159         }
160
161         // We really need one AVPacket for the entire frame, it seems,
162         // so combine it all.
163         size_t num_bytes = 0;
164         for (int i = 0; i < num_nal; ++i) {
165                 num_bytes += nal[i].i_payload;
166         }
167
168         unique_ptr<uint8_t[]> data(new uint8_t[num_bytes]);
169         uint8_t *ptr = data.get();
170
171         for (int i = 0; i < num_nal; ++i) {
172                 memcpy(ptr, nal[i].p_payload, nal[i].i_payload);
173                 ptr += nal[i].i_payload;
174         }
175
176         AVPacket pkt;
177         memset(&pkt, 0, sizeof(pkt));
178         pkt.buf = nullptr;
179         pkt.data = data.get();
180         pkt.size = num_bytes;
181         pkt.stream_index = 0;
182         if (pic.b_keyframe) {
183                 pkt.flags = AV_PKT_FLAG_KEY;
184         } else {
185                 pkt.flags = 0;
186         }
187         pkt.duration = reinterpret_cast<intptr_t>(pic.opaque);
188
189         mux->add_packet(pkt, pic.i_pts, pic.i_dts);
190 }