]> git.sesse.net Git - nageru/blob - video_stream.cpp
Support changing the interpolation quality.
[nageru] / video_stream.cpp
1 #include "video_stream.h"
2
3 extern "C" {
4 #include <libavformat/avformat.h>
5 #include <libavformat/avio.h>
6 }
7
8 #include "chroma_subsampler.h"
9 #include "context.h"
10 #include "flags.h"
11 #include "flow.h"
12 #include "httpd.h"
13 #include "jpeg_frame_view.h"
14 #include "movit/util.h"
15 #include "mux.h"
16 #include "player.h"
17 #include "util.h"
18 #include "ycbcr_converter.h"
19
20 #include <epoxy/glx.h>
21 #include <jpeglib.h>
22 #include <unistd.h>
23
24 using namespace std;
25
26 extern HTTPD *global_httpd;
27
28 namespace {
29
30 string read_file(const string &filename)
31 {
32         FILE *fp = fopen(filename.c_str(), "rb");
33         if (fp == nullptr) {
34                 perror(filename.c_str());
35                 return "";
36         }
37
38         fseek(fp, 0, SEEK_END);
39         long len = ftell(fp);
40         rewind(fp);
41
42         string ret;
43         ret.resize(len);
44         fread(&ret[0], len, 1, fp);
45         fclose(fp);
46         return ret;
47 }
48
49 }  // namespace
50
51 struct VectorDestinationManager {
52         jpeg_destination_mgr pub;
53         std::vector<uint8_t> dest;
54
55         VectorDestinationManager()
56         {
57                 pub.init_destination = init_destination_thunk;
58                 pub.empty_output_buffer = empty_output_buffer_thunk;
59                 pub.term_destination = term_destination_thunk;
60         }
61
62         static void init_destination_thunk(j_compress_ptr ptr)
63         {
64                 ((VectorDestinationManager *)(ptr->dest))->init_destination();
65         }
66
67         inline void init_destination()
68         {
69                 make_room(0);
70         }
71
72         static boolean empty_output_buffer_thunk(j_compress_ptr ptr)
73         {
74                 return ((VectorDestinationManager *)(ptr->dest))->empty_output_buffer();
75         }
76
77         inline bool empty_output_buffer()
78         {
79                 make_room(dest.size());  // Should ignore pub.free_in_buffer!
80                 return true;
81         }
82
83         inline void make_room(size_t bytes_used)
84         {
85                 dest.resize(bytes_used + 4096);
86                 dest.resize(dest.capacity());
87                 pub.next_output_byte = dest.data() + bytes_used;
88                 pub.free_in_buffer = dest.size() - bytes_used;
89         }
90
91         static void term_destination_thunk(j_compress_ptr ptr)
92         {
93                 ((VectorDestinationManager *)(ptr->dest))->term_destination();
94         }
95
96         inline void term_destination()
97         {
98                 dest.resize(dest.size() - pub.free_in_buffer);
99         }
100 };
101 static_assert(std::is_standard_layout<VectorDestinationManager>::value, "");
102
103 vector<uint8_t> encode_jpeg(const uint8_t *y_data, const uint8_t *cb_data, const uint8_t *cr_data, unsigned width, unsigned height)
104 {
105         VectorDestinationManager dest;
106
107         jpeg_compress_struct cinfo;
108         jpeg_error_mgr jerr;
109         cinfo.err = jpeg_std_error(&jerr);
110         jpeg_create_compress(&cinfo);
111
112         cinfo.dest = (jpeg_destination_mgr *)&dest;
113         cinfo.input_components = 3;
114         cinfo.in_color_space = JCS_RGB;
115         jpeg_set_defaults(&cinfo);
116         constexpr int quality = 90;
117         jpeg_set_quality(&cinfo, quality, /*force_baseline=*/false);
118
119         cinfo.image_width = width;
120         cinfo.image_height = height;
121         cinfo.raw_data_in = true;
122         jpeg_set_colorspace(&cinfo, JCS_YCbCr);
123         cinfo.comp_info[0].h_samp_factor = 2;
124         cinfo.comp_info[0].v_samp_factor = 1;
125         cinfo.comp_info[1].h_samp_factor = 1;
126         cinfo.comp_info[1].v_samp_factor = 1;
127         cinfo.comp_info[2].h_samp_factor = 1;
128         cinfo.comp_info[2].v_samp_factor = 1;
129         cinfo.CCIR601_sampling = true;  // Seems to be mostly ignored by libjpeg, though.
130         jpeg_start_compress(&cinfo, true);
131
132         JSAMPROW yptr[8], cbptr[8], crptr[8];
133         JSAMPARRAY data[3] = { yptr, cbptr, crptr };
134         for (unsigned y = 0; y < height; y += 8) {
135                 for (unsigned yy = 0; yy < 8; ++yy) {
136                         yptr[yy] = const_cast<JSAMPROW>(&y_data[(y + yy) * width]);
137                         cbptr[yy] = const_cast<JSAMPROW>(&cb_data[(y + yy) * width / 2]);
138                         crptr[yy] = const_cast<JSAMPROW>(&cr_data[(y + yy) * width / 2]);
139                 }
140
141                 jpeg_write_raw_data(&cinfo, data, /*num_lines=*/8);
142         }
143
144         jpeg_finish_compress(&cinfo);
145         jpeg_destroy_compress(&cinfo);
146
147         return move(dest.dest);
148 }
149
150 VideoStream::VideoStream()
151 {
152         ycbcr_converter.reset(new YCbCrConverter(YCbCrConverter::OUTPUT_TO_DUAL_YCBCR, /*resource_pool=*/nullptr));
153         ycbcr_semiplanar_converter.reset(new YCbCrConverter(YCbCrConverter::OUTPUT_TO_SEMIPLANAR, /*resource_pool=*/nullptr));
154
155         GLuint input_tex[num_interpolate_slots], gray_tex[num_interpolate_slots];
156         GLuint fade_y_output_tex[num_interpolate_slots], fade_cbcr_output_tex[num_interpolate_slots];
157         GLuint cb_tex[num_interpolate_slots], cr_tex[num_interpolate_slots];
158
159         glCreateTextures(GL_TEXTURE_2D_ARRAY, 10, input_tex);
160         glCreateTextures(GL_TEXTURE_2D_ARRAY, 10, gray_tex);
161         glCreateTextures(GL_TEXTURE_2D, 10, fade_y_output_tex);
162         glCreateTextures(GL_TEXTURE_2D, 10, fade_cbcr_output_tex);
163         glCreateTextures(GL_TEXTURE_2D, 10, cb_tex);
164         glCreateTextures(GL_TEXTURE_2D, 10, cr_tex);
165         check_error();
166
167         constexpr size_t width = 1280, height = 720;  // FIXME: adjustable width, height
168         int levels = find_num_levels(width, height);
169         for (size_t i = 0; i < num_interpolate_slots; ++i) {
170                 glTextureStorage3D(input_tex[i], levels, GL_RGBA8, width, height, 2);
171                 check_error();
172                 glTextureStorage3D(gray_tex[i], levels, GL_R8, width, height, 2);
173                 check_error();
174                 glTextureStorage2D(fade_y_output_tex[i], 1, GL_R8, width, height);
175                 check_error();
176                 glTextureStorage2D(fade_cbcr_output_tex[i], 1, GL_RG8, width, height);
177                 check_error();
178                 glTextureStorage2D(cb_tex[i], 1, GL_R8, width / 2, height);
179                 check_error();
180                 glTextureStorage2D(cr_tex[i], 1, GL_R8, width / 2, height);
181                 check_error();
182
183                 InterpolatedFrameResources resource;
184                 resource.input_tex = input_tex[i];
185                 resource.gray_tex = gray_tex[i];
186                 resource.fade_y_output_tex = fade_y_output_tex[i];
187                 resource.fade_cbcr_output_tex = fade_cbcr_output_tex[i];
188                 resource.cb_tex = cb_tex[i];
189                 resource.cr_tex = cr_tex[i];
190                 glCreateFramebuffers(2, resource.input_fbos);
191                 check_error();
192                 glCreateFramebuffers(1, &resource.fade_fbo);
193                 check_error();
194
195                 glNamedFramebufferTextureLayer(resource.input_fbos[0], GL_COLOR_ATTACHMENT0, input_tex[i], 0, 0);
196                 check_error();
197                 glNamedFramebufferTextureLayer(resource.input_fbos[0], GL_COLOR_ATTACHMENT1, gray_tex[i], 0, 0);
198                 check_error();
199                 glNamedFramebufferTextureLayer(resource.input_fbos[1], GL_COLOR_ATTACHMENT0, input_tex[i], 0, 1);
200                 check_error();
201                 glNamedFramebufferTextureLayer(resource.input_fbos[1], GL_COLOR_ATTACHMENT1, gray_tex[i], 0, 1);
202                 check_error();
203                 glNamedFramebufferTexture(resource.fade_fbo, GL_COLOR_ATTACHMENT0, fade_y_output_tex[i], 0);
204                 check_error();
205                 glNamedFramebufferTexture(resource.fade_fbo, GL_COLOR_ATTACHMENT1, fade_cbcr_output_tex[i], 0);
206                 check_error();
207
208                 GLuint bufs[] = { GL_COLOR_ATTACHMENT0, GL_COLOR_ATTACHMENT1 };
209                 glNamedFramebufferDrawBuffers(resource.input_fbos[0], 2, bufs);
210                 check_error();
211                 glNamedFramebufferDrawBuffers(resource.input_fbos[1], 2, bufs);
212                 check_error();
213                 glNamedFramebufferDrawBuffers(resource.fade_fbo, 2, bufs);
214                 check_error();
215
216                 glCreateBuffers(1, &resource.pbo);
217                 check_error();
218                 glNamedBufferStorage(resource.pbo, width * height * 4, nullptr, GL_MAP_READ_BIT | GL_MAP_PERSISTENT_BIT);
219                 check_error();
220                 resource.pbo_contents = glMapNamedBufferRange(resource.pbo, 0, width * height * 4, GL_MAP_READ_BIT | GL_MAP_PERSISTENT_BIT);
221                 interpolate_resources.push_back(resource);
222         }
223
224         check_error();
225
226         OperatingPoint op;
227         if (global_flags.interpolation_quality == 1) {
228                 op = operating_point1;
229         } else if (global_flags.interpolation_quality == 2) {
230                 op = operating_point2;
231         } else if (global_flags.interpolation_quality == 3) {
232                 op = operating_point3;
233         } else if (global_flags.interpolation_quality == 4) {
234                 op = operating_point4;
235         } else {
236                 assert(false);
237         }
238
239         compute_flow.reset(new DISComputeFlow(width, height, op));
240         interpolate.reset(new Interpolate(op, /*split_ycbcr_output=*/true));
241         interpolate_no_split.reset(new Interpolate(op, /*split_ycbcr_output=*/false));
242         chroma_subsampler.reset(new ChromaSubsampler);
243         check_error();
244
245         // The “last frame” is initially black.
246         unique_ptr<uint8_t[]> y(new uint8_t[1280 * 720]);
247         unique_ptr<uint8_t[]> cb_or_cr(new uint8_t[640 * 720]);
248         memset(y.get(), 16, 1280 * 720);
249         memset(cb_or_cr.get(), 128, 640 * 720);
250         last_frame = encode_jpeg(y.get(), cb_or_cr.get(), cb_or_cr.get(), 1280, 720);
251 }
252
253 VideoStream::~VideoStream() {}
254
255 void VideoStream::start()
256 {
257         AVFormatContext *avctx = avformat_alloc_context();
258         avctx->oformat = av_guess_format("nut", nullptr, nullptr);
259
260         uint8_t *buf = (uint8_t *)av_malloc(MUX_BUFFER_SIZE);
261         avctx->pb = avio_alloc_context(buf, MUX_BUFFER_SIZE, 1, this, nullptr, nullptr, nullptr);
262         avctx->pb->write_data_type = &VideoStream::write_packet2_thunk;
263         avctx->pb->ignore_boundary_point = 1;
264
265         Mux::Codec video_codec = Mux::CODEC_MJPEG;
266
267         avctx->flags = AVFMT_FLAG_CUSTOM_IO;
268
269         string video_extradata;
270
271         constexpr int width = 1280, height = 720;  // Doesn't matter for MJPEG.
272         stream_mux.reset(new Mux(avctx, width, height, video_codec, video_extradata, /*audio_codec_parameters=*/nullptr, COARSE_TIMEBASE,
273                 /*write_callback=*/nullptr, Mux::WRITE_FOREGROUND, {}));
274
275
276         encode_thread = thread(&VideoStream::encode_thread_func, this);
277 }
278
279 void VideoStream::stop()
280 {
281         encode_thread.join();
282 }
283
284 void VideoStream::schedule_original_frame(int64_t output_pts, unsigned stream_idx, int64_t input_pts)
285 {
286         fprintf(stderr, "output_pts=%ld  original      input_pts=%ld\n", output_pts, input_pts);
287
288         QueuedFrame qf;
289         qf.type = QueuedFrame::ORIGINAL;
290         qf.output_pts = output_pts;
291         qf.stream_idx = stream_idx;
292         qf.input_first_pts = input_pts;
293
294         unique_lock<mutex> lock(queue_lock);
295         frame_queue.push_back(qf);
296         queue_nonempty.notify_all();
297 }
298
299 void VideoStream::schedule_faded_frame(int64_t output_pts, unsigned stream_idx, int64_t input_pts, int secondary_stream_idx, int64_t secondary_input_pts, float fade_alpha)
300 {
301         fprintf(stderr, "output_pts=%ld  faded         input_pts=%ld,%ld  fade_alpha=%.2f\n", output_pts, input_pts, secondary_input_pts, fade_alpha);
302
303         // Get the temporary OpenGL resources we need for doing the fade.
304         // (We share these with interpolated frames, which is slightly
305         // overkill, but there's no need to waste resources on keeping
306         // separate pools around.)
307         InterpolatedFrameResources resources;
308         {
309                 unique_lock<mutex> lock(queue_lock);
310                 if (interpolate_resources.empty()) {
311                         fprintf(stderr, "WARNING: Too many interpolated frames already in transit; dropping one.\n");
312                         return;
313                 }
314                 resources = interpolate_resources.front();
315                 interpolate_resources.pop_front();
316         }
317
318         bool did_decode;
319
320         JPEGID jpeg_id1;
321         jpeg_id1.stream_idx = stream_idx;
322         jpeg_id1.pts = input_pts;
323         jpeg_id1.interpolated = false;
324         shared_ptr<Frame> frame1 = decode_jpeg_with_cache(jpeg_id1, DECODE_IF_NOT_IN_CACHE, &did_decode);
325
326         JPEGID jpeg_id2;
327         jpeg_id2.stream_idx = secondary_stream_idx;
328         jpeg_id2.pts = secondary_input_pts;
329         jpeg_id2.interpolated = false;
330         shared_ptr<Frame> frame2 = decode_jpeg_with_cache(jpeg_id2, DECODE_IF_NOT_IN_CACHE, &did_decode);
331
332         ycbcr_semiplanar_converter->prepare_chain_for_fade(frame1, frame2, fade_alpha)->render_to_fbo(resources.fade_fbo, 1280, 720);
333
334         QueuedFrame qf;
335         qf.type = QueuedFrame::FADED;
336         qf.output_pts = output_pts;
337         qf.stream_idx = stream_idx;
338         qf.resources = resources;
339         qf.input_first_pts = input_pts;
340
341         qf.secondary_stream_idx = secondary_stream_idx;
342         qf.secondary_input_pts = secondary_input_pts;
343
344         // Subsample and split Cb/Cr.
345         chroma_subsampler->subsample_chroma(resources.fade_cbcr_output_tex, 1280, 720, resources.cb_tex, resources.cr_tex);
346
347         // Read it down (asynchronously) to the CPU.
348         glPixelStorei(GL_PACK_ROW_LENGTH, 0);
349         glBindBuffer(GL_PIXEL_PACK_BUFFER, resources.pbo);
350         check_error();
351         glGetTextureImage(resources.fade_y_output_tex, 0, GL_RED, GL_UNSIGNED_BYTE, 1280 * 720 * 4, BUFFER_OFFSET(0));
352         check_error();
353         glGetTextureImage(resources.cb_tex, 0, GL_RED, GL_UNSIGNED_BYTE, 1280 * 720 * 3, BUFFER_OFFSET(1280 * 720));
354         check_error();
355         glGetTextureImage(resources.cr_tex, 0, GL_RED, GL_UNSIGNED_BYTE, 1280 * 720 * 3 - 640 * 720, BUFFER_OFFSET(1280 * 720 + 640 * 720));
356         check_error();
357         glBindBuffer(GL_PIXEL_PACK_BUFFER, 0);
358
359         // Set a fence we can wait for to make sure the CPU sees the read.
360         glMemoryBarrier(GL_CLIENT_MAPPED_BUFFER_BARRIER_BIT);
361         check_error();
362         qf.fence = RefCountedGLsync(GL_SYNC_GPU_COMMANDS_COMPLETE, /*flags=*/0);
363         check_error();
364
365         unique_lock<mutex> lock(queue_lock);
366         frame_queue.push_back(qf);
367         queue_nonempty.notify_all();
368 }
369
370 void VideoStream::schedule_interpolated_frame(int64_t output_pts, unsigned stream_idx, int64_t input_first_pts, int64_t input_second_pts, float alpha, int secondary_stream_idx, int64_t secondary_input_pts, float fade_alpha)
371 {
372         if (secondary_stream_idx != -1) {
373                 fprintf(stderr, "output_pts=%ld  interpolated  input_pts1=%ld input_pts2=%ld alpha=%.3f  secondary_pts=%ld  fade_alpha=%.2f\n", output_pts, input_first_pts, input_second_pts, alpha, secondary_input_pts, fade_alpha);
374         } else {
375                 fprintf(stderr, "output_pts=%ld  interpolated  input_pts1=%ld input_pts2=%ld alpha=%.3f\n", output_pts, input_first_pts, input_second_pts, alpha);
376         }
377
378         JPEGID id;
379         if (secondary_stream_idx == -1) {
380                 id = JPEGID{ stream_idx, output_pts, /*interpolated=*/true };
381         } else {
382                 id = create_jpegid_for_interpolated_fade(stream_idx, output_pts, secondary_stream_idx, secondary_input_pts);
383         }
384
385         // Get the temporary OpenGL resources we need for doing the interpolation.
386         InterpolatedFrameResources resources;
387         {
388                 unique_lock<mutex> lock(queue_lock);
389                 if (interpolate_resources.empty()) {
390                         fprintf(stderr, "WARNING: Too many interpolated frames already in transit; dropping one.\n");
391                         JPEGFrameView::insert_interpolated_frame(id, nullptr);
392                         return;
393                 }
394                 resources = interpolate_resources.front();
395                 interpolate_resources.pop_front();
396         }
397
398         QueuedFrame qf;
399         qf.type = (secondary_stream_idx == -1) ? QueuedFrame::INTERPOLATED : QueuedFrame::FADED_INTERPOLATED;
400         qf.output_pts = output_pts;
401         qf.stream_idx = stream_idx;
402         qf.resources = resources;
403         qf.id = id;
404
405         check_error();
406
407         // Convert frame0 and frame1 to OpenGL textures.
408         for (size_t frame_no = 0; frame_no < 2; ++frame_no) {
409                 JPEGID jpeg_id;
410                 jpeg_id.stream_idx = stream_idx;
411                 jpeg_id.pts = frame_no == 1 ? input_second_pts : input_first_pts;
412                 jpeg_id.interpolated = false;
413                 bool did_decode;
414                 shared_ptr<Frame> frame = decode_jpeg_with_cache(jpeg_id, DECODE_IF_NOT_IN_CACHE, &did_decode);
415                 ycbcr_converter->prepare_chain_for_conversion(frame)->render_to_fbo(resources.input_fbos[frame_no], 1280, 720);
416         }
417
418         glGenerateTextureMipmap(resources.input_tex);
419         check_error();
420         glGenerateTextureMipmap(resources.gray_tex);
421         check_error();
422
423         // Compute the interpolated frame.
424         qf.flow_tex = compute_flow->exec(resources.gray_tex, DISComputeFlow::FORWARD_AND_BACKWARD, DISComputeFlow::DO_NOT_RESIZE_FLOW);
425         check_error();
426
427         if (secondary_stream_idx != -1) {
428                 // Fade. First kick off the interpolation.
429                 tie(qf.output_tex, ignore) = interpolate_no_split->exec(resources.input_tex, resources.gray_tex, qf.flow_tex, 1280, 720, alpha);
430                 check_error();
431
432                 // Now decode the image we are fading against.
433                 JPEGID jpeg_id;
434                 jpeg_id.stream_idx = secondary_stream_idx;
435                 jpeg_id.pts = secondary_input_pts;
436                 jpeg_id.interpolated = false;
437                 bool did_decode;
438                 shared_ptr<Frame> frame2 = decode_jpeg_with_cache(jpeg_id, DECODE_IF_NOT_IN_CACHE, &did_decode);
439
440                 // Then fade against it, putting it into the fade Y' and CbCr textures.
441                 ycbcr_semiplanar_converter->prepare_chain_for_fade_from_texture(qf.output_tex, frame2, fade_alpha)->render_to_fbo(resources.fade_fbo, 1280, 720);
442
443                 // Subsample and split Cb/Cr.
444                 chroma_subsampler->subsample_chroma(resources.fade_cbcr_output_tex, 1280, 720, resources.cb_tex, resources.cr_tex);
445         } else {
446                 tie(qf.output_tex, qf.cbcr_tex) = interpolate->exec(resources.input_tex, resources.gray_tex, qf.flow_tex, 1280, 720, alpha);
447                 check_error();
448
449                 // Subsample and split Cb/Cr.
450                 chroma_subsampler->subsample_chroma(qf.cbcr_tex, 1280, 720, resources.cb_tex, resources.cr_tex);
451         }
452
453         // We could have released qf.flow_tex here, but to make sure we don't cause a stall
454         // when trying to reuse it for the next frame, we can just as well hold on to it
455         // and release it only when the readback is done.
456
457         // Read it down (asynchronously) to the CPU.
458         glPixelStorei(GL_PACK_ROW_LENGTH, 0);
459         glBindBuffer(GL_PIXEL_PACK_BUFFER, resources.pbo);
460         check_error();
461         if (secondary_stream_idx != -1) {
462                 glGetTextureImage(resources.fade_y_output_tex, 0, GL_RED, GL_UNSIGNED_BYTE, 1280 * 720 * 4, BUFFER_OFFSET(0));
463         } else {
464                 glGetTextureImage(qf.output_tex, 0, GL_RED, GL_UNSIGNED_BYTE, 1280 * 720 * 4, BUFFER_OFFSET(0));
465         }
466         check_error();
467         glGetTextureImage(resources.cb_tex, 0, GL_RED, GL_UNSIGNED_BYTE, 1280 * 720 * 3, BUFFER_OFFSET(1280 * 720));
468         check_error();
469         glGetTextureImage(resources.cr_tex, 0, GL_RED, GL_UNSIGNED_BYTE, 1280 * 720 * 3 - 640 * 720, BUFFER_OFFSET(1280 * 720 + 640 * 720));
470         check_error();
471         glBindBuffer(GL_PIXEL_PACK_BUFFER, 0);
472
473         // Set a fence we can wait for to make sure the CPU sees the read.
474         glMemoryBarrier(GL_CLIENT_MAPPED_BUFFER_BARRIER_BIT);
475         check_error();
476         qf.fence = RefCountedGLsync(GL_SYNC_GPU_COMMANDS_COMPLETE, /*flags=*/0);
477         check_error();
478
479         unique_lock<mutex> lock(queue_lock);
480         frame_queue.push_back(qf);
481         queue_nonempty.notify_all();
482 }
483
484 void VideoStream::schedule_refresh_frame(int64_t output_pts)
485 {
486         AVPacket pkt;
487         av_init_packet(&pkt);
488         pkt.stream_index = 0;
489         pkt.data = (uint8_t *)last_frame.data();
490         pkt.size = last_frame.size();
491         stream_mux->add_packet(pkt, output_pts, output_pts);
492 }
493
494 namespace {
495
496 shared_ptr<Frame> frame_from_pbo(void *contents, size_t width, size_t height)
497 {
498         size_t chroma_width = width / 2;
499
500         const uint8_t *y = (const uint8_t *)contents;
501         const uint8_t *cb = (const uint8_t *)contents + width * height;
502         const uint8_t *cr = (const uint8_t *)contents + width * height + chroma_width * height;
503
504         shared_ptr<Frame> frame(new Frame);
505         frame->y.reset(new uint8_t[width * height]);
506         frame->cb.reset(new uint8_t[chroma_width * height]);
507         frame->cr.reset(new uint8_t[chroma_width * height]);
508         for (unsigned yy = 0; yy < height; ++yy) {
509                 memcpy(frame->y.get() + width * yy, y + width * yy, width);
510                 memcpy(frame->cb.get() + chroma_width * yy, cb + chroma_width * yy, chroma_width);
511                 memcpy(frame->cr.get() + chroma_width * yy, cr + chroma_width * yy, chroma_width);
512         }
513         frame->is_semiplanar = false;
514         frame->width = width;
515         frame->height = height;
516         frame->chroma_subsampling_x = 2;
517         frame->chroma_subsampling_y = 1;
518         frame->pitch_y = width;
519         frame->pitch_chroma = chroma_width;
520         return frame;
521 }
522
523 }  // namespace
524
525 void VideoStream::encode_thread_func()
526 {
527         pthread_setname_np(pthread_self(), "VideoStream");
528         QSurface *surface = create_surface();
529         QOpenGLContext *context = create_context(surface);
530         bool ok = make_current(context, surface);
531         if (!ok) {
532                 fprintf(stderr, "Video stream couldn't get an OpenGL context\n");
533                 exit(1);
534         }
535
536         for ( ;; ) {
537                 QueuedFrame qf;
538                 {
539                         unique_lock<mutex> lock(queue_lock);
540                         queue_nonempty.wait(lock, [this]{
541                                 return !frame_queue.empty();
542                         });
543                         qf = frame_queue.front();
544                         frame_queue.pop_front();
545                 }
546
547                 if (qf.type == QueuedFrame::ORIGINAL) {
548                         // Send the JPEG frame on, unchanged.
549                         string jpeg = read_file(filename_for_frame(qf.stream_idx, qf.input_first_pts));
550                         AVPacket pkt;
551                         av_init_packet(&pkt);
552                         pkt.stream_index = 0;
553                         pkt.data = (uint8_t *)jpeg.data();
554                         pkt.size = jpeg.size();
555                         stream_mux->add_packet(pkt, qf.output_pts, qf.output_pts);
556
557                         last_frame.assign(&jpeg[0], &jpeg[0] + jpeg.size());
558                 } else if (qf.type == QueuedFrame::FADED) {
559                         glClientWaitSync(qf.fence.get(), /*flags=*/0, GL_TIMEOUT_IGNORED);
560
561                         shared_ptr<Frame> frame = frame_from_pbo(qf.resources.pbo_contents, 1280, 720);
562
563                         // Now JPEG encode it, and send it on to the stream.
564                         vector<uint8_t> jpeg = encode_jpeg(frame->y.get(), frame->cb.get(), frame->cr.get(), 1280, 720);
565
566                         AVPacket pkt;
567                         av_init_packet(&pkt);
568                         pkt.stream_index = 0;
569                         pkt.data = (uint8_t *)jpeg.data();
570                         pkt.size = jpeg.size();
571                         stream_mux->add_packet(pkt, qf.output_pts, qf.output_pts);
572                         last_frame = move(jpeg);
573
574                         // Put the frame resources back.
575                         unique_lock<mutex> lock(queue_lock);
576                         interpolate_resources.push_back(qf.resources);
577                 } else if (qf.type == QueuedFrame::INTERPOLATED || qf.type == QueuedFrame::FADED_INTERPOLATED) {
578                         glClientWaitSync(qf.fence.get(), /*flags=*/0, GL_TIMEOUT_IGNORED);
579
580                         // Send a copy of the frame on to display.
581                         shared_ptr<Frame> frame = frame_from_pbo(qf.resources.pbo_contents, 1280, 720);
582                         JPEGFrameView::insert_interpolated_frame(qf.id, frame);
583
584                         // Now JPEG encode it, and send it on to the stream.
585                         vector<uint8_t> jpeg = encode_jpeg(frame->y.get(), frame->cb.get(), frame->cr.get(), 1280, 720);
586                         compute_flow->release_texture(qf.flow_tex);
587                         if (qf.type != QueuedFrame::FADED_INTERPOLATED) {
588                                 interpolate->release_texture(qf.output_tex);
589                                 interpolate->release_texture(qf.cbcr_tex);
590                         }
591
592                         AVPacket pkt;
593                         av_init_packet(&pkt);
594                         pkt.stream_index = 0;
595                         pkt.data = (uint8_t *)jpeg.data();
596                         pkt.size = jpeg.size();
597                         stream_mux->add_packet(pkt, qf.output_pts, qf.output_pts);
598                         last_frame = move(jpeg);
599
600                         // Put the frame resources back.
601                         unique_lock<mutex> lock(queue_lock);
602                         interpolate_resources.push_back(qf.resources);
603                 } else {
604                         assert(false);
605                 }
606         }
607 }
608
609 int VideoStream::write_packet2_thunk(void *opaque, uint8_t *buf, int buf_size, AVIODataMarkerType type, int64_t time)
610 {
611         VideoStream *video_stream = (VideoStream *)opaque;
612         return video_stream->write_packet2(buf, buf_size, type, time);
613 }
614
615 int VideoStream::write_packet2(uint8_t *buf, int buf_size, AVIODataMarkerType type, int64_t time)
616 {
617         if (type == AVIO_DATA_MARKER_SYNC_POINT || type == AVIO_DATA_MARKER_BOUNDARY_POINT) {
618                 seen_sync_markers = true;
619         } else if (type == AVIO_DATA_MARKER_UNKNOWN && !seen_sync_markers) {
620                 // We don't know if this is a keyframe or not (the muxer could
621                 // avoid marking it), so we just have to make the best of it.
622                 type = AVIO_DATA_MARKER_SYNC_POINT;
623         }
624
625         if (type == AVIO_DATA_MARKER_HEADER) {
626                 stream_mux_header.append((char *)buf, buf_size);
627                 global_httpd->set_header(stream_mux_header);
628         } else {
629                 global_httpd->add_data((char *)buf, buf_size, type == AVIO_DATA_MARKER_SYNC_POINT, time, AVRational{ AV_TIME_BASE, 1 });
630         }
631         return buf_size;
632 }