1
2
3
4
5
6
7
8
9
10
11
12
13
14
15#include <assert.h>
16#include <math.h>
17#include <stdio.h>
18#include <stdlib.h>
19#include <string.h>
20
21#include "./vpx_config.h"
22#include "./y4minput.h"
23#include "../vpx_ports/vpx_timer.h"
26#include "vpx_ports/bitops.h"
27
28#include "../tools_common.h"
29#include "../video_writer.h"
30
31#define ROI_MAP 0
32
33#define zero(Dest) memset(&(Dest), 0, sizeof(Dest))
34
35void usage_exit(void) { exit(EXIT_FAILURE); }
36
37
38enum denoiserStateVp8 {
39 kVp8DenoiserOff,
40 kVp8DenoiserOnYOnly,
41 kVp8DenoiserOnYUV,
42 kVp8DenoiserOnYUVAggressive,
43 kVp8DenoiserOnAdaptive
44};
45
46
47enum denoiserStateVp9 {
48 kVp9DenoiserOff,
49 kVp9DenoiserOnYOnly,
50
51 kVp9DenoiserOnYTwoSpatialLayers
52};
53
54static int mode_to_num_layers[13] = { 1, 2, 2, 3, 3, 3, 3, 5, 2, 3, 3, 3, 3 };
55
56
57struct RateControlMetrics {
58
60
62
64
66
68
70
72
74
75
76 double avg_st_encoding_bitrate;
77
78 double variance_st_encoding_bitrate;
79
80 int window_size;
81
82 int window_count;
84};
85
86
87
88
89
90
91
92static void set_rate_control_metrics(struct RateControlMetrics *rc,
94 int i = 0;
95
96
100 rc->layer_pfb[0] =
101 1000.0 * rc->layer_target_bitrate[0] / rc->layer_framerate[0];
102 for (i = 0; i < ts_number_layers; ++i) {
103 if (i > 0) {
105 rc->layer_pfb[i] =
106 1000.0 *
107 (rc->layer_target_bitrate[i] - rc->layer_target_bitrate[i - 1]) /
108 (rc->layer_framerate[i] - rc->layer_framerate[i - 1]);
109 }
110 rc->layer_input_frames[i] = 0;
111 rc->layer_enc_frames[i] = 0;
112 rc->layer_tot_enc_frames[i] = 0;
113 rc->layer_encoding_bitrate[i] = 0.0;
114 rc->layer_avg_frame_size[i] = 0.0;
115 rc->layer_avg_rate_mismatch[i] = 0.0;
116 }
117 rc->window_count = 0;
118 rc->window_size = 15;
119 rc->avg_st_encoding_bitrate = 0.0;
120 rc->variance_st_encoding_bitrate = 0.0;
121
122
124}
125
126static void printout_rate_control_summary(struct RateControlMetrics *rc,
128 int frame_cnt) {
129 unsigned int i = 0;
130 int tot_num_frames = 0;
131 double perc_fluctuation = 0.0;
132 printf("Total number of processed frames: %d\n\n", frame_cnt - 1);
133 printf("Rate control layer stats for %d layer(s):\n\n",
136 const int num_dropped =
137 (i > 0) ? (rc->layer_input_frames[i] - rc->layer_enc_frames[i])
138 : (rc->layer_input_frames[i] - rc->layer_enc_frames[i] - 1);
139 tot_num_frames += rc->layer_input_frames[i];
140 rc->layer_encoding_bitrate[i] = 0.001 * rc->layer_framerate[i] *
141 rc->layer_encoding_bitrate[i] /
142 tot_num_frames;
143 rc->layer_avg_frame_size[i] =
144 rc->layer_avg_frame_size[i] / rc->layer_enc_frames[i];
145 rc->layer_avg_rate_mismatch[i] =
146 100.0 * rc->layer_avg_rate_mismatch[i] / rc->layer_enc_frames[i];
147 printf("For layer#: %d \n", i);
148 printf("Bitrate (target vs actual): %d %f \n", rc->layer_target_bitrate[i],
149 rc->layer_encoding_bitrate[i]);
150 printf("Average frame size (target vs actual): %f %f \n", rc->layer_pfb[i],
151 rc->layer_avg_frame_size[i]);
152 printf("Average rate_mismatch: %f \n", rc->layer_avg_rate_mismatch[i]);
153 printf(
154 "Number of input frames, encoded (non-key) frames, "
155 "and perc dropped frames: %d %d %f \n",
156 rc->layer_input_frames[i], rc->layer_enc_frames[i],
157 100.0 * num_dropped / rc->layer_input_frames[i]);
158 printf("\n");
159 }
160 rc->avg_st_encoding_bitrate = rc->avg_st_encoding_bitrate / rc->window_count;
161 rc->variance_st_encoding_bitrate =
162 rc->variance_st_encoding_bitrate / rc->window_count -
163 (rc->avg_st_encoding_bitrate * rc->avg_st_encoding_bitrate);
164 perc_fluctuation = 100.0 * sqrt(rc->variance_st_encoding_bitrate) /
165 rc->avg_st_encoding_bitrate;
166 printf("Short-time stats, for window of %d frames: \n", rc->window_size);
167 printf("Average, rms-variance, and percent-fluct: %f %f %f \n",
168 rc->avg_st_encoding_bitrate, sqrt(rc->variance_st_encoding_bitrate),
169 perc_fluctuation);
170 if ((frame_cnt - 1) != tot_num_frames)
171 die("Error: Number of input frames not equal to output! \n");
172}
173
174#if ROI_MAP
177 unsigned int i, j;
178 int block_size = 0;
179 uint8_t is_vp8 = strncmp(enc_name, "vp8", 3) == 0 ? 1 : 0;
180 uint8_t is_vp9 = strncmp(enc_name, "vp9", 3) == 0 ? 1 : 0;
181 if (!is_vp8 && !is_vp9) {
182 die("unsupported codec.");
183 }
184 zero(*roi);
185
186 block_size = is_vp9 && !is_vp8 ? 8 : 16;
187
188
189
190 roi->
rows = (cfg->
g_h + block_size - 1) / block_size;
191 roi->
cols = (cfg->
g_w + block_size - 1) / block_size;
192
193
194
195
196
199
200
201
202
204
205 if (is_vp8) {
206
207
208
210 }
211
212 if (is_vp9) {
213
214
216 }
217
218 if (is_vp9) {
219
220
221
222
223
224
227 }
228
229
232 for (i = 0; i < roi->
rows; ++i) {
233 for (j = 0; j < roi->
cols; ++j) {
234 if (i > (roi->
rows >> 2) && i < ((roi->
rows * 3) >> 2) &&
235 j > (roi->
cols >> 2) && j < ((roi->
cols * 3) >> 2)) {
237 }
238 }
239 }
240}
241
243 int *skip_map, int *prev_mask_map, int frame_num) {
244 const int block_size = 8;
245 unsigned int i, j;
246 roi->
rows = (cfg->
g_h + block_size - 1) / block_size;
247 roi->
cols = (cfg->
g_w + block_size - 1) / block_size;
253
257 for (i = 0; i < roi->
rows; ++i) {
258 for (j = 0; j < roi->
cols; ++j) {
259 const int idx = i * roi->
cols + j;
260
261
262
263
264 if (skip_map[idx] == 1 && prev_mask_map[idx] == 1) roi->
roi_map[idx] = 3;
265
266 if (frame_num % 10 == 0)
267 prev_mask_map[idx] = skip_map[idx];
268 else if (prev_mask_map[idx] == 1 && skip_map[idx] == 0)
269 prev_mask_map[idx] = 0;
270 }
271 }
272}
273#endif
274
275
276
277
278
279
280static void set_temporal_layer_pattern(int layering_mode,
282 int *layer_flags,
283 int *flag_periodicity) {
284 switch (layering_mode) {
285 case 0: {
286
287 int ids[1] = { 0 };
289 *flag_periodicity = 1;
293
294 layer_flags[0] =
296 break;
297 }
298 case 1: {
299
300 int ids[2] = { 0, 1 };
302 *flag_periodicity = 2;
307#if 1
308
312 layer_flags[1] =
314#else
315
321#endif
322 break;
323 }
324 case 2: {
325
326 int ids[3] = { 0, 1, 1 };
328 *flag_periodicity = 3;
333
337 layer_flags[1] = layer_flags[2] =
340 break;
341 }
342 case 3: {
343
344 int ids[6] = { 0, 2, 2, 1, 2, 2 };
346 *flag_periodicity = 6;
352
356 layer_flags[3] =
358 layer_flags[1] = layer_flags[2] = layer_flags[4] = layer_flags[5] =
360 break;
361 }
362 case 4: {
363
364 int ids[4] = { 0, 2, 1, 2 };
366 *flag_periodicity = 4;
372
378 layer_flags[1] = layer_flags[3] =
381 break;
382 }
383 case 5: {
384
385 int ids[4] = { 0, 2, 1, 2 };
387 *flag_periodicity = 4;
393
394
398 layer_flags[2] =
400 layer_flags[1] = layer_flags[3] =
403 break;
404 }
405 case 6: {
406
407 int ids[4] = { 0, 2, 1, 2 };
409 *flag_periodicity = 4;
415
419 layer_flags[2] =
421 layer_flags[1] = layer_flags[3] =
423 break;
424 }
425 case 7: {
426
427
428 int ids[16] = { 0, 4, 3, 4, 2, 4, 3, 4, 1, 4, 3, 4, 2, 4, 3, 4 };
430 *flag_periodicity = 16;
439 layer_flags[1] = layer_flags[3] = layer_flags[5] = layer_flags[7] =
440 layer_flags[9] = layer_flags[11] = layer_flags[13] = layer_flags[15] =
443 layer_flags[2] = layer_flags[6] = layer_flags[10] = layer_flags[14] =
445 layer_flags[4] = layer_flags[12] =
448 break;
449 }
450 case 8: {
451
452 int ids[2] = { 0, 1 };
454 *flag_periodicity = 8;
459
460
461
462
463
464 layer_flags[0] =
466
467 layer_flags[1] =
469
470 layer_flags[2] =
472
475
476 layer_flags[4] = layer_flags[2];
477
478 layer_flags[5] = layer_flags[3];
479
480 layer_flags[6] = layer_flags[4];
481
482 layer_flags[7] = layer_flags[5];
483 break;
484 }
485 case 9: {
486
487 int ids[4] = { 0, 2, 1, 2 };
489 *flag_periodicity = 8;
495
503 layer_flags[3] = layer_flags[5] =
507 layer_flags[6] =
511 break;
512 }
513 case 10: {
514
515
516
517
518 int ids[4] = { 0, 2, 1, 2 };
520 *flag_periodicity = 8;
526
527
528 layer_flags[0] =
530
534
535 layer_flags[2] =
537
540
541 layer_flags[4] =
543
544 layer_flags[5] = layer_flags[3];
545
547
548 layer_flags[7] = layer_flags[3];
549 break;
550 }
551 case 11: {
552
553
554
555
556
557 int ids[4] = { 0, 2, 1, 2 };
559 *flag_periodicity = 4;
565
574 break;
575 }
576 case 12:
577 default: {
578
579
580 int ids[4] = { 0, 2, 1, 2 };
582 *flag_periodicity = 8;
588
589
590 layer_flags[0] =
592 layer_flags[4] = layer_flags[0];
593
595 layer_flags[6] = layer_flags[2];
596
599 layer_flags[3] = layer_flags[1];
600 layer_flags[5] = layer_flags[1];
601 layer_flags[7] = layer_flags[1];
602 break;
603 }
604 }
605}
606
607#if ROI_MAP
608static int read_mask(FILE *mask_file, int *seg_map, int allowed_mask_rows,
609 int allowed_mask_cols) {
610 int mask_rows, mask_cols, i, j;
611 int *map_start = seg_map;
612 if (fscanf(mask_file, "%d %d\n", &mask_cols, &mask_rows) != 2) return 0;
613 if (mask_rows != allowed_mask_rows || mask_cols != allowed_mask_cols) {
614 return 0;
615 }
616 for (i = 0; i < mask_rows; i++) {
617 for (j = 0; j < mask_cols; j++) {
618 if (fscanf(mask_file, "%d ", &seg_map[j]) != 1) return 0;
619
620 seg_map[j] = 1 - seg_map[j];
621 }
622 seg_map += mask_cols;
623 }
624 seg_map = map_start;
625 return 1;
626}
627#endif
628
629int main(int argc, char **argv) {
633 int frame_cnt = 0;
636 unsigned int width;
637 unsigned int height;
638 uint32_t error_resilient = 0;
639 int speed;
640 int frame_avail;
641 int got_data;
642 int flags = 0;
643 unsigned int i;
644 int pts = 0;
645 int frame_duration = 1;
646 int layering_mode = 0;
648 int flag_periodicity = 1;
649#if ROI_MAP
651#endif
653 const VpxInterface *encoder = NULL;
654 struct VpxInputContext input_ctx;
655 struct RateControlMetrics rc;
656 int64_t cx_time = 0;
657 const int min_args_base = 13;
658#if CONFIG_VP9_HIGHBITDEPTH
660 int input_bit_depth = 8;
661 const int min_args = min_args_base + 1;
662#else
663 const int min_args = min_args_base;
664#endif
665 double sum_bitrate = 0.0;
666 double sum_bitrate2 = 0.0;
667 double framerate = 30.0;
668#if ROI_MAP
669 FILE *mask_file = NULL;
670 int block_size = 8;
671 int mask_rows = 0;
672 int mask_cols = 0;
673 int *mask_map;
674 int *prev_mask_map;
675#endif
676 zero(rc.layer_target_bitrate);
678 memset(&input_ctx, 0, sizeof(input_ctx));
679
680 input_ctx.framerate.numerator = 30;
681 input_ctx.framerate.denominator = 1;
682 input_ctx.only_i420 = 1;
683 input_ctx.bit_depth = 0;
684
685
686 if (argc < min_args) {
687#if CONFIG_VP9_HIGHBITDEPTH
688 die("Usage: %s <infile> <outfile> <codec_type(vp8/vp9)> <width> <height> "
689 "<rate_num> <rate_den> <speed> <frame_drop_threshold> "
690 "<error_resilient> <threads> <mode> "
691 "<Rate_0> ... <Rate_nlayers-1> <bit-depth> \n",
692 argv[0]);
693#else
694 die("Usage: %s <infile> <outfile> <codec_type(vp8/vp9)> <width> <height> "
695 "<rate_num> <rate_den> <speed> <frame_drop_threshold> "
696 "<error_resilient> <threads> <mode> "
697 "<Rate_0> ... <Rate_nlayers-1> \n",
698 argv[0]);
699#endif
700 }
701
702 encoder = get_vpx_encoder_by_name(argv[3]);
703 if (!encoder) die("Unsupported codec.");
704
706
707 width = (unsigned int)strtoul(argv[4], NULL, 0);
708 height = (unsigned int)strtoul(argv[5], NULL, 0);
709 if (width < 16 || width % 2 || height < 16 || height % 2) {
710 die("Invalid resolution: %d x %d", width, height);
711 }
712
713 layering_mode = (int)strtol(argv[12], NULL, 0);
714 if (layering_mode < 0 || layering_mode > 13) {
715 die("Invalid layering mode (0..12) %s", argv[12]);
716 }
717
718#if ROI_MAP
719 if (argc != min_args + mode_to_num_layers[layering_mode] + 1) {
720 die("Invalid number of arguments");
721 }
722#else
723 if (argc != min_args + mode_to_num_layers[layering_mode]) {
724 die("Invalid number of arguments");
725 }
726#endif
727
728 input_ctx.filename = argv[1];
729 open_input_file(&input_ctx);
730
731#if CONFIG_VP9_HIGHBITDEPTH
732 switch (strtol(argv[argc - 1], NULL, 0)) {
733 case 8:
735 input_bit_depth = 8;
736 break;
737 case 10:
739 input_bit_depth = 10;
740 break;
741 case 12:
743 input_bit_depth = 12;
744 break;
745 default: die("Invalid bit depth (8, 10, 12) %s", argv[argc - 1]);
746 }
747
748
749 if (input_ctx.file_type != FILE_TYPE_Y4M) {
751 &raw,
753 width, height, 32)) {
754 die("Failed to allocate image (%dx%d)", width, height);
755 }
756 }
757#else
758
759 if (input_ctx.file_type != FILE_TYPE_Y4M) {
761 die("Failed to allocate image (%dx%d)", width, height);
762 }
763 }
764#endif
765
766
768 if (res) {
770 return EXIT_FAILURE;
771 }
772
773
776
777#if CONFIG_VP9_HIGHBITDEPTH
782 }
783#endif
784
785
788
789 speed = (int)strtol(argv[8], NULL, 0);
790 if (speed < 0) {
791 die("Invalid speed setting: must be positive");
792 }
793 if (strncmp(encoder->name, "vp9", 3) == 0 && speed > 9) {
794 warn("Mapping speed %d to speed 9.\n", speed);
795 }
796
797 for (i = min_args_base;
798 (int)i < min_args_base + mode_to_num_layers[layering_mode]; ++i) {
799 rc.layer_target_bitrate[i - 13] = (int)strtol(argv[i], NULL, 0);
800 if (strncmp(encoder->name, "vp8", 3) == 0)
802 else if (strncmp(encoder->name, "vp9", 3) == 0)
804 }
805
806
817
818
820
821
822 cfg.
g_threads = (
unsigned int)strtoul(argv[11], NULL, 0);
823
824 error_resilient = (uint32_t)strtoul(argv[10], NULL, 0);
825 if (error_resilient != 0 && error_resilient != 1) {
826 die("Invalid value for error resilient (0, 1): %d.", error_resilient);
827 }
828
832
833
835
837
838 set_temporal_layer_pattern(layering_mode, &cfg, layer_flags,
839 &flag_periodicity);
840
841 set_rate_control_metrics(&rc, &cfg);
842
843 if (input_ctx.file_type == FILE_TYPE_Y4M) {
844 if (input_ctx.width != cfg.
g_w || input_ctx.height != cfg.
g_h) {
845 die(
"Incorrect width or height: %d x %d", cfg.
g_w, cfg.
g_h);
846 }
849 die("Incorrect framerate: numerator %d denominator %d",
851 }
852 }
853
855
857 char file_name[PATH_MAX];
858 VpxVideoInfo info;
859 info.codec_fourcc = encoder->fourcc;
860 info.frame_width = cfg.
g_w;
861 info.frame_height = cfg.
g_h;
864
865 snprintf(file_name, sizeof(file_name), "%s_%d.ivf", argv[2], i);
866 outfile[i] = vpx_video_writer_open(file_name, kContainerIVF, &info);
867 if (!outfile[i]) die("Failed to open %s for writing", file_name);
868
869 assert(outfile[i] != NULL);
870 }
871
873
874
875#if CONFIG_VP9_HIGHBITDEPTH
877 &codec, encoder->codec_interface(), &cfg,
879#else
881#endif
882 die("Failed to initialize encoder");
883
884#if ROI_MAP
885 mask_rows = (cfg.
g_h + block_size - 1) / block_size;
886 mask_cols = (cfg.
g_w + block_size - 1) / block_size;
887 mask_map = (int *)calloc(mask_rows * mask_cols, sizeof(*mask_map));
888 prev_mask_map = (int *)calloc(mask_rows * mask_cols, sizeof(*mask_map));
889#endif
890
891 if (strncmp(encoder->name, "vp8", 3) == 0) {
896#if ROI_MAP
897 set_roi_map(encoder->name, &cfg, &roi);
899 die_codec(&codec, "Failed to set ROI map");
900#endif
901 } else if (strncmp(encoder->name, "vp9", 3) == 0) {
903 memset(&svc_params, 0, sizeof(svc_params));
916
919 else
922 die_codec(&codec, "Failed to set SVC");
926 }
930 }
931 if (strncmp(encoder->name, "vp8", 3) == 0) {
933 }
935
936
937
938 {
939 const int max_intra_size_pct = 1000;
941 max_intra_size_pct);
942 }
943
944 frame_avail = 1;
945 while (frame_avail || got_data) {
946 struct vpx_usec_timer timer;
949#if ROI_MAP
950 char mask_file_name[255];
951#endif
952
957 if (strncmp(encoder->name, "vp9", 3) == 0) {
959 } else if (strncmp(encoder->name, "vp8", 3) == 0) {
962 }
963 flags = layer_flags[frame_cnt % flag_periodicity];
964 if (layering_mode == 0) flags = 0;
965#if ROI_MAP
966 snprintf(mask_file_name, sizeof(mask_file_name), "%s%05d.txt",
967 argv[argc - 1], frame_cnt);
968 mask_file = fopen(mask_file_name, "r");
969 if (mask_file != NULL) {
970 int mask_is_valid = read_mask(mask_file, mask_map, mask_rows, mask_cols);
971 fclose(mask_file);
972 if (mask_is_valid) {
973
974 set_roi_skip_map(&cfg, &roi, mask_map, prev_mask_map, frame_cnt);
976 die_codec(&codec, "Failed to set ROI map");
977 } else {
978 die_codec(&codec, "Mask input is invalid for ROI map");
979 }
980 }
981#endif
982 frame_avail = read_frame(&input_ctx, &raw);
984 vpx_usec_timer_start(&timer);
987 die_codec(&codec, "Failed to encode frame");
988 }
989 vpx_usec_timer_mark(&timer);
990 cx_time += vpx_usec_timer_elapsed(&timer);
991
992 if (layering_mode != 7) {
994 }
995 got_data = 0;
997 got_data = 1;
1002 vpx_video_writer_write_frame(outfile[i], pkt->
data.
frame.
buf,
1004 ++rc.layer_tot_enc_frames[i];
1005 rc.layer_encoding_bitrate[i] += 8.0 * pkt->
data.
frame.
sz;
1006
1009 rc.layer_avg_frame_size[i] += 8.0 * pkt->
data.
frame.
sz;
1010 rc.layer_avg_rate_mismatch[i] +=
1011 fabs(8.0 * pkt->
data.
frame.
sz - rc.layer_pfb[i]) /
1012 rc.layer_pfb[i];
1013 ++rc.layer_enc_frames[i];
1014 }
1015 }
1016
1017
1018
1019 if (rc.window_size == 0) rc.window_size = 15;
1020 if (frame_cnt > rc.window_size) {
1021 sum_bitrate += 0.001 * 8.0 * pkt->
data.
frame.
sz * framerate;
1022 if (frame_cnt % rc.window_size == 0) {
1023 rc.window_count += 1;
1024 rc.avg_st_encoding_bitrate += sum_bitrate / rc.window_size;
1025 rc.variance_st_encoding_bitrate +=
1026 (sum_bitrate / rc.window_size) *
1027 (sum_bitrate / rc.window_size);
1028 sum_bitrate = 0.0;
1029 }
1030 }
1031
1032 if (frame_cnt > rc.window_size + rc.window_size / 2) {
1033 sum_bitrate2 += 0.001 * 8.0 * pkt->
data.
frame.
sz * framerate;
1034 if (frame_cnt > 2 * rc.window_size &&
1035 frame_cnt % rc.window_size == 0) {
1036 rc.window_count += 1;
1037 rc.avg_st_encoding_bitrate += sum_bitrate2 / rc.window_size;
1038 rc.variance_st_encoding_bitrate +=
1039 (sum_bitrate2 / rc.window_size) *
1040 (sum_bitrate2 / rc.window_size);
1041 sum_bitrate2 = 0.0;
1042 }
1043 }
1044 break;
1045 default: break;
1046 }
1047 }
1048 ++frame_cnt;
1049 pts += frame_duration;
1050 }
1051#if ROI_MAP
1052 free(mask_map);
1053 free(prev_mask_map);
1054#endif
1055 close_input_file(&input_ctx);
1056 printout_rate_control_summary(&rc, &cfg, frame_cnt);
1057 printf("\n");
1058 printf("Frame cnt and encoding time/FPS stats for encoding: %d %f %f \n",
1059 frame_cnt, 1000 * (float)cx_time / (double)(frame_cnt * 1000000),
1060 1000000 * (double)frame_cnt / (double)cx_time);
1061
1063
1064
1065 for (i = 0; i < cfg.
ts_number_layers; ++i) vpx_video_writer_close(outfile[i]);
1066
1067 if (input_ctx.file_type != FILE_TYPE_Y4M) {
1069 }
1070
1071#if ROI_MAP
1073#endif
1074 return EXIT_SUCCESS;
1075}
const char * vpx_codec_err_to_string(vpx_codec_err_t err)
Convert error number to printable string.
struct vpx_codec_ctx vpx_codec_ctx_t
Codec context structure.
vpx_codec_err_t vpx_codec_destroy(vpx_codec_ctx_t *ctx)
Destroy a codec instance.
const void * vpx_codec_iter_t
Iterator.
Definition vpx_codec.h:190
const char * vpx_codec_iface_name(vpx_codec_iface_t *iface)
Return the name for a given interface.
enum vpx_bit_depth vpx_bit_depth_t
Bit depth for codecThis enumeration determines the bit depth of the codec.
#define vpx_codec_control(ctx, id, data)
vpx_codec_control wrapper macro
Definition vpx_codec.h:408
vpx_codec_err_t
Algorithm return codes.
Definition vpx_codec.h:93
@ VPX_BITS_8
Definition vpx_codec.h:221
@ VPX_BITS_12
Definition vpx_codec.h:223
@ VPX_BITS_10
Definition vpx_codec.h:222
#define VPX_DL_REALTIME
deadline parameter analogous to VPx REALTIME mode.
Definition vpx_encoder.h:1017
struct vpx_codec_enc_cfg vpx_codec_enc_cfg_t
Encoder configuration structure.
#define VPX_TS_MAX_LAYERS
Definition vpx_encoder.h:41
#define vpx_codec_enc_init(ctx, iface, cfg, flags)
Convenience macro for vpx_codec_enc_init_ver().
Definition vpx_encoder.h:908
#define VPX_EFLAG_FORCE_KF
Definition vpx_encoder.h:269
struct vpx_svc_parameters vpx_svc_extra_cfg_t
vp9 svc extra configure parameters
const vpx_codec_cx_pkt_t * vpx_codec_get_cx_data(vpx_codec_ctx_t *ctx, vpx_codec_iter_t *iter)
Encoded data iterator.
#define VPX_TS_MAX_PERIODICITY
Definition vpx_encoder.h:38
#define VPX_CODEC_USE_HIGHBITDEPTH
Definition vpx_encoder.h:97
#define VPX_MAX_LAYERS
Definition vpx_encoder.h:44
#define VPX_FRAME_IS_KEY
Definition vpx_encoder.h:123
vpx_codec_err_t vpx_codec_enc_config_default(vpx_codec_iface_t *iface, vpx_codec_enc_cfg_t *cfg, unsigned int usage)
Get a default configuration.
struct vpx_codec_cx_pkt vpx_codec_cx_pkt_t
Encoder output packet.
vpx_codec_err_t vpx_codec_encode(vpx_codec_ctx_t *ctx, const vpx_image_t *img, vpx_codec_pts_t pts, unsigned long duration, vpx_enc_frame_flags_t flags, vpx_enc_deadline_t deadline)
Encode a frame.
@ VPX_CODEC_CX_FRAME_PKT
Definition vpx_encoder.h:155
@ VPX_KF_AUTO
Definition vpx_encoder.h:257
@ VPX_CBR
Definition vpx_encoder.h:242
#define VP8_EFLAG_NO_UPD_ARF
Don't update the alternate reference frame.
Definition vp8cx.h:112
struct vpx_svc_layer_id vpx_svc_layer_id_t
vp9 svc layer parameters
#define VP8_EFLAG_NO_UPD_ENTROPY
Disable entropy update.
Definition vp8cx.h:133
#define VP8_EFLAG_NO_UPD_LAST
Don't update the last frame.
Definition vp8cx.h:98
#define VP8_EFLAG_NO_REF_ARF
Don't reference the alternate reference frame.
Definition vp8cx.h:91
struct vpx_roi_map vpx_roi_map_t
vpx region of interest map
#define VP8_EFLAG_NO_UPD_GF
Don't update the golden frame.
Definition vp8cx.h:105
#define VP8_EFLAG_NO_REF_GF
Don't reference the golden frame.
Definition vp8cx.h:83
#define VP8_EFLAG_NO_REF_LAST
Don't reference the last frame.
Definition vp8cx.h:75
@ VP9E_SET_FRAME_PERIODIC_BOOST
Codec control function to enable/disable periodic Q boost.
Definition vp8cx.h:431
@ VP9E_SET_SVC_LAYER_ID
Codec control function to set svc layer for spatial and temporal.
Definition vp8cx.h:471
@ VP8E_SET_MAX_INTRA_BITRATE_PCT
Codec control function to set Max data rate for Intra frames.
Definition vp8cx.h:275
@ VP9E_SET_ROI_MAP
Codec control function to pass an ROI map to encoder.
Definition vp8cx.h:454
@ VP8E_SET_ROI_MAP
Codec control function to pass an ROI map to encoder.
Definition vp8cx.h:147
@ VP9E_SET_AQ_MODE
Codec control function to set adaptive quantization mode.
Definition vp8cx.h:416
@ VP8E_SET_NOISE_SENSITIVITY
control function to set noise sensitivity
Definition vp8cx.h:191
@ VP8E_SET_TOKEN_PARTITIONS
Codec control function to set the number of token partitions.
Definition vp8cx.h:212
@ VP9E_SET_POSTENCODE_DROP
Codec control function to enable post encode frame drop.
Definition vp8cx.h:684
@ VP9E_SET_DISABLE_OVERSHOOT_MAXQ_CBR
Codec control function to disable increase Q on overshoot in CBR.
Definition vp8cx.h:700
@ VP9E_SET_SVC_PARAMETERS
Codec control function to set parameters for SVC.
Definition vp8cx.h:462
@ VP9E_SET_FRAME_PARALLEL_DECODING
Codec control function to enable frame parallel decoding feature.
Definition vp8cx.h:403
@ VP8E_SET_GF_CBR_BOOST_PCT
Boost percentage for Golden Frame in CBR mode.
Definition vp8cx.h:607
@ VP9E_SET_TUNE_CONTENT
Codec control function to set content type.
Definition vp8cx.h:481
@ VP9E_SET_SVC
Codec control function to turn on/off SVC in encoder.
Definition vp8cx.h:448
@ VP9E_SET_ROW_MT
Codec control function to set row level multi-threading.
Definition vp8cx.h:576
@ VP8E_SET_CPUUSED
Codec control function to set encoder internal speed settings.
Definition vp8cx.h:173
@ VP8E_SET_TEMPORAL_LAYER_ID
Codec control function to set the temporal layer id.
Definition vp8cx.h:322
@ VP9E_SET_TILE_COLUMNS
Codec control function to set number of tile columns.
Definition vp8cx.h:369
@ VP8E_SET_STATIC_THRESHOLD
Codec control function to set the threshold for MBs treated static.
Definition vp8cx.h:206
@ VP8E_SET_SCREEN_CONTENT_MODE
Codec control function to set encoder screen content mode.
Definition vp8cx.h:330
@ VP9E_SET_DISABLE_LOOPFILTER
Codec control function to disable loopfilter.
Definition vp8cx.h:709
@ VP9E_SET_NOISE_SENSITIVITY
Codec control function to set noise sensitivity.
Definition vp8cx.h:439
@ VP9E_SET_GF_CBR_BOOST_PCT
Boost percentage for Golden Frame in CBR mode.
Definition vp8cx.h:311
@ VP9E_TEMPORAL_LAYERING_MODE_BYPASS
Bypass mode. Used when application needs to control spatial and temporal layering.
Definition vp8cx.h:817
union vpx_codec_cx_pkt::@105367030154200007005241002351245163342006201240 data
struct vpx_codec_cx_pkt::@105367030154200007005241002351245163342006201240::@337301343345304110063267327113124066016321050157 frame
vpx_codec_frame_flags_t flags
Definition vpx_encoder.h:177
enum vpx_codec_cx_pkt_kind kind
Definition vpx_encoder.h:168
size_t sz
Definition vpx_encoder.h:172
void * buf
Definition vpx_encoder.h:171
unsigned int rc_resize_allowed
Enable/disable spatial resampling, if supported by the codec.
Definition vpx_encoder.h:415
int temporal_layering_mode
Temporal layering mode indicating which temporal layering scheme to use.
Definition vpx_encoder.h:710
unsigned int kf_min_dist
Keyframe minimum interval.
Definition vpx_encoder.h:622
unsigned int rc_min_quantizer
Minimum (Best Quality) Quantizer.
Definition vpx_encoder.h:490
unsigned int ts_number_layers
Number of temporal coding layers.
Definition vpx_encoder.h:661
unsigned int ss_number_layers
Number of spatial coding layers.
Definition vpx_encoder.h:641
unsigned int g_profile
Bitstream profile to use.
Definition vpx_encoder.h:306
unsigned int layer_target_bitrate[12]
Target bitrate for each spatial/temporal layer.
Definition vpx_encoder.h:701
unsigned int g_h
Height of the frame.
Definition vpx_encoder.h:324
enum vpx_kf_mode kf_mode
Keyframe placement mode.
Definition vpx_encoder.h:613
unsigned int ts_layer_id[16]
Template defining the membership of frames to temporal layers.
Definition vpx_encoder.h:693
vpx_codec_er_flags_t g_error_resilient
Enable error resilient modes.
Definition vpx_encoder.h:366
unsigned int ts_periodicity
Length of the sequence defining frame temporal layer membership.
Definition vpx_encoder.h:684
unsigned int rc_overshoot_pct
Rate control adaptation overshoot control.
Definition vpx_encoder.h:533
unsigned int g_w
Width of the frame.
Definition vpx_encoder.h:315
unsigned int rc_buf_sz
Decoder Buffer Size.
Definition vpx_encoder.h:548
unsigned int rc_dropframe_thresh
Temporal resampling configuration, if supported by the codec.
Definition vpx_encoder.h:406
struct vpx_rational g_timebase
Stream timebase units.
Definition vpx_encoder.h:358
unsigned int rc_max_quantizer
Maximum (Worst Quality) Quantizer.
Definition vpx_encoder.h:499
unsigned int g_lag_in_frames
Allow lagged encoding.
Definition vpx_encoder.h:387
enum vpx_rc_mode rc_end_usage
Rate control algorithm to use.
Definition vpx_encoder.h:455
unsigned int rc_buf_initial_sz
Decoder Buffer Initial Size.
Definition vpx_encoder.h:557
vpx_bit_depth_t g_bit_depth
Bit-depth of the codec.
Definition vpx_encoder.h:332
unsigned int rc_buf_optimal_sz
Decoder Buffer Optimal Size.
Definition vpx_encoder.h:566
unsigned int rc_target_bitrate
Target data rate.
Definition vpx_encoder.h:477
unsigned int ts_target_bitrate[5]
Target bitrate for each temporal layer.
Definition vpx_encoder.h:668
unsigned int g_input_bit_depth
Bit-depth of the input source.
Definition vpx_encoder.h:344
unsigned int rc_undershoot_pct
Rate control adaptation undershoot control.
Definition vpx_encoder.h:518
unsigned int ts_rate_decimator[5]
Frame rate decimation factor for each temporal layer.
Definition vpx_encoder.h:675
unsigned int kf_max_dist
Keyframe maximum interval.
Definition vpx_encoder.h:631
unsigned int g_threads
Maximum number of threads to use.
Definition vpx_encoder.h:296
int den
Definition vpx_encoder.h:229
int num
Definition vpx_encoder.h:228
int skip[8]
Definition vp8cx.h:846
unsigned int static_threshold[4]
Definition vp8cx.h:849
unsigned int rows
Definition vp8cx.h:840
unsigned int cols
Definition vp8cx.h:841
int ref_frame[8]
Definition vp8cx.h:847
int delta_q[8]
Definition vp8cx.h:843
unsigned char * roi_map
Definition vp8cx.h:839
int delta_lf[8]
Definition vp8cx.h:844
int temporal_layer_id
Definition vp8cx.h:914
int temporal_layer_id_per_spatial[5]
Definition vp8cx.h:915
int spatial_layer_id
Definition vp8cx.h:912
int min_quantizers[12]
Definition vpx_encoder.h:865
int scaling_factor_num[12]
Definition vpx_encoder.h:866
int max_quantizers[12]
Definition vpx_encoder.h:864
int scaling_factor_den[12]
Definition vpx_encoder.h:867
Provides definitions for using VP8 or VP9 encoder algorithm within the vpx Codec Interface.
Describes the encoder algorithm interface to applications.
vpx_image_t * vpx_img_alloc(vpx_image_t *img, vpx_img_fmt_t fmt, unsigned int d_w, unsigned int d_h, unsigned int align)
Open a descriptor, allocating storage for the underlying image.
@ VPX_IMG_FMT_I42016
Definition vpx_image.h:47
@ VPX_IMG_FMT_I420
Definition vpx_image.h:42
struct vpx_image vpx_image_t
Image Descriptor.
void vpx_img_free(vpx_image_t *img)
Close an image descriptor.