]> git.sesse.net Git - nageru/blob - h264encode.cpp
Remove some commented-out code.
[nageru] / h264encode.cpp
1 //#include "sysdeps.h"
2 #include "h264encode.h"
3
4 #include <EGL/eglplatform.h>
5 #include <X11/X.h>
6 #include <X11/Xlib.h>
7 #include <assert.h>
8 #include <epoxy/egl.h>
9 extern "C" {
10 #include <libavcodec/avcodec.h>
11 #include <libavformat/avformat.h>
12 #include <libavutil/channel_layout.h>
13 #include <libavutil/frame.h>
14 #include <libavutil/rational.h>
15 #include <libavutil/samplefmt.h>
16 }
17 #include <libdrm/drm_fourcc.h>
18 #include <stdio.h>
19 #include <stdlib.h>
20 #include <string.h>
21 #include <va/va.h>
22 #include <va/va_drmcommon.h>
23 #include <va/va_enc_h264.h>
24 #include <va/va_x11.h>
25 #include <condition_variable>
26 #include <cstdint>
27 #include <map>
28 #include <memory>
29 #include <mutex>
30 #include <queue>
31 #include <string>
32 #include <thread>
33 #include <utility>
34
35 #include "context.h"
36 #include "defs.h"
37 #include "httpd.h"
38 #include "timebase.h"
39
40 using namespace std;
41
42 class QOpenGLContext;
43 class QSurface;
44
45 #define CHECK_VASTATUS(va_status, func)                                 \
46     if (va_status != VA_STATUS_SUCCESS) {                               \
47         fprintf(stderr, "%s:%d (%s) failed with %d\n", __func__, __LINE__, func, va_status); \
48         exit(1);                                                        \
49     }
50
51 //#include "loadsurface.h"
52
53 #define NAL_REF_IDC_NONE        0
54 #define NAL_REF_IDC_LOW         1
55 #define NAL_REF_IDC_MEDIUM      2
56 #define NAL_REF_IDC_HIGH        3
57
58 #define NAL_NON_IDR             1
59 #define NAL_IDR                 5
60 #define NAL_SPS                 7
61 #define NAL_PPS                 8
62 #define NAL_SEI                 6
63
64 #define SLICE_TYPE_P            0
65 #define SLICE_TYPE_B            1
66 #define SLICE_TYPE_I            2
67 #define IS_P_SLICE(type) (SLICE_TYPE_P == (type))
68 #define IS_B_SLICE(type) (SLICE_TYPE_B == (type))
69 #define IS_I_SLICE(type) (SLICE_TYPE_I == (type))
70
71
72 #define ENTROPY_MODE_CAVLC      0
73 #define ENTROPY_MODE_CABAC      1
74
75 #define PROFILE_IDC_BASELINE    66
76 #define PROFILE_IDC_MAIN        77
77 #define PROFILE_IDC_HIGH        100
78    
79 #define BITSTREAM_ALLOCATE_STEPPING     4096
80 #define SURFACE_NUM 16 /* 16 surfaces for source YUV */
81
82 static constexpr unsigned int MaxFrameNum = (2<<16);
83 static constexpr unsigned int MaxPicOrderCntLsb = (2<<8);
84 static constexpr unsigned int Log2MaxFrameNum = 16;
85 static constexpr unsigned int Log2MaxPicOrderCntLsb = 8;
86 static constexpr int rc_default_modes[] = {  // Priority list of modes.
87     VA_RC_VBR,
88     VA_RC_CQP,
89     VA_RC_VBR_CONSTRAINED,
90     VA_RC_CBR,
91     VA_RC_VCM,
92     VA_RC_NONE,
93 };
94
95 /* thread to save coded data */
96 #define SRC_SURFACE_FREE        0
97 #define SRC_SURFACE_IN_ENCODING 1
98     
99 struct __bitstream {
100     unsigned int *buffer;
101     int bit_offset;
102     int max_size_in_dword;
103 };
104 typedef struct __bitstream bitstream;
105
106 using namespace std;
107
108 class H264EncoderImpl {
109 public:
110         H264EncoderImpl(QSurface *surface, int width, int height, HTTPD *httpd);
111         ~H264EncoderImpl();
112         void add_audio(int64_t pts, std::vector<float> audio);  // Needs to come before end_frame() of same pts.
113         bool begin_frame(GLuint *y_tex, GLuint *cbcr_tex);
114         void end_frame(RefCountedGLsync fence, int64_t pts, const std::vector<RefCountedFrame> &input_frames);
115
116 private:
117         struct storage_task {
118                 unsigned long long display_order;
119                 int frame_type;
120                 std::vector<float> audio;
121                 int64_t pts, dts;
122         };
123         struct PendingFrame {
124                 RefCountedGLsync fence;
125                 std::vector<RefCountedFrame> input_frames;
126                 int64_t pts;
127         };
128
129         void encode_thread_func();
130         void encode_remaining_frames_as_p(int encoding_frame_num, int gop_start_display_frame_num, int64_t last_dts);
131         void encode_frame(PendingFrame frame, int encoding_frame_num, int display_frame_num, int gop_start_display_frame_num,
132                           int frame_type, int64_t pts, int64_t dts);
133         void storage_task_thread();
134         void storage_task_enqueue(storage_task task);
135         void save_codeddata(storage_task task);
136         int render_packedsequence();
137         int render_packedpicture();
138         void render_packedslice();
139         int render_sequence();
140         int render_picture(int frame_type, int display_frame_num, int gop_start_display_frame_num);
141         void sps_rbsp(bitstream *bs);
142         void pps_rbsp(bitstream *bs);
143         int build_packed_pic_buffer(unsigned char **header_buffer);
144         int render_slice(int encoding_frame_num, int display_frame_num, int gop_start_display_frame_num, int frame_type);
145         void slice_header(bitstream *bs);
146         int build_packed_seq_buffer(unsigned char **header_buffer);
147         int build_packed_slice_buffer(unsigned char **header_buffer);
148         int init_va();
149         int deinit_va();
150         VADisplay va_open_display(void);
151         void va_close_display(VADisplay va_dpy);
152         int setup_encode();
153         int release_encode();
154         void update_ReferenceFrames(int frame_type);
155         int update_RefPicList(int frame_type);
156
157         std::thread encode_thread, storage_thread;
158
159         std::mutex storage_task_queue_mutex;
160         std::condition_variable storage_task_queue_changed;
161         int srcsurface_status[SURFACE_NUM];  // protected by storage_task_queue_mutex
162         std::queue<storage_task> storage_task_queue;  // protected by storage_task_queue_mutex
163         bool storage_thread_should_quit = false;  // protected by storage_task_queue_mutex
164
165         std::mutex frame_queue_mutex;
166         std::condition_variable frame_queue_nonempty;
167         bool encode_thread_should_quit = false;  // under frame_queue_mutex
168
169         int current_storage_frame;
170
171         std::map<int, PendingFrame> pending_video_frames;  // under frame_queue_mutex
172         std::map<int64_t, std::vector<float>> pending_audio_frames;  // under frame_queue_mutex
173         QSurface *surface;
174
175         AVCodecContext *context_audio;
176         HTTPD *httpd;
177
178         Display *x11_display;
179         Window x11_window;
180
181         // Encoder parameters
182         VADisplay va_dpy;
183         VAProfile h264_profile = (VAProfile)~0;
184         VAConfigAttrib config_attrib[VAConfigAttribTypeMax];
185         int config_attrib_num = 0, enc_packed_header_idx;
186
187         struct GLSurface {
188                 VASurfaceID src_surface, ref_surface;
189                 VABufferID coded_buf;
190
191                 VAImage surface_image;
192                 GLuint y_tex, cbcr_tex;
193                 EGLImage y_egl_image, cbcr_egl_image;
194         };
195         GLSurface gl_surfaces[SURFACE_NUM];
196
197         VAConfigID config_id;
198         VAContextID context_id;
199         VAEncSequenceParameterBufferH264 seq_param;
200         VAEncPictureParameterBufferH264 pic_param;
201         VAEncSliceParameterBufferH264 slice_param;
202         VAPictureH264 CurrentCurrPic;
203         VAPictureH264 ReferenceFrames[16], RefPicList0_P[32], RefPicList0_B[32], RefPicList1_B[32];
204
205         // Static quality settings.
206         static constexpr unsigned int frame_bitrate = 15000000 / 60;  // Doesn't really matter; only initial_qp does.
207         static constexpr unsigned int num_ref_frames = 2;
208         static constexpr int initial_qp = 15;
209         static constexpr int minimal_qp = 0;
210         static constexpr int intra_period = 30;
211         static constexpr int intra_idr_period = MAX_FPS;  // About a second; more at lower frame rates. Not ideal.
212
213         // Quality settings that are meant to be static, but might be overridden
214         // by the profile.
215         int constraint_set_flag = 0;
216         int h264_packedheader = 0; /* support pack header? */
217         int h264_maxref = (1<<16|1);
218         int h264_entropy_mode = 1; /* cabac */
219         int ip_period = 3;
220
221         int rc_mode = -1;
222         unsigned int current_frame_num = 0;
223         unsigned int numShortTerm = 0;
224
225         int frame_width;
226         int frame_height;
227         int frame_width_mbaligned;
228         int frame_height_mbaligned;
229 };
230
231
232 // Supposedly vaRenderPicture() is supposed to destroy the buffer implicitly,
233 // but if we don't delete it here, we get leaks. The GStreamer implementation
234 // does the same.
235 static void render_picture_and_delete(VADisplay dpy, VAContextID context, VABufferID *buffers, int num_buffers)
236 {
237     VAStatus va_status = vaRenderPicture(dpy, context, buffers, num_buffers);
238     CHECK_VASTATUS(va_status, "vaRenderPicture");
239
240     for (int i = 0; i < num_buffers; ++i) {
241         va_status = vaDestroyBuffer(dpy, buffers[i]);
242         CHECK_VASTATUS(va_status, "vaDestroyBuffer");
243     }
244 }
245
246 static unsigned int 
247 va_swap32(unsigned int val)
248 {
249     unsigned char *pval = (unsigned char *)&val;
250
251     return ((pval[0] << 24)     |
252             (pval[1] << 16)     |
253             (pval[2] << 8)      |
254             (pval[3] << 0));
255 }
256
257 static void
258 bitstream_start(bitstream *bs)
259 {
260     bs->max_size_in_dword = BITSTREAM_ALLOCATE_STEPPING;
261     bs->buffer = (unsigned int *)calloc(bs->max_size_in_dword * sizeof(int), 1);
262     bs->bit_offset = 0;
263 }
264
265 static void
266 bitstream_end(bitstream *bs)
267 {
268     int pos = (bs->bit_offset >> 5);
269     int bit_offset = (bs->bit_offset & 0x1f);
270     int bit_left = 32 - bit_offset;
271
272     if (bit_offset) {
273         bs->buffer[pos] = va_swap32((bs->buffer[pos] << bit_left));
274     }
275 }
276  
277 static void
278 bitstream_put_ui(bitstream *bs, unsigned int val, int size_in_bits)
279 {
280     int pos = (bs->bit_offset >> 5);
281     int bit_offset = (bs->bit_offset & 0x1f);
282     int bit_left = 32 - bit_offset;
283
284     if (!size_in_bits)
285         return;
286
287     bs->bit_offset += size_in_bits;
288
289     if (bit_left > size_in_bits) {
290         bs->buffer[pos] = (bs->buffer[pos] << size_in_bits | val);
291     } else {
292         size_in_bits -= bit_left;
293         bs->buffer[pos] = (bs->buffer[pos] << bit_left) | (val >> size_in_bits);
294         bs->buffer[pos] = va_swap32(bs->buffer[pos]);
295
296         if (pos + 1 == bs->max_size_in_dword) {
297             bs->max_size_in_dword += BITSTREAM_ALLOCATE_STEPPING;
298             bs->buffer = (unsigned int *)realloc(bs->buffer, bs->max_size_in_dword * sizeof(unsigned int));
299         }
300
301         bs->buffer[pos + 1] = val;
302     }
303 }
304
305 static void
306 bitstream_put_ue(bitstream *bs, unsigned int val)
307 {
308     int size_in_bits = 0;
309     int tmp_val = ++val;
310
311     while (tmp_val) {
312         tmp_val >>= 1;
313         size_in_bits++;
314     }
315
316     bitstream_put_ui(bs, 0, size_in_bits - 1); // leading zero
317     bitstream_put_ui(bs, val, size_in_bits);
318 }
319
320 static void
321 bitstream_put_se(bitstream *bs, int val)
322 {
323     unsigned int new_val;
324
325     if (val <= 0)
326         new_val = -2 * val;
327     else
328         new_val = 2 * val - 1;
329
330     bitstream_put_ue(bs, new_val);
331 }
332
333 static void
334 bitstream_byte_aligning(bitstream *bs, int bit)
335 {
336     int bit_offset = (bs->bit_offset & 0x7);
337     int bit_left = 8 - bit_offset;
338     int new_val;
339
340     if (!bit_offset)
341         return;
342
343     assert(bit == 0 || bit == 1);
344
345     if (bit)
346         new_val = (1 << bit_left) - 1;
347     else
348         new_val = 0;
349
350     bitstream_put_ui(bs, new_val, bit_left);
351 }
352
353 static void 
354 rbsp_trailing_bits(bitstream *bs)
355 {
356     bitstream_put_ui(bs, 1, 1);
357     bitstream_byte_aligning(bs, 0);
358 }
359
360 static void nal_start_code_prefix(bitstream *bs)
361 {
362     bitstream_put_ui(bs, 0x00000001, 32);
363 }
364
365 static void nal_header(bitstream *bs, int nal_ref_idc, int nal_unit_type)
366 {
367     bitstream_put_ui(bs, 0, 1);                /* forbidden_zero_bit: 0 */
368     bitstream_put_ui(bs, nal_ref_idc, 2);
369     bitstream_put_ui(bs, nal_unit_type, 5);
370 }
371
372 void H264EncoderImpl::sps_rbsp(bitstream *bs)
373 {
374     int profile_idc = PROFILE_IDC_BASELINE;
375
376     if (h264_profile  == VAProfileH264High)
377         profile_idc = PROFILE_IDC_HIGH;
378     else if (h264_profile  == VAProfileH264Main)
379         profile_idc = PROFILE_IDC_MAIN;
380
381     bitstream_put_ui(bs, profile_idc, 8);               /* profile_idc */
382     bitstream_put_ui(bs, !!(constraint_set_flag & 1), 1);                         /* constraint_set0_flag */
383     bitstream_put_ui(bs, !!(constraint_set_flag & 2), 1);                         /* constraint_set1_flag */
384     bitstream_put_ui(bs, !!(constraint_set_flag & 4), 1);                         /* constraint_set2_flag */
385     bitstream_put_ui(bs, !!(constraint_set_flag & 8), 1);                         /* constraint_set3_flag */
386     bitstream_put_ui(bs, 0, 4);                         /* reserved_zero_4bits */
387     bitstream_put_ui(bs, seq_param.level_idc, 8);      /* level_idc */
388     bitstream_put_ue(bs, seq_param.seq_parameter_set_id);      /* seq_parameter_set_id */
389
390     if ( profile_idc == PROFILE_IDC_HIGH) {
391         bitstream_put_ue(bs, 1);        /* chroma_format_idc = 1, 4:2:0 */ 
392         bitstream_put_ue(bs, 0);        /* bit_depth_luma_minus8 */
393         bitstream_put_ue(bs, 0);        /* bit_depth_chroma_minus8 */
394         bitstream_put_ui(bs, 0, 1);     /* qpprime_y_zero_transform_bypass_flag */
395         bitstream_put_ui(bs, 0, 1);     /* seq_scaling_matrix_present_flag */
396     }
397
398     bitstream_put_ue(bs, seq_param.seq_fields.bits.log2_max_frame_num_minus4); /* log2_max_frame_num_minus4 */
399     bitstream_put_ue(bs, seq_param.seq_fields.bits.pic_order_cnt_type);        /* pic_order_cnt_type */
400
401     if (seq_param.seq_fields.bits.pic_order_cnt_type == 0)
402         bitstream_put_ue(bs, seq_param.seq_fields.bits.log2_max_pic_order_cnt_lsb_minus4);     /* log2_max_pic_order_cnt_lsb_minus4 */
403     else {
404         assert(0);
405     }
406
407     bitstream_put_ue(bs, seq_param.max_num_ref_frames);        /* num_ref_frames */
408     bitstream_put_ui(bs, 0, 1);                                 /* gaps_in_frame_num_value_allowed_flag */
409
410     bitstream_put_ue(bs, seq_param.picture_width_in_mbs - 1);  /* pic_width_in_mbs_minus1 */
411     bitstream_put_ue(bs, seq_param.picture_height_in_mbs - 1); /* pic_height_in_map_units_minus1 */
412     bitstream_put_ui(bs, seq_param.seq_fields.bits.frame_mbs_only_flag, 1);    /* frame_mbs_only_flag */
413
414     if (!seq_param.seq_fields.bits.frame_mbs_only_flag) {
415         assert(0);
416     }
417
418     bitstream_put_ui(bs, seq_param.seq_fields.bits.direct_8x8_inference_flag, 1);      /* direct_8x8_inference_flag */
419     bitstream_put_ui(bs, seq_param.frame_cropping_flag, 1);            /* frame_cropping_flag */
420
421     if (seq_param.frame_cropping_flag) {
422         bitstream_put_ue(bs, seq_param.frame_crop_left_offset);        /* frame_crop_left_offset */
423         bitstream_put_ue(bs, seq_param.frame_crop_right_offset);       /* frame_crop_right_offset */
424         bitstream_put_ue(bs, seq_param.frame_crop_top_offset);         /* frame_crop_top_offset */
425         bitstream_put_ue(bs, seq_param.frame_crop_bottom_offset);      /* frame_crop_bottom_offset */
426     }
427     
428     //if ( frame_bit_rate < 0 ) { //TODO EW: the vui header isn't correct
429     if ( false ) {
430         bitstream_put_ui(bs, 0, 1); /* vui_parameters_present_flag */
431     } else {
432         bitstream_put_ui(bs, 1, 1); /* vui_parameters_present_flag */
433         bitstream_put_ui(bs, 0, 1); /* aspect_ratio_info_present_flag */
434         bitstream_put_ui(bs, 0, 1); /* overscan_info_present_flag */
435         bitstream_put_ui(bs, 1, 1); /* video_signal_type_present_flag */
436         {
437             bitstream_put_ui(bs, 5, 3);  /* video_format (5 = Unspecified) */
438             bitstream_put_ui(bs, 0, 1);  /* video_full_range_flag */
439             bitstream_put_ui(bs, 1, 1);  /* colour_description_present_flag */
440             {
441                 bitstream_put_ui(bs, 1, 8);  /* colour_primaries (1 = BT.709) */
442                 bitstream_put_ui(bs, 2, 8);  /* transfer_characteristics (2 = unspecified, since we use sRGB) */
443                 bitstream_put_ui(bs, 6, 8);  /* matrix_coefficients (6 = BT.601/SMPTE 170M) */
444             }
445         }
446         bitstream_put_ui(bs, 0, 1); /* chroma_loc_info_present_flag */
447         bitstream_put_ui(bs, 1, 1); /* timing_info_present_flag */
448         {
449             bitstream_put_ui(bs, 1, 32);  // FPS
450             bitstream_put_ui(bs, TIMEBASE * 2, 32);  // FPS
451             bitstream_put_ui(bs, 1, 1);
452         }
453         bitstream_put_ui(bs, 1, 1); /* nal_hrd_parameters_present_flag */
454         {
455             // hrd_parameters 
456             bitstream_put_ue(bs, 0);    /* cpb_cnt_minus1 */
457             bitstream_put_ui(bs, 4, 4); /* bit_rate_scale */
458             bitstream_put_ui(bs, 6, 4); /* cpb_size_scale */
459            
460             bitstream_put_ue(bs, frame_bitrate - 1); /* bit_rate_value_minus1[0] */
461             bitstream_put_ue(bs, frame_bitrate*8 - 1); /* cpb_size_value_minus1[0] */
462             bitstream_put_ui(bs, 1, 1);  /* cbr_flag[0] */
463
464             bitstream_put_ui(bs, 23, 5);   /* initial_cpb_removal_delay_length_minus1 */
465             bitstream_put_ui(bs, 23, 5);   /* cpb_removal_delay_length_minus1 */
466             bitstream_put_ui(bs, 23, 5);   /* dpb_output_delay_length_minus1 */
467             bitstream_put_ui(bs, 23, 5);   /* time_offset_length  */
468         }
469         bitstream_put_ui(bs, 0, 1);   /* vcl_hrd_parameters_present_flag */
470         bitstream_put_ui(bs, 0, 1);   /* low_delay_hrd_flag */ 
471
472         bitstream_put_ui(bs, 0, 1); /* pic_struct_present_flag */
473         bitstream_put_ui(bs, 0, 1); /* bitstream_restriction_flag */
474     }
475
476     rbsp_trailing_bits(bs);     /* rbsp_trailing_bits */
477 }
478
479
480 void H264EncoderImpl::pps_rbsp(bitstream *bs)
481 {
482     bitstream_put_ue(bs, pic_param.pic_parameter_set_id);      /* pic_parameter_set_id */
483     bitstream_put_ue(bs, pic_param.seq_parameter_set_id);      /* seq_parameter_set_id */
484
485     bitstream_put_ui(bs, pic_param.pic_fields.bits.entropy_coding_mode_flag, 1);  /* entropy_coding_mode_flag */
486
487     bitstream_put_ui(bs, 0, 1);                         /* pic_order_present_flag: 0 */
488
489     bitstream_put_ue(bs, 0);                            /* num_slice_groups_minus1 */
490
491     bitstream_put_ue(bs, pic_param.num_ref_idx_l0_active_minus1);      /* num_ref_idx_l0_active_minus1 */
492     bitstream_put_ue(bs, pic_param.num_ref_idx_l1_active_minus1);      /* num_ref_idx_l1_active_minus1 1 */
493
494     bitstream_put_ui(bs, pic_param.pic_fields.bits.weighted_pred_flag, 1);     /* weighted_pred_flag: 0 */
495     bitstream_put_ui(bs, pic_param.pic_fields.bits.weighted_bipred_idc, 2);     /* weighted_bipred_idc: 0 */
496
497     bitstream_put_se(bs, pic_param.pic_init_qp - 26);  /* pic_init_qp_minus26 */
498     bitstream_put_se(bs, 0);                            /* pic_init_qs_minus26 */
499     bitstream_put_se(bs, 0);                            /* chroma_qp_index_offset */
500
501     bitstream_put_ui(bs, pic_param.pic_fields.bits.deblocking_filter_control_present_flag, 1); /* deblocking_filter_control_present_flag */
502     bitstream_put_ui(bs, 0, 1);                         /* constrained_intra_pred_flag */
503     bitstream_put_ui(bs, 0, 1);                         /* redundant_pic_cnt_present_flag */
504     
505     /* more_rbsp_data */
506     bitstream_put_ui(bs, pic_param.pic_fields.bits.transform_8x8_mode_flag, 1);    /*transform_8x8_mode_flag */
507     bitstream_put_ui(bs, 0, 1);                         /* pic_scaling_matrix_present_flag */
508     bitstream_put_se(bs, pic_param.second_chroma_qp_index_offset );    /*second_chroma_qp_index_offset */
509
510     rbsp_trailing_bits(bs);
511 }
512
513 void H264EncoderImpl::slice_header(bitstream *bs)
514 {
515     int first_mb_in_slice = slice_param.macroblock_address;
516
517     bitstream_put_ue(bs, first_mb_in_slice);        /* first_mb_in_slice: 0 */
518     bitstream_put_ue(bs, slice_param.slice_type);   /* slice_type */
519     bitstream_put_ue(bs, slice_param.pic_parameter_set_id);        /* pic_parameter_set_id: 0 */
520     bitstream_put_ui(bs, pic_param.frame_num, seq_param.seq_fields.bits.log2_max_frame_num_minus4 + 4); /* frame_num */
521
522     /* frame_mbs_only_flag == 1 */
523     if (!seq_param.seq_fields.bits.frame_mbs_only_flag) {
524         /* FIXME: */
525         assert(0);
526     }
527
528     if (pic_param.pic_fields.bits.idr_pic_flag)
529         bitstream_put_ue(bs, slice_param.idr_pic_id);           /* idr_pic_id: 0 */
530
531     if (seq_param.seq_fields.bits.pic_order_cnt_type == 0) {
532         bitstream_put_ui(bs, pic_param.CurrPic.TopFieldOrderCnt, seq_param.seq_fields.bits.log2_max_pic_order_cnt_lsb_minus4 + 4);
533         /* pic_order_present_flag == 0 */
534     } else {
535         /* FIXME: */
536         assert(0);
537     }
538
539     /* redundant_pic_cnt_present_flag == 0 */
540     /* slice type */
541     if (IS_P_SLICE(slice_param.slice_type)) {
542         bitstream_put_ui(bs, slice_param.num_ref_idx_active_override_flag, 1);            /* num_ref_idx_active_override_flag: */
543
544         if (slice_param.num_ref_idx_active_override_flag)
545             bitstream_put_ue(bs, slice_param.num_ref_idx_l0_active_minus1);
546
547         /* ref_pic_list_reordering */
548         bitstream_put_ui(bs, 0, 1);            /* ref_pic_list_reordering_flag_l0: 0 */
549     } else if (IS_B_SLICE(slice_param.slice_type)) {
550         bitstream_put_ui(bs, slice_param.direct_spatial_mv_pred_flag, 1);            /* direct_spatial_mv_pred: 1 */
551
552         bitstream_put_ui(bs, slice_param.num_ref_idx_active_override_flag, 1);       /* num_ref_idx_active_override_flag: */
553
554         if (slice_param.num_ref_idx_active_override_flag) {
555             bitstream_put_ue(bs, slice_param.num_ref_idx_l0_active_minus1);
556             bitstream_put_ue(bs, slice_param.num_ref_idx_l1_active_minus1);
557         }
558
559         /* ref_pic_list_reordering */
560         bitstream_put_ui(bs, 0, 1);            /* ref_pic_list_reordering_flag_l0: 0 */
561         bitstream_put_ui(bs, 0, 1);            /* ref_pic_list_reordering_flag_l1: 0 */
562     }
563
564     if ((pic_param.pic_fields.bits.weighted_pred_flag &&
565          IS_P_SLICE(slice_param.slice_type)) ||
566         ((pic_param.pic_fields.bits.weighted_bipred_idc == 1) &&
567          IS_B_SLICE(slice_param.slice_type))) {
568         /* FIXME: fill weight/offset table */
569         assert(0);
570     }
571
572     /* dec_ref_pic_marking */
573     if (pic_param.pic_fields.bits.reference_pic_flag) {     /* nal_ref_idc != 0 */
574         unsigned char no_output_of_prior_pics_flag = 0;
575         unsigned char long_term_reference_flag = 0;
576         unsigned char adaptive_ref_pic_marking_mode_flag = 0;
577
578         if (pic_param.pic_fields.bits.idr_pic_flag) {
579             bitstream_put_ui(bs, no_output_of_prior_pics_flag, 1);            /* no_output_of_prior_pics_flag: 0 */
580             bitstream_put_ui(bs, long_term_reference_flag, 1);            /* long_term_reference_flag: 0 */
581         } else {
582             bitstream_put_ui(bs, adaptive_ref_pic_marking_mode_flag, 1);            /* adaptive_ref_pic_marking_mode_flag: 0 */
583         }
584     }
585
586     if (pic_param.pic_fields.bits.entropy_coding_mode_flag &&
587         !IS_I_SLICE(slice_param.slice_type))
588         bitstream_put_ue(bs, slice_param.cabac_init_idc);               /* cabac_init_idc: 0 */
589
590     bitstream_put_se(bs, slice_param.slice_qp_delta);                   /* slice_qp_delta: 0 */
591
592     /* ignore for SP/SI */
593
594     if (pic_param.pic_fields.bits.deblocking_filter_control_present_flag) {
595         bitstream_put_ue(bs, slice_param.disable_deblocking_filter_idc);           /* disable_deblocking_filter_idc: 0 */
596
597         if (slice_param.disable_deblocking_filter_idc != 1) {
598             bitstream_put_se(bs, slice_param.slice_alpha_c0_offset_div2);          /* slice_alpha_c0_offset_div2: 2 */
599             bitstream_put_se(bs, slice_param.slice_beta_offset_div2);              /* slice_beta_offset_div2: 2 */
600         }
601     }
602
603     if (pic_param.pic_fields.bits.entropy_coding_mode_flag) {
604         bitstream_byte_aligning(bs, 1);
605     }
606 }
607
608 int H264EncoderImpl::build_packed_pic_buffer(unsigned char **header_buffer)
609 {
610     bitstream bs;
611
612     bitstream_start(&bs);
613     nal_start_code_prefix(&bs);
614     nal_header(&bs, NAL_REF_IDC_HIGH, NAL_PPS);
615     pps_rbsp(&bs);
616     bitstream_end(&bs);
617
618     *header_buffer = (unsigned char *)bs.buffer;
619     return bs.bit_offset;
620 }
621
622 int
623 H264EncoderImpl::build_packed_seq_buffer(unsigned char **header_buffer)
624 {
625     bitstream bs;
626
627     bitstream_start(&bs);
628     nal_start_code_prefix(&bs);
629     nal_header(&bs, NAL_REF_IDC_HIGH, NAL_SPS);
630     sps_rbsp(&bs);
631     bitstream_end(&bs);
632
633     *header_buffer = (unsigned char *)bs.buffer;
634     return bs.bit_offset;
635 }
636
637 int H264EncoderImpl::build_packed_slice_buffer(unsigned char **header_buffer)
638 {
639     bitstream bs;
640     int is_idr = !!pic_param.pic_fields.bits.idr_pic_flag;
641     int is_ref = !!pic_param.pic_fields.bits.reference_pic_flag;
642
643     bitstream_start(&bs);
644     nal_start_code_prefix(&bs);
645
646     if (IS_I_SLICE(slice_param.slice_type)) {
647         nal_header(&bs, NAL_REF_IDC_HIGH, is_idr ? NAL_IDR : NAL_NON_IDR);
648     } else if (IS_P_SLICE(slice_param.slice_type)) {
649         nal_header(&bs, NAL_REF_IDC_MEDIUM, NAL_NON_IDR);
650     } else {
651         assert(IS_B_SLICE(slice_param.slice_type));
652         nal_header(&bs, is_ref ? NAL_REF_IDC_LOW : NAL_REF_IDC_NONE, NAL_NON_IDR);
653     }
654
655     slice_header(&bs);
656     bitstream_end(&bs);
657
658     *header_buffer = (unsigned char *)bs.buffer;
659     return bs.bit_offset;
660 }
661
662
663 /*
664   Assume frame sequence is: Frame#0, #1, #2, ..., #M, ..., #X, ... (encoding order)
665   1) period between Frame #X and Frame #N = #X - #N
666   2) 0 means infinite for intra_period/intra_idr_period, and 0 is invalid for ip_period
667   3) intra_idr_period % intra_period (intra_period > 0) and intra_period % ip_period must be 0
668   4) intra_period and intra_idr_period take precedence over ip_period
669   5) if ip_period > 1, intra_period and intra_idr_period are not  the strict periods 
670      of I/IDR frames, see bellow examples
671   -------------------------------------------------------------------
672   intra_period intra_idr_period ip_period frame sequence (intra_period/intra_idr_period/ip_period)
673   0            ignored          1          IDRPPPPPPP ...     (No IDR/I any more)
674   0            ignored        >=2          IDR(PBB)(PBB)...   (No IDR/I any more)
675   1            0                ignored    IDRIIIIIII...      (No IDR any more)
676   1            1                ignored    IDR IDR IDR IDR...
677   1            >=2              ignored    IDRII IDRII IDR... (1/3/ignore)
678   >=2          0                1          IDRPPP IPPP I...   (3/0/1)
679   >=2          0              >=2          IDR(PBB)(PBB)(IBB) (6/0/3)
680                                               (PBB)(IBB)(PBB)(IBB)... 
681   >=2          >=2              1          IDRPPPPP IPPPPP IPPPPP (6/18/1)
682                                            IDRPPPPP IPPPPP IPPPPP...
683   >=2          >=2              >=2        {IDR(PBB)(PBB)(IBB)(PBB)(IBB)(PBB)} (6/18/3)
684                                            {IDR(PBB)(PBB)(IBB)(PBB)(IBB)(PBB)}...
685                                            {IDR(PBB)(PBB)(IBB)(PBB)}           (6/12/3)
686                                            {IDR(PBB)(PBB)(IBB)(PBB)}...
687                                            {IDR(PBB)(PBB)}                     (6/6/3)
688                                            {IDR(PBB)(PBB)}.
689 */
690
691 // General pts/dts strategy:
692 //
693 // Getting pts and dts right with variable frame rate (VFR) and B-frames can be a
694 // bit tricky. We assume first of all that the frame rate never goes _above_
695 // MAX_FPS, which gives us a frame period N. The decoder can always decode
696 // in at least this speed, as long at dts <= pts (the frame is not attempted
697 // presented before it is decoded). Furthermore, we never have longer chains of
698 // B-frames than a fixed constant C. (In a B-frame chain, we say that the base
699 // I/P-frame has order O=0, the B-frame depending on it directly has order O=1,
700 // etc. The last frame in the chain, which no B-frames depend on, is the “tip”
701 // frame, with an order O <= C.)
702 //
703 // Many strategies are possible, but we establish these rules:
704 //
705 //  - Tip frames have dts = pts - (C-O)*N.
706 //  - Non-tip frames have dts = dts_last + N.
707 //
708 // An example, with C=2 and N=10 and the data flow showed with arrows:
709 //
710 //        I  B  P  B  B  P
711 //   pts: 30 40 50 60 70 80
712 //        ↓  ↓     ↓
713 //   dts: 10 30 20 60 50←40
714 //         |  |  ↑        ↑
715 //         `--|--'        |
716 //             `----------'
717 //
718 // To show that this works fine also with irregular spacings, let's say that
719 // the third frame is delayed a bit (something earlier was dropped). Now the
720 // situation looks like this:
721 //
722 //        I  B  P  B  B   P
723 //   pts: 30 40 80 90 100 110
724 //        ↓  ↓     ↓
725 //   dts: 10 30 20 90 50←40
726 //         |  |  ↑        ↑
727 //         `--|--'        |
728 //             `----------'
729 //
730 // The resetting on every tip frame makes sure dts never ends up lagging a lot
731 // behind pts, and the subtraction of (C-O)*N makes sure pts <= dts.
732 //
733 // In the output of this function, if <dts_lag> is >= 0, it means to reset the
734 // dts from the current pts minus <dts_lag>, while if it's -1, the frame is not
735 // a tip frame and should be given a dts based on the previous one.
736 #define FRAME_P 0
737 #define FRAME_B 1
738 #define FRAME_I 2
739 #define FRAME_IDR 7
740 void encoding2display_order(
741     int encoding_order, int intra_period,
742     int intra_idr_period, int ip_period,
743     int *displaying_order,
744     int *frame_type, int *pts_lag)
745 {
746     int encoding_order_gop = 0;
747
748     *pts_lag = 0;
749
750     if (intra_period == 1) { /* all are I/IDR frames */
751         *displaying_order = encoding_order;
752         if (intra_idr_period == 0)
753             *frame_type = (encoding_order == 0)?FRAME_IDR:FRAME_I;
754         else
755             *frame_type = (encoding_order % intra_idr_period == 0)?FRAME_IDR:FRAME_I;
756         return;
757     }
758
759     if (intra_period == 0)
760         intra_idr_period = 0;
761
762     if (ip_period == 1) {
763         // No B-frames, sequence is like IDR PPPPP IPPPPP.
764         encoding_order_gop = (intra_idr_period == 0) ? encoding_order : (encoding_order % intra_idr_period);
765         *displaying_order = encoding_order;
766
767         if (encoding_order_gop == 0) { /* the first frame */
768             *frame_type = FRAME_IDR;
769         } else if (intra_period != 0 && /* have I frames */
770                    encoding_order_gop >= 2 &&
771                    (encoding_order_gop % intra_period == 0)) {
772             *frame_type = FRAME_I;
773         } else {
774             *frame_type = FRAME_P;
775         }
776         return;
777     } 
778
779     // We have B-frames. Sequence is like IDR (PBB)(PBB)(IBB)(PBB).
780     encoding_order_gop = (intra_idr_period == 0) ? encoding_order : (encoding_order % (intra_idr_period + 1));
781     *pts_lag = -1;  // Most frames are not tip frames.
782          
783     if (encoding_order_gop == 0) { /* the first frame */
784         *frame_type = FRAME_IDR;
785         *displaying_order = encoding_order;
786         // IDR frames are a special case; I honestly can't find the logic behind
787         // why this is the right thing, but it seems to line up nicely in practice :-)
788         *pts_lag = TIMEBASE / MAX_FPS;
789     } else if (((encoding_order_gop - 1) % ip_period) != 0) { /* B frames */
790         *frame_type = FRAME_B;
791         *displaying_order = encoding_order - 1;
792         if ((encoding_order_gop % ip_period) == 0) {
793             *pts_lag = 0;  // Last B-frame.
794         }
795     } else if (intra_period != 0 && /* have I frames */
796                encoding_order_gop >= 2 &&
797                ((encoding_order_gop - 1) / ip_period % (intra_period / ip_period)) == 0) {
798         *frame_type = FRAME_I;
799         *displaying_order = encoding_order + ip_period - 1;
800     } else {
801         *frame_type = FRAME_P;
802         *displaying_order = encoding_order + ip_period - 1;
803     }
804 }
805
806
807 static const char *rc_to_string(int rc_mode)
808 {
809     switch (rc_mode) {
810     case VA_RC_NONE:
811         return "NONE";
812     case VA_RC_CBR:
813         return "CBR";
814     case VA_RC_VBR:
815         return "VBR";
816     case VA_RC_VCM:
817         return "VCM";
818     case VA_RC_CQP:
819         return "CQP";
820     case VA_RC_VBR_CONSTRAINED:
821         return "VBR_CONSTRAINED";
822     default:
823         return "Unknown";
824     }
825 }
826
827 VADisplay H264EncoderImpl::va_open_display(void)
828 {
829     x11_display = XOpenDisplay(NULL);
830     if (!x11_display) {
831         fprintf(stderr, "error: can't connect to X server!\n");
832         return NULL;
833     }
834     return vaGetDisplay(x11_display);
835 }
836
837 void H264EncoderImpl::va_close_display(VADisplay va_dpy)
838 {
839     if (!x11_display)
840         return;
841
842     if (x11_window) {
843         XUnmapWindow(x11_display, x11_window);
844         XDestroyWindow(x11_display, x11_window);
845         x11_window = None;
846     }
847     XCloseDisplay(x11_display);
848     x11_display = NULL;
849 }
850
851 int H264EncoderImpl::init_va()
852 {
853     VAProfile profile_list[]={VAProfileH264High, VAProfileH264Main, VAProfileH264Baseline, VAProfileH264ConstrainedBaseline};
854     VAEntrypoint *entrypoints;
855     int num_entrypoints, slice_entrypoint;
856     int support_encode = 0;    
857     int major_ver, minor_ver;
858     VAStatus va_status;
859     unsigned int i;
860
861     va_dpy = va_open_display();
862     va_status = vaInitialize(va_dpy, &major_ver, &minor_ver);
863     CHECK_VASTATUS(va_status, "vaInitialize");
864
865     num_entrypoints = vaMaxNumEntrypoints(va_dpy);
866     entrypoints = (VAEntrypoint *)malloc(num_entrypoints * sizeof(*entrypoints));
867     if (!entrypoints) {
868         fprintf(stderr, "error: failed to initialize VA entrypoints array\n");
869         exit(1);
870     }
871
872     /* use the highest profile */
873     for (i = 0; i < sizeof(profile_list)/sizeof(profile_list[0]); i++) {
874         if ((h264_profile != ~0) && h264_profile != profile_list[i])
875             continue;
876         
877         h264_profile = profile_list[i];
878         vaQueryConfigEntrypoints(va_dpy, h264_profile, entrypoints, &num_entrypoints);
879         for (slice_entrypoint = 0; slice_entrypoint < num_entrypoints; slice_entrypoint++) {
880             if (entrypoints[slice_entrypoint] == VAEntrypointEncSlice) {
881                 support_encode = 1;
882                 break;
883             }
884         }
885         if (support_encode == 1)
886             break;
887     }
888     
889     if (support_encode == 0) {
890         printf("Can't find VAEntrypointEncSlice for H264 profiles\n");
891         exit(1);
892     } else {
893         switch (h264_profile) {
894             case VAProfileH264Baseline:
895                 ip_period = 1;
896                 constraint_set_flag |= (1 << 0); /* Annex A.2.1 */
897                 h264_entropy_mode = 0;
898                 break;
899             case VAProfileH264ConstrainedBaseline:
900                 constraint_set_flag |= (1 << 0 | 1 << 1); /* Annex A.2.2 */
901                 ip_period = 1;
902                 break;
903
904             case VAProfileH264Main:
905                 constraint_set_flag |= (1 << 1); /* Annex A.2.2 */
906                 break;
907
908             case VAProfileH264High:
909                 constraint_set_flag |= (1 << 3); /* Annex A.2.4 */
910                 break;
911             default:
912                 h264_profile = VAProfileH264Baseline;
913                 ip_period = 1;
914                 constraint_set_flag |= (1 << 0); /* Annex A.2.1 */
915                 break;
916         }
917     }
918
919     VAConfigAttrib attrib[VAConfigAttribTypeMax];
920
921     /* find out the format for the render target, and rate control mode */
922     for (i = 0; i < VAConfigAttribTypeMax; i++)
923         attrib[i].type = (VAConfigAttribType)i;
924
925     va_status = vaGetConfigAttributes(va_dpy, h264_profile, VAEntrypointEncSlice,
926                                       &attrib[0], VAConfigAttribTypeMax);
927     CHECK_VASTATUS(va_status, "vaGetConfigAttributes");
928     /* check the interested configattrib */
929     if ((attrib[VAConfigAttribRTFormat].value & VA_RT_FORMAT_YUV420) == 0) {
930         printf("Not find desired YUV420 RT format\n");
931         exit(1);
932     } else {
933         config_attrib[config_attrib_num].type = VAConfigAttribRTFormat;
934         config_attrib[config_attrib_num].value = VA_RT_FORMAT_YUV420;
935         config_attrib_num++;
936     }
937     
938     if (attrib[VAConfigAttribRateControl].value != VA_ATTRIB_NOT_SUPPORTED) {
939         int tmp = attrib[VAConfigAttribRateControl].value;
940
941         if (rc_mode == -1 || !(rc_mode & tmp))  {
942             if (rc_mode != -1) {
943                 printf("Warning: Don't support the specified RateControl mode: %s!!!, switch to ", rc_to_string(rc_mode));
944             }
945
946             for (i = 0; i < sizeof(rc_default_modes) / sizeof(rc_default_modes[0]); i++) {
947                 if (rc_default_modes[i] & tmp) {
948                     rc_mode = rc_default_modes[i];
949                     break;
950                 }
951             }
952         }
953
954         config_attrib[config_attrib_num].type = VAConfigAttribRateControl;
955         config_attrib[config_attrib_num].value = rc_mode;
956         config_attrib_num++;
957     }
958     
959
960     if (attrib[VAConfigAttribEncPackedHeaders].value != VA_ATTRIB_NOT_SUPPORTED) {
961         int tmp = attrib[VAConfigAttribEncPackedHeaders].value;
962
963         h264_packedheader = 1;
964         config_attrib[config_attrib_num].type = VAConfigAttribEncPackedHeaders;
965         config_attrib[config_attrib_num].value = VA_ENC_PACKED_HEADER_NONE;
966         
967         if (tmp & VA_ENC_PACKED_HEADER_SEQUENCE) {
968             config_attrib[config_attrib_num].value |= VA_ENC_PACKED_HEADER_SEQUENCE;
969         }
970         
971         if (tmp & VA_ENC_PACKED_HEADER_PICTURE) {
972             config_attrib[config_attrib_num].value |= VA_ENC_PACKED_HEADER_PICTURE;
973         }
974         
975         if (tmp & VA_ENC_PACKED_HEADER_SLICE) {
976             config_attrib[config_attrib_num].value |= VA_ENC_PACKED_HEADER_SLICE;
977         }
978         
979         if (tmp & VA_ENC_PACKED_HEADER_MISC) {
980             config_attrib[config_attrib_num].value |= VA_ENC_PACKED_HEADER_MISC;
981         }
982         
983         enc_packed_header_idx = config_attrib_num;
984         config_attrib_num++;
985     }
986
987     if (attrib[VAConfigAttribEncInterlaced].value != VA_ATTRIB_NOT_SUPPORTED) {
988         config_attrib[config_attrib_num].type = VAConfigAttribEncInterlaced;
989         config_attrib[config_attrib_num].value = VA_ENC_PACKED_HEADER_NONE;
990         config_attrib_num++;
991     }
992     
993     if (attrib[VAConfigAttribEncMaxRefFrames].value != VA_ATTRIB_NOT_SUPPORTED) {
994         h264_maxref = attrib[VAConfigAttribEncMaxRefFrames].value;
995     }
996
997     free(entrypoints);
998     return 0;
999 }
1000
1001 int H264EncoderImpl::setup_encode()
1002 {
1003     VAStatus va_status;
1004     VASurfaceID *tmp_surfaceid;
1005     int codedbuf_size, i;
1006     static VASurfaceID src_surface[SURFACE_NUM];
1007     static VASurfaceID ref_surface[SURFACE_NUM];
1008     
1009     va_status = vaCreateConfig(va_dpy, h264_profile, VAEntrypointEncSlice,
1010             &config_attrib[0], config_attrib_num, &config_id);
1011     CHECK_VASTATUS(va_status, "vaCreateConfig");
1012
1013     /* create source surfaces */
1014     va_status = vaCreateSurfaces(va_dpy,
1015                                  VA_RT_FORMAT_YUV420, frame_width_mbaligned, frame_height_mbaligned,
1016                                  &src_surface[0], SURFACE_NUM,
1017                                  NULL, 0);
1018     CHECK_VASTATUS(va_status, "vaCreateSurfaces");
1019
1020     /* create reference surfaces */
1021     va_status = vaCreateSurfaces(va_dpy,
1022                                  VA_RT_FORMAT_YUV420, frame_width_mbaligned, frame_height_mbaligned,
1023                                  &ref_surface[0], SURFACE_NUM,
1024                                  NULL, 0);
1025     CHECK_VASTATUS(va_status, "vaCreateSurfaces");
1026
1027     tmp_surfaceid = (VASurfaceID *)calloc(2 * SURFACE_NUM, sizeof(VASurfaceID));
1028     memcpy(tmp_surfaceid, src_surface, SURFACE_NUM * sizeof(VASurfaceID));
1029     memcpy(tmp_surfaceid + SURFACE_NUM, ref_surface, SURFACE_NUM * sizeof(VASurfaceID));
1030     
1031     /* Create a context for this encode pipe */
1032     va_status = vaCreateContext(va_dpy, config_id,
1033                                 frame_width_mbaligned, frame_height_mbaligned,
1034                                 VA_PROGRESSIVE,
1035                                 tmp_surfaceid, 2 * SURFACE_NUM,
1036                                 &context_id);
1037     CHECK_VASTATUS(va_status, "vaCreateContext");
1038     free(tmp_surfaceid);
1039
1040     codedbuf_size = (frame_width_mbaligned * frame_height_mbaligned * 400) / (16*16);
1041
1042     for (i = 0; i < SURFACE_NUM; i++) {
1043         /* create coded buffer once for all
1044          * other VA buffers which won't be used again after vaRenderPicture.
1045          * so APP can always vaCreateBuffer for every frame
1046          * but coded buffer need to be mapped and accessed after vaRenderPicture/vaEndPicture
1047          * so VA won't maintain the coded buffer
1048          */
1049         va_status = vaCreateBuffer(va_dpy, context_id, VAEncCodedBufferType,
1050                 codedbuf_size, 1, NULL, &gl_surfaces[i].coded_buf);
1051         CHECK_VASTATUS(va_status, "vaCreateBuffer");
1052     }
1053
1054     /* create OpenGL objects */
1055     //glGenFramebuffers(SURFACE_NUM, fbos);
1056     
1057     for (i = 0; i < SURFACE_NUM; i++) {
1058         glGenTextures(1, &gl_surfaces[i].y_tex);
1059         glGenTextures(1, &gl_surfaces[i].cbcr_tex);
1060     }
1061
1062     for (i = 0; i < SURFACE_NUM; i++) {
1063         gl_surfaces[i].src_surface = src_surface[i];
1064         gl_surfaces[i].ref_surface = ref_surface[i];
1065     }
1066     
1067     return 0;
1068 }
1069
1070
1071
1072 #define partition(ref, field, key, ascending)   \
1073     while (i <= j) {                            \
1074         if (ascending) {                        \
1075             while (ref[i].field < key)          \
1076                 i++;                            \
1077             while (ref[j].field > key)          \
1078                 j--;                            \
1079         } else {                                \
1080             while (ref[i].field > key)          \
1081                 i++;                            \
1082             while (ref[j].field < key)          \
1083                 j--;                            \
1084         }                                       \
1085         if (i <= j) {                           \
1086             tmp = ref[i];                       \
1087             ref[i] = ref[j];                    \
1088             ref[j] = tmp;                       \
1089             i++;                                \
1090             j--;                                \
1091         }                                       \
1092     }                                           \
1093
1094 static void sort_one(VAPictureH264 ref[], int left, int right,
1095                      int ascending, int frame_idx)
1096 {
1097     int i = left, j = right;
1098     unsigned int key;
1099     VAPictureH264 tmp;
1100
1101     if (frame_idx) {
1102         key = ref[(left + right) / 2].frame_idx;
1103         partition(ref, frame_idx, key, ascending);
1104     } else {
1105         key = ref[(left + right) / 2].TopFieldOrderCnt;
1106         partition(ref, TopFieldOrderCnt, (signed int)key, ascending);
1107     }
1108     
1109     /* recursion */
1110     if (left < j)
1111         sort_one(ref, left, j, ascending, frame_idx);
1112     
1113     if (i < right)
1114         sort_one(ref, i, right, ascending, frame_idx);
1115 }
1116
1117 static void sort_two(VAPictureH264 ref[], int left, int right, unsigned int key, unsigned int frame_idx,
1118                      int partition_ascending, int list0_ascending, int list1_ascending)
1119 {
1120     int i = left, j = right;
1121     VAPictureH264 tmp;
1122
1123     if (frame_idx) {
1124         partition(ref, frame_idx, key, partition_ascending);
1125     } else {
1126         partition(ref, TopFieldOrderCnt, (signed int)key, partition_ascending);
1127     }
1128     
1129
1130     sort_one(ref, left, i-1, list0_ascending, frame_idx);
1131     sort_one(ref, j+1, right, list1_ascending, frame_idx);
1132 }
1133
1134 void H264EncoderImpl::update_ReferenceFrames(int frame_type)
1135 {
1136     int i;
1137     
1138     if (frame_type == FRAME_B)
1139         return;
1140
1141     CurrentCurrPic.flags = VA_PICTURE_H264_SHORT_TERM_REFERENCE;
1142     numShortTerm++;
1143     if (numShortTerm > num_ref_frames)
1144         numShortTerm = num_ref_frames;
1145     for (i=numShortTerm-1; i>0; i--)
1146         ReferenceFrames[i] = ReferenceFrames[i-1];
1147     ReferenceFrames[0] = CurrentCurrPic;
1148     
1149     current_frame_num++;
1150     if (current_frame_num > MaxFrameNum)
1151         current_frame_num = 0;
1152 }
1153
1154
1155 int H264EncoderImpl::update_RefPicList(int frame_type)
1156 {
1157     unsigned int current_poc = CurrentCurrPic.TopFieldOrderCnt;
1158     
1159     if (frame_type == FRAME_P) {
1160         memcpy(RefPicList0_P, ReferenceFrames, numShortTerm * sizeof(VAPictureH264));
1161         sort_one(RefPicList0_P, 0, numShortTerm-1, 0, 1);
1162     }
1163     
1164     if (frame_type == FRAME_B) {
1165         memcpy(RefPicList0_B, ReferenceFrames, numShortTerm * sizeof(VAPictureH264));
1166         sort_two(RefPicList0_B, 0, numShortTerm-1, current_poc, 0,
1167                  1, 0, 1);
1168
1169         memcpy(RefPicList1_B, ReferenceFrames, numShortTerm * sizeof(VAPictureH264));
1170         sort_two(RefPicList1_B, 0, numShortTerm-1, current_poc, 0,
1171                  0, 1, 0);
1172     }
1173     
1174     return 0;
1175 }
1176
1177
1178 int H264EncoderImpl::render_sequence()
1179 {
1180     VABufferID seq_param_buf, rc_param_buf, render_id[2];
1181     VAStatus va_status;
1182     VAEncMiscParameterBuffer *misc_param;
1183     VAEncMiscParameterRateControl *misc_rate_ctrl;
1184     
1185     seq_param.level_idc = 41 /*SH_LEVEL_3*/;
1186     seq_param.picture_width_in_mbs = frame_width_mbaligned / 16;
1187     seq_param.picture_height_in_mbs = frame_height_mbaligned / 16;
1188     seq_param.bits_per_second = frame_bitrate;
1189
1190     seq_param.intra_period = intra_period;
1191     seq_param.intra_idr_period = intra_idr_period;
1192     seq_param.ip_period = ip_period;
1193
1194     seq_param.max_num_ref_frames = num_ref_frames;
1195     seq_param.seq_fields.bits.frame_mbs_only_flag = 1;
1196     seq_param.time_scale = TIMEBASE * 2;
1197     seq_param.num_units_in_tick = 1; /* Tc = num_units_in_tick / scale */
1198     seq_param.seq_fields.bits.log2_max_pic_order_cnt_lsb_minus4 = Log2MaxPicOrderCntLsb - 4;
1199     seq_param.seq_fields.bits.log2_max_frame_num_minus4 = Log2MaxFrameNum - 4;;
1200     seq_param.seq_fields.bits.frame_mbs_only_flag = 1;
1201     seq_param.seq_fields.bits.chroma_format_idc = 1;
1202     seq_param.seq_fields.bits.direct_8x8_inference_flag = 1;
1203     
1204     if (frame_width != frame_width_mbaligned ||
1205         frame_height != frame_height_mbaligned) {
1206         seq_param.frame_cropping_flag = 1;
1207         seq_param.frame_crop_left_offset = 0;
1208         seq_param.frame_crop_right_offset = (frame_width_mbaligned - frame_width)/2;
1209         seq_param.frame_crop_top_offset = 0;
1210         seq_param.frame_crop_bottom_offset = (frame_height_mbaligned - frame_height)/2;
1211     }
1212     
1213     va_status = vaCreateBuffer(va_dpy, context_id,
1214                                VAEncSequenceParameterBufferType,
1215                                sizeof(seq_param), 1, &seq_param, &seq_param_buf);
1216     CHECK_VASTATUS(va_status, "vaCreateBuffer");
1217     
1218     va_status = vaCreateBuffer(va_dpy, context_id,
1219                                VAEncMiscParameterBufferType,
1220                                sizeof(VAEncMiscParameterBuffer) + sizeof(VAEncMiscParameterRateControl),
1221                                1, NULL, &rc_param_buf);
1222     CHECK_VASTATUS(va_status, "vaCreateBuffer");
1223     
1224     vaMapBuffer(va_dpy, rc_param_buf, (void **)&misc_param);
1225     misc_param->type = VAEncMiscParameterTypeRateControl;
1226     misc_rate_ctrl = (VAEncMiscParameterRateControl *)misc_param->data;
1227     memset(misc_rate_ctrl, 0, sizeof(*misc_rate_ctrl));
1228     misc_rate_ctrl->bits_per_second = frame_bitrate;
1229     misc_rate_ctrl->target_percentage = 66;
1230     misc_rate_ctrl->window_size = 1000;
1231     misc_rate_ctrl->initial_qp = initial_qp;
1232     misc_rate_ctrl->min_qp = minimal_qp;
1233     misc_rate_ctrl->basic_unit_size = 0;
1234     vaUnmapBuffer(va_dpy, rc_param_buf);
1235
1236     render_id[0] = seq_param_buf;
1237     render_id[1] = rc_param_buf;
1238     
1239     render_picture_and_delete(va_dpy, context_id, &render_id[0], 2);
1240     
1241     return 0;
1242 }
1243
1244 static int calc_poc(int pic_order_cnt_lsb, int frame_type)
1245 {
1246     static int PicOrderCntMsb_ref = 0, pic_order_cnt_lsb_ref = 0;
1247     int prevPicOrderCntMsb, prevPicOrderCntLsb;
1248     int PicOrderCntMsb, TopFieldOrderCnt;
1249     
1250     if (frame_type == FRAME_IDR)
1251         prevPicOrderCntMsb = prevPicOrderCntLsb = 0;
1252     else {
1253         prevPicOrderCntMsb = PicOrderCntMsb_ref;
1254         prevPicOrderCntLsb = pic_order_cnt_lsb_ref;
1255     }
1256     
1257     if ((pic_order_cnt_lsb < prevPicOrderCntLsb) &&
1258         ((prevPicOrderCntLsb - pic_order_cnt_lsb) >= (int)(MaxPicOrderCntLsb / 2)))
1259         PicOrderCntMsb = prevPicOrderCntMsb + MaxPicOrderCntLsb;
1260     else if ((pic_order_cnt_lsb > prevPicOrderCntLsb) &&
1261              ((pic_order_cnt_lsb - prevPicOrderCntLsb) > (int)(MaxPicOrderCntLsb / 2)))
1262         PicOrderCntMsb = prevPicOrderCntMsb - MaxPicOrderCntLsb;
1263     else
1264         PicOrderCntMsb = prevPicOrderCntMsb;
1265     
1266     TopFieldOrderCnt = PicOrderCntMsb + pic_order_cnt_lsb;
1267
1268     if (frame_type != FRAME_B) {
1269         PicOrderCntMsb_ref = PicOrderCntMsb;
1270         pic_order_cnt_lsb_ref = pic_order_cnt_lsb;
1271     }
1272     
1273     return TopFieldOrderCnt;
1274 }
1275
1276 int H264EncoderImpl::render_picture(int frame_type, int display_frame_num, int gop_start_display_frame_num)
1277 {
1278     VABufferID pic_param_buf;
1279     VAStatus va_status;
1280     int i = 0;
1281
1282     pic_param.CurrPic.picture_id = gl_surfaces[display_frame_num % SURFACE_NUM].ref_surface;
1283     pic_param.CurrPic.frame_idx = current_frame_num;
1284     pic_param.CurrPic.flags = 0;
1285     pic_param.CurrPic.TopFieldOrderCnt = calc_poc((display_frame_num - gop_start_display_frame_num) % MaxPicOrderCntLsb, frame_type);
1286     pic_param.CurrPic.BottomFieldOrderCnt = pic_param.CurrPic.TopFieldOrderCnt;
1287     CurrentCurrPic = pic_param.CurrPic;
1288
1289     memcpy(pic_param.ReferenceFrames, ReferenceFrames, numShortTerm*sizeof(VAPictureH264));
1290     for (i = numShortTerm; i < SURFACE_NUM; i++) {
1291         pic_param.ReferenceFrames[i].picture_id = VA_INVALID_SURFACE;
1292         pic_param.ReferenceFrames[i].flags = VA_PICTURE_H264_INVALID;
1293     }
1294     
1295     pic_param.pic_fields.bits.idr_pic_flag = (frame_type == FRAME_IDR);
1296     pic_param.pic_fields.bits.reference_pic_flag = (frame_type != FRAME_B);
1297     pic_param.pic_fields.bits.entropy_coding_mode_flag = h264_entropy_mode;
1298     pic_param.pic_fields.bits.deblocking_filter_control_present_flag = 1;
1299     pic_param.frame_num = current_frame_num;
1300     pic_param.coded_buf = gl_surfaces[display_frame_num % SURFACE_NUM].coded_buf;
1301     pic_param.last_picture = false;  // FIXME
1302     pic_param.pic_init_qp = initial_qp;
1303
1304     va_status = vaCreateBuffer(va_dpy, context_id, VAEncPictureParameterBufferType,
1305                                sizeof(pic_param), 1, &pic_param, &pic_param_buf);
1306     CHECK_VASTATUS(va_status, "vaCreateBuffer");
1307
1308     render_picture_and_delete(va_dpy, context_id, &pic_param_buf, 1);
1309
1310     return 0;
1311 }
1312
1313 int H264EncoderImpl::render_packedsequence()
1314 {
1315     VAEncPackedHeaderParameterBuffer packedheader_param_buffer;
1316     VABufferID packedseq_para_bufid, packedseq_data_bufid, render_id[2];
1317     unsigned int length_in_bits;
1318     unsigned char *packedseq_buffer = NULL;
1319     VAStatus va_status;
1320
1321     length_in_bits = build_packed_seq_buffer(&packedseq_buffer); 
1322     
1323     packedheader_param_buffer.type = VAEncPackedHeaderSequence;
1324     
1325     packedheader_param_buffer.bit_length = length_in_bits; /*length_in_bits*/
1326     packedheader_param_buffer.has_emulation_bytes = 0;
1327     va_status = vaCreateBuffer(va_dpy,
1328                                context_id,
1329                                VAEncPackedHeaderParameterBufferType,
1330                                sizeof(packedheader_param_buffer), 1, &packedheader_param_buffer,
1331                                &packedseq_para_bufid);
1332     CHECK_VASTATUS(va_status, "vaCreateBuffer");
1333
1334     va_status = vaCreateBuffer(va_dpy,
1335                                context_id,
1336                                VAEncPackedHeaderDataBufferType,
1337                                (length_in_bits + 7) / 8, 1, packedseq_buffer,
1338                                &packedseq_data_bufid);
1339     CHECK_VASTATUS(va_status, "vaCreateBuffer");
1340
1341     render_id[0] = packedseq_para_bufid;
1342     render_id[1] = packedseq_data_bufid;
1343     render_picture_and_delete(va_dpy, context_id, render_id, 2);
1344
1345     free(packedseq_buffer);
1346     
1347     return 0;
1348 }
1349
1350
1351 int H264EncoderImpl::render_packedpicture()
1352 {
1353     VAEncPackedHeaderParameterBuffer packedheader_param_buffer;
1354     VABufferID packedpic_para_bufid, packedpic_data_bufid, render_id[2];
1355     unsigned int length_in_bits;
1356     unsigned char *packedpic_buffer = NULL;
1357     VAStatus va_status;
1358
1359     length_in_bits = build_packed_pic_buffer(&packedpic_buffer); 
1360     packedheader_param_buffer.type = VAEncPackedHeaderPicture;
1361     packedheader_param_buffer.bit_length = length_in_bits;
1362     packedheader_param_buffer.has_emulation_bytes = 0;
1363
1364     va_status = vaCreateBuffer(va_dpy,
1365                                context_id,
1366                                VAEncPackedHeaderParameterBufferType,
1367                                sizeof(packedheader_param_buffer), 1, &packedheader_param_buffer,
1368                                &packedpic_para_bufid);
1369     CHECK_VASTATUS(va_status, "vaCreateBuffer");
1370
1371     va_status = vaCreateBuffer(va_dpy,
1372                                context_id,
1373                                VAEncPackedHeaderDataBufferType,
1374                                (length_in_bits + 7) / 8, 1, packedpic_buffer,
1375                                &packedpic_data_bufid);
1376     CHECK_VASTATUS(va_status, "vaCreateBuffer");
1377
1378     render_id[0] = packedpic_para_bufid;
1379     render_id[1] = packedpic_data_bufid;
1380     render_picture_and_delete(va_dpy, context_id, render_id, 2);
1381
1382     free(packedpic_buffer);
1383     
1384     return 0;
1385 }
1386
1387 void H264EncoderImpl::render_packedslice()
1388 {
1389     VAEncPackedHeaderParameterBuffer packedheader_param_buffer;
1390     VABufferID packedslice_para_bufid, packedslice_data_bufid, render_id[2];
1391     unsigned int length_in_bits;
1392     unsigned char *packedslice_buffer = NULL;
1393     VAStatus va_status;
1394
1395     length_in_bits = build_packed_slice_buffer(&packedslice_buffer);
1396     packedheader_param_buffer.type = VAEncPackedHeaderSlice;
1397     packedheader_param_buffer.bit_length = length_in_bits;
1398     packedheader_param_buffer.has_emulation_bytes = 0;
1399
1400     va_status = vaCreateBuffer(va_dpy,
1401                                context_id,
1402                                VAEncPackedHeaderParameterBufferType,
1403                                sizeof(packedheader_param_buffer), 1, &packedheader_param_buffer,
1404                                &packedslice_para_bufid);
1405     CHECK_VASTATUS(va_status, "vaCreateBuffer");
1406
1407     va_status = vaCreateBuffer(va_dpy,
1408                                context_id,
1409                                VAEncPackedHeaderDataBufferType,
1410                                (length_in_bits + 7) / 8, 1, packedslice_buffer,
1411                                &packedslice_data_bufid);
1412     CHECK_VASTATUS(va_status, "vaCreateBuffer");
1413
1414     render_id[0] = packedslice_para_bufid;
1415     render_id[1] = packedslice_data_bufid;
1416     render_picture_and_delete(va_dpy, context_id, render_id, 2);
1417
1418     free(packedslice_buffer);
1419 }
1420
1421 int H264EncoderImpl::render_slice(int encoding_frame_num, int display_frame_num, int gop_start_display_frame_num, int frame_type)
1422 {
1423     VABufferID slice_param_buf;
1424     VAStatus va_status;
1425     int i;
1426
1427     update_RefPicList(frame_type);
1428     
1429     /* one frame, one slice */
1430     slice_param.macroblock_address = 0;
1431     slice_param.num_macroblocks = frame_width_mbaligned * frame_height_mbaligned/(16*16); /* Measured by MB */
1432     slice_param.slice_type = (frame_type == FRAME_IDR)?2:frame_type;
1433     if (frame_type == FRAME_IDR) {
1434         if (encoding_frame_num != 0)
1435             ++slice_param.idr_pic_id;
1436     } else if (frame_type == FRAME_P) {
1437         int refpiclist0_max = h264_maxref & 0xffff;
1438         memcpy(slice_param.RefPicList0, RefPicList0_P, refpiclist0_max*sizeof(VAPictureH264));
1439
1440         for (i = refpiclist0_max; i < 32; i++) {
1441             slice_param.RefPicList0[i].picture_id = VA_INVALID_SURFACE;
1442             slice_param.RefPicList0[i].flags = VA_PICTURE_H264_INVALID;
1443         }
1444     } else if (frame_type == FRAME_B) {
1445         int refpiclist0_max = h264_maxref & 0xffff;
1446         int refpiclist1_max = (h264_maxref >> 16) & 0xffff;
1447
1448         memcpy(slice_param.RefPicList0, RefPicList0_B, refpiclist0_max*sizeof(VAPictureH264));
1449         for (i = refpiclist0_max; i < 32; i++) {
1450             slice_param.RefPicList0[i].picture_id = VA_INVALID_SURFACE;
1451             slice_param.RefPicList0[i].flags = VA_PICTURE_H264_INVALID;
1452         }
1453
1454         memcpy(slice_param.RefPicList1, RefPicList1_B, refpiclist1_max*sizeof(VAPictureH264));
1455         for (i = refpiclist1_max; i < 32; i++) {
1456             slice_param.RefPicList1[i].picture_id = VA_INVALID_SURFACE;
1457             slice_param.RefPicList1[i].flags = VA_PICTURE_H264_INVALID;
1458         }
1459     }
1460
1461     slice_param.slice_alpha_c0_offset_div2 = 0;
1462     slice_param.slice_beta_offset_div2 = 0;
1463     slice_param.direct_spatial_mv_pred_flag = 1;
1464     slice_param.pic_order_cnt_lsb = (display_frame_num - gop_start_display_frame_num) % MaxPicOrderCntLsb;
1465     
1466
1467     if (h264_packedheader &&
1468         config_attrib[enc_packed_header_idx].value & VA_ENC_PACKED_HEADER_SLICE)
1469         render_packedslice();
1470
1471     va_status = vaCreateBuffer(va_dpy, context_id, VAEncSliceParameterBufferType,
1472                                sizeof(slice_param), 1, &slice_param, &slice_param_buf);
1473     CHECK_VASTATUS(va_status, "vaCreateBuffer");
1474
1475     render_picture_and_delete(va_dpy, context_id, &slice_param_buf, 1);
1476
1477     return 0;
1478 }
1479
1480
1481
1482 void H264EncoderImpl::save_codeddata(storage_task task)
1483 {    
1484     VACodedBufferSegment *buf_list = NULL;
1485     VAStatus va_status;
1486
1487     string data;
1488
1489     const int64_t global_delay = (ip_period - 1) * (TIMEBASE / MAX_FPS);  // So we never get negative dts.
1490
1491     va_status = vaMapBuffer(va_dpy, gl_surfaces[task.display_order % SURFACE_NUM].coded_buf, (void **)(&buf_list));
1492     CHECK_VASTATUS(va_status, "vaMapBuffer");
1493     while (buf_list != NULL) {
1494         data.append(reinterpret_cast<const char *>(buf_list->buf), buf_list->size);
1495         buf_list = (VACodedBufferSegment *) buf_list->next;
1496     }
1497     vaUnmapBuffer(va_dpy, gl_surfaces[task.display_order % SURFACE_NUM].coded_buf);
1498
1499     {
1500         // Add video.
1501         AVPacket pkt;
1502         memset(&pkt, 0, sizeof(pkt));
1503         pkt.buf = nullptr;
1504         pkt.data = reinterpret_cast<uint8_t *>(&data[0]);
1505         pkt.size = data.size();
1506         pkt.stream_index = 0;
1507         if (task.frame_type == FRAME_IDR || task.frame_type == FRAME_I) {
1508             pkt.flags = AV_PKT_FLAG_KEY;
1509         } else {
1510             pkt.flags = 0;
1511         }
1512         //pkt.duration = 1;
1513         httpd->add_packet(pkt, task.pts + global_delay, task.dts + global_delay);
1514     }
1515     // Encode and add all audio frames up to and including the pts of this video frame.
1516     for ( ;; ) {
1517         int64_t audio_pts;
1518         vector<float> audio;
1519         {
1520              unique_lock<mutex> lock(frame_queue_mutex);
1521              frame_queue_nonempty.wait(lock, [this]{ return storage_thread_should_quit || !pending_audio_frames.empty(); });
1522              if (storage_thread_should_quit && pending_audio_frames.empty()) return;
1523              auto it = pending_audio_frames.begin();
1524              if (it->first > task.pts) break;
1525              audio_pts = it->first;
1526              audio = move(it->second);
1527              pending_audio_frames.erase(it); 
1528         }
1529
1530         AVFrame *frame = avcodec_alloc_frame();
1531         frame->nb_samples = audio.size() / 2;
1532         frame->format = AV_SAMPLE_FMT_S32;
1533         frame->channel_layout = AV_CH_LAYOUT_STEREO;
1534
1535         unique_ptr<int32_t[]> int_samples(new int32_t[audio.size()]);
1536         int ret = avcodec_fill_audio_frame(frame, 2, AV_SAMPLE_FMT_S32, (const uint8_t*)int_samples.get(), audio.size() * sizeof(int32_t), 1);
1537         if (ret < 0) {
1538             fprintf(stderr, "avcodec_fill_audio_frame() failed with %d\n", ret);
1539             exit(1);
1540         }
1541         for (int i = 0; i < frame->nb_samples * 2; ++i) {
1542             if (audio[i] >= 1.0f) {
1543                 int_samples[i] = 2147483647;
1544             } else if (audio[i] <= -1.0f) {
1545                 int_samples[i] = -2147483647;
1546             } else {
1547                 int_samples[i] = lrintf(audio[i] * 2147483647.0f);
1548             }
1549         }
1550
1551         AVPacket pkt;
1552         av_init_packet(&pkt);
1553         pkt.data = nullptr;
1554         pkt.size = 0;
1555         int got_output;
1556         avcodec_encode_audio2(context_audio, &pkt, frame, &got_output);
1557         if (got_output) {
1558             pkt.stream_index = 1;
1559             httpd->add_packet(pkt, audio_pts + global_delay, audio_pts + global_delay);
1560         }
1561         // TODO: Delayed frames.
1562         avcodec_free_frame(&frame);
1563         av_free_packet(&pkt);
1564         if (audio_pts == task.pts) break;
1565     }
1566
1567 #if 0
1568     printf("\r      "); /* return back to startpoint */
1569     switch (encode_order % 4) {
1570         case 0:
1571             printf("|");
1572             break;
1573         case 1:
1574             printf("/");
1575             break;
1576         case 2:
1577             printf("-");
1578             break;
1579         case 3:
1580             printf("\\");
1581             break;
1582     }
1583     printf("%08lld", encode_order);
1584 #endif
1585 }
1586
1587
1588 // this is weird. but it seems to put a new frame onto the queue
1589 void H264EncoderImpl::storage_task_enqueue(storage_task task)
1590 {
1591         unique_lock<mutex> lock(storage_task_queue_mutex);
1592         storage_task_queue.push(move(task));
1593         srcsurface_status[task.display_order % SURFACE_NUM] = SRC_SURFACE_IN_ENCODING;
1594         storage_task_queue_changed.notify_all();
1595 }
1596
1597 void H264EncoderImpl::storage_task_thread()
1598 {
1599         for ( ;; ) {
1600                 storage_task current;
1601                 {
1602                         // wait until there's an encoded frame  
1603                         unique_lock<mutex> lock(storage_task_queue_mutex);
1604                         storage_task_queue_changed.wait(lock, [this]{ return storage_thread_should_quit || !storage_task_queue.empty(); });
1605                         if (storage_thread_should_quit && storage_task_queue.empty()) return;
1606                         current = move(storage_task_queue.front());
1607                         storage_task_queue.pop();
1608                 }
1609
1610                 VAStatus va_status;
1611            
1612                 // waits for data, then saves it to disk.
1613                 va_status = vaSyncSurface(va_dpy, gl_surfaces[current.display_order % SURFACE_NUM].src_surface);
1614                 CHECK_VASTATUS(va_status, "vaSyncSurface");
1615                 save_codeddata(move(current));
1616
1617                 {
1618                         unique_lock<mutex> lock(storage_task_queue_mutex);
1619                         srcsurface_status[current.display_order % SURFACE_NUM] = SRC_SURFACE_FREE;
1620                         storage_task_queue_changed.notify_all();
1621                 }
1622         }
1623 }
1624
1625 int H264EncoderImpl::release_encode()
1626 {
1627     int i;
1628     
1629     for (i = 0; i < SURFACE_NUM; i++) {
1630         vaDestroyBuffer(va_dpy, gl_surfaces[i].coded_buf);
1631         vaDestroySurfaces(va_dpy, &gl_surfaces[i].src_surface, 1);
1632         vaDestroySurfaces(va_dpy, &gl_surfaces[i].ref_surface, 1);
1633     }
1634     
1635     vaDestroyContext(va_dpy, context_id);
1636     vaDestroyConfig(va_dpy, config_id);
1637
1638     return 0;
1639 }
1640
1641 int H264EncoderImpl::deinit_va()
1642
1643     vaTerminate(va_dpy);
1644
1645     va_close_display(va_dpy);
1646
1647     return 0;
1648 }
1649
1650
1651 H264EncoderImpl::H264EncoderImpl(QSurface *surface, int width, int height, HTTPD *httpd)
1652         : current_storage_frame(0), surface(surface), httpd(httpd)
1653 {
1654         AVCodec *codec_audio = avcodec_find_encoder(AUDIO_OUTPUT_CODEC);
1655         context_audio = avcodec_alloc_context3(codec_audio);
1656         context_audio->bit_rate = AUDIO_OUTPUT_BIT_RATE;
1657         context_audio->sample_rate = OUTPUT_FREQUENCY;
1658         context_audio->sample_fmt = AUDIO_OUTPUT_SAMPLE_FMT;
1659         context_audio->channels = 2;
1660         context_audio->channel_layout = AV_CH_LAYOUT_STEREO;
1661         context_audio->time_base = AVRational{1, TIMEBASE};
1662         if (avcodec_open2(context_audio, codec_audio, NULL) < 0) {
1663                 fprintf(stderr, "Could not open codec\n");
1664                 exit(1);
1665         }
1666
1667         frame_width = width;
1668         frame_height = height;
1669         frame_width_mbaligned = (frame_width + 15) & (~15);
1670         frame_height_mbaligned = (frame_height + 15) & (~15);
1671
1672         //print_input();
1673
1674         init_va();
1675         setup_encode();
1676
1677         // No frames are ready yet.
1678         memset(srcsurface_status, SRC_SURFACE_FREE, sizeof(srcsurface_status));
1679             
1680         memset(&seq_param, 0, sizeof(seq_param));
1681         memset(&pic_param, 0, sizeof(pic_param));
1682         memset(&slice_param, 0, sizeof(slice_param));
1683
1684         storage_thread = thread(&H264EncoderImpl::storage_task_thread, this);
1685
1686         encode_thread = thread([this]{
1687                 //SDL_GL_MakeCurrent(window, context);
1688                 QOpenGLContext *context = create_context(this->surface);
1689                 eglBindAPI(EGL_OPENGL_API);
1690                 if (!make_current(context, this->surface)) {
1691                         printf("display=%p surface=%p context=%p curr=%p err=%d\n", eglGetCurrentDisplay(), this->surface, context, eglGetCurrentContext(),
1692                                 eglGetError());
1693                         exit(1);
1694                 }
1695                 encode_thread_func();
1696         });
1697 }
1698
1699 H264EncoderImpl::~H264EncoderImpl()
1700 {
1701         {
1702                 unique_lock<mutex> lock(frame_queue_mutex);
1703                 encode_thread_should_quit = true;
1704                 frame_queue_nonempty.notify_all();
1705         }
1706         encode_thread.join();
1707         {
1708                 unique_lock<mutex> lock(storage_task_queue_mutex);
1709                 storage_thread_should_quit = true;
1710                 frame_queue_nonempty.notify_all();
1711                 storage_task_queue_changed.notify_all();
1712         }
1713         storage_thread.join();
1714
1715         release_encode();
1716         deinit_va();
1717 }
1718
1719 bool H264EncoderImpl::begin_frame(GLuint *y_tex, GLuint *cbcr_tex)
1720 {
1721         {
1722                 // Wait until this frame slot is done encoding.
1723                 unique_lock<mutex> lock(storage_task_queue_mutex);
1724                 storage_task_queue_changed.wait(lock, [this]{ return storage_thread_should_quit || (srcsurface_status[current_storage_frame % SURFACE_NUM] == SRC_SURFACE_FREE); });
1725                 if (storage_thread_should_quit) return false;
1726         }
1727
1728         //*fbo = fbos[current_storage_frame % SURFACE_NUM];
1729         GLSurface *surf = &gl_surfaces[current_storage_frame % SURFACE_NUM];
1730         *y_tex = surf->y_tex;
1731         *cbcr_tex = surf->cbcr_tex;
1732
1733         VASurfaceID surface = surf->src_surface;
1734         VAStatus va_status = vaDeriveImage(va_dpy, surface, &surf->surface_image);
1735         CHECK_VASTATUS(va_status, "vaDeriveImage");
1736
1737         VABufferInfo buf_info;
1738         buf_info.mem_type = VA_SURFACE_ATTRIB_MEM_TYPE_DRM_PRIME;  // or VA_SURFACE_ATTRIB_MEM_TYPE_KERNEL_DRM?
1739         va_status = vaAcquireBufferHandle(va_dpy, surf->surface_image.buf, &buf_info);
1740         CHECK_VASTATUS(va_status, "vaAcquireBufferHandle");
1741
1742         // Create Y image.
1743         surf->y_egl_image = EGL_NO_IMAGE_KHR;
1744         EGLint y_attribs[] = {
1745                 EGL_WIDTH, frame_width,
1746                 EGL_HEIGHT, frame_height,
1747                 EGL_LINUX_DRM_FOURCC_EXT, fourcc_code('R', '8', ' ', ' '),
1748                 EGL_DMA_BUF_PLANE0_FD_EXT, EGLint(buf_info.handle),
1749                 EGL_DMA_BUF_PLANE0_OFFSET_EXT, EGLint(surf->surface_image.offsets[0]),
1750                 EGL_DMA_BUF_PLANE0_PITCH_EXT, EGLint(surf->surface_image.pitches[0]),
1751                 EGL_NONE
1752         };
1753
1754         surf->y_egl_image = eglCreateImageKHR(eglGetCurrentDisplay(), EGL_NO_CONTEXT, EGL_LINUX_DMA_BUF_EXT, NULL, y_attribs);
1755         assert(surf->y_egl_image != EGL_NO_IMAGE_KHR);
1756
1757         // Associate Y image to a texture.
1758         glBindTexture(GL_TEXTURE_2D, *y_tex);
1759         glEGLImageTargetTexture2DOES(GL_TEXTURE_2D, surf->y_egl_image);
1760
1761         // Create CbCr image.
1762         surf->cbcr_egl_image = EGL_NO_IMAGE_KHR;
1763         EGLint cbcr_attribs[] = {
1764                 EGL_WIDTH, frame_width,
1765                 EGL_HEIGHT, frame_height,
1766                 EGL_LINUX_DRM_FOURCC_EXT, fourcc_code('G', 'R', '8', '8'),
1767                 EGL_DMA_BUF_PLANE0_FD_EXT, EGLint(buf_info.handle),
1768                 EGL_DMA_BUF_PLANE0_OFFSET_EXT, EGLint(surf->surface_image.offsets[1]),
1769                 EGL_DMA_BUF_PLANE0_PITCH_EXT, EGLint(surf->surface_image.pitches[1]),
1770                 EGL_NONE
1771         };
1772
1773         surf->cbcr_egl_image = eglCreateImageKHR(eglGetCurrentDisplay(), EGL_NO_CONTEXT, EGL_LINUX_DMA_BUF_EXT, NULL, cbcr_attribs);
1774         assert(surf->cbcr_egl_image != EGL_NO_IMAGE_KHR);
1775
1776         // Associate CbCr image to a texture.
1777         glBindTexture(GL_TEXTURE_2D, *cbcr_tex);
1778         glEGLImageTargetTexture2DOES(GL_TEXTURE_2D, surf->cbcr_egl_image);
1779
1780         return true;
1781 }
1782
1783 void H264EncoderImpl::add_audio(int64_t pts, vector<float> audio)
1784 {
1785         {
1786                 unique_lock<mutex> lock(frame_queue_mutex);
1787                 pending_audio_frames[pts] = move(audio);
1788         }
1789         frame_queue_nonempty.notify_all();
1790 }
1791
1792 void H264EncoderImpl::end_frame(RefCountedGLsync fence, int64_t pts, const vector<RefCountedFrame> &input_frames)
1793 {
1794         {
1795                 unique_lock<mutex> lock(frame_queue_mutex);
1796                 pending_video_frames[current_storage_frame] = PendingFrame{ fence, input_frames, pts };
1797                 ++current_storage_frame;
1798         }
1799         frame_queue_nonempty.notify_all();
1800 }
1801
1802 void H264EncoderImpl::encode_thread_func()
1803 {
1804         int64_t last_dts = -1;
1805         int gop_start_display_frame_num = 0;
1806         for (int encoding_frame_num = 0; ; ++encoding_frame_num) {
1807                 PendingFrame frame;
1808                 int pts_lag;
1809                 int frame_type, display_frame_num;
1810                 encoding2display_order(encoding_frame_num, intra_period, intra_idr_period, ip_period,
1811                                        &display_frame_num, &frame_type, &pts_lag);
1812                 if (frame_type == FRAME_IDR) {
1813                         numShortTerm = 0;
1814                         current_frame_num = 0;
1815                         gop_start_display_frame_num = display_frame_num;
1816                 }
1817
1818                 {
1819                         unique_lock<mutex> lock(frame_queue_mutex);
1820                         frame_queue_nonempty.wait(lock, [this, display_frame_num]{
1821                                 return encode_thread_should_quit || pending_video_frames.count(display_frame_num) != 0;
1822                         });
1823                         if (encode_thread_should_quit && pending_video_frames.count(display_frame_num) == 0) {
1824                                 // We have queued frames that were supposed to be B-frames,
1825                                 // but will be no P-frame to encode them against. Encode them all
1826                                 // as P-frames instead. Note that this happens under the mutex,
1827                                 // but nobody else uses it at this point, since we're shutting down,
1828                                 // so there's no contention.
1829                                 encode_remaining_frames_as_p(encoding_frame_num, gop_start_display_frame_num, last_dts);
1830                                 return;
1831                         } else {
1832                                 frame = move(pending_video_frames[display_frame_num]);
1833                                 pending_video_frames.erase(display_frame_num);
1834                         }
1835                 }
1836
1837                 // Determine the dts of this frame.
1838                 int64_t dts;
1839                 if (pts_lag == -1) {
1840                         assert(last_dts != -1);
1841                         dts = last_dts + (TIMEBASE / MAX_FPS);
1842                 } else {
1843                         dts = frame.pts - pts_lag;
1844                 }
1845                 last_dts = dts;
1846
1847                 encode_frame(frame, encoding_frame_num, display_frame_num, gop_start_display_frame_num, frame_type, frame.pts, dts);
1848         }
1849 }
1850
1851 void H264EncoderImpl::encode_remaining_frames_as_p(int encoding_frame_num, int gop_start_display_frame_num, int64_t last_dts)
1852 {
1853         if (pending_video_frames.empty()) {
1854                 return;
1855         }
1856
1857         for (auto &pending_frame : pending_video_frames) {
1858                 int display_frame_num = pending_frame.first;
1859                 assert(display_frame_num > 0);
1860                 PendingFrame frame = move(pending_frame.second);
1861                 int64_t dts = last_dts + (TIMEBASE / MAX_FPS);
1862                 printf("Finalizing encode: Encoding leftover frame %d as P-frame instead of B-frame.\n", display_frame_num);
1863                 encode_frame(frame, encoding_frame_num++, display_frame_num, gop_start_display_frame_num, FRAME_P, frame.pts, dts);
1864                 last_dts = dts;
1865         }
1866 }
1867
1868 void H264EncoderImpl::encode_frame(H264EncoderImpl::PendingFrame frame, int encoding_frame_num, int display_frame_num, int gop_start_display_frame_num,
1869                                    int frame_type, int64_t pts, int64_t dts)
1870 {
1871         // Wait for the GPU to be done with the frame.
1872         glClientWaitSync(frame.fence.get(), 0, 0);
1873
1874         // Release back any input frames we needed to render this frame.
1875         frame.input_frames.clear();
1876
1877         // Unmap the image.
1878         GLSurface *surf = &gl_surfaces[display_frame_num % SURFACE_NUM];
1879         eglDestroyImageKHR(eglGetCurrentDisplay(), surf->y_egl_image);
1880         eglDestroyImageKHR(eglGetCurrentDisplay(), surf->cbcr_egl_image);
1881         VAStatus va_status = vaReleaseBufferHandle(va_dpy, surf->surface_image.buf);
1882         CHECK_VASTATUS(va_status, "vaReleaseBufferHandle");
1883         va_status = vaDestroyImage(va_dpy, surf->surface_image.image_id);
1884         CHECK_VASTATUS(va_status, "vaDestroyImage");
1885
1886         VASurfaceID surface = surf->src_surface;
1887
1888         // Schedule the frame for encoding.
1889         va_status = vaBeginPicture(va_dpy, context_id, surface);
1890         CHECK_VASTATUS(va_status, "vaBeginPicture");
1891
1892         if (frame_type == FRAME_IDR) {
1893                 render_sequence();
1894                 render_picture(frame_type, display_frame_num, gop_start_display_frame_num);
1895                 if (h264_packedheader) {
1896                         render_packedsequence();
1897                         render_packedpicture();
1898                 }
1899         } else {
1900                 //render_sequence();
1901                 render_picture(frame_type, display_frame_num, gop_start_display_frame_num);
1902         }
1903         render_slice(encoding_frame_num, display_frame_num, gop_start_display_frame_num, frame_type);
1904
1905         va_status = vaEndPicture(va_dpy, context_id);
1906         CHECK_VASTATUS(va_status, "vaEndPicture");
1907
1908         // so now the data is done encoding (well, async job kicked off)...
1909         // we send that to the storage thread
1910         storage_task tmp;
1911         tmp.display_order = display_frame_num;
1912         tmp.frame_type = frame_type;
1913         tmp.pts = pts;
1914         tmp.dts = dts;
1915         storage_task_enqueue(move(tmp));
1916
1917         update_ReferenceFrames(frame_type);
1918 }
1919
1920 // Proxy object.
1921 H264Encoder::H264Encoder(QSurface *surface, int width, int height, HTTPD *httpd)
1922         : impl(new H264EncoderImpl(surface, width, height, httpd)) {}
1923
1924 // Must be defined here because unique_ptr<> destructor needs to know the impl.
1925 H264Encoder::~H264Encoder() {}
1926
1927 void H264Encoder::add_audio(int64_t pts, std::vector<float> audio)
1928 {
1929         impl->add_audio(pts, audio);
1930 }
1931
1932 bool H264Encoder::begin_frame(GLuint *y_tex, GLuint *cbcr_tex)
1933 {
1934         return impl->begin_frame(y_tex, cbcr_tex);
1935 }
1936
1937 void H264Encoder::end_frame(RefCountedGLsync fence, int64_t pts, const std::vector<RefCountedFrame> &input_frames)
1938 {
1939         impl->end_frame(fence, pts, input_frames);
1940 }
1941
1942 // Real class.