blob: 2f42751a14c4b81850e3b90a7aad017b92b9447f [file] [log] [blame]
Dmitry Kovalev50fa5852014-01-07 15:15:25 -08001/*
2 * Copyright (c) 2010 The WebM project authors. All Rights Reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
Dmitry Kovalev50fa5852014-01-07 15:15:25 -080011// VP8 Set Active and ROI Maps
12// ===========================
13//
14// This is an example demonstrating how to control the VP8 encoder's
15// ROI and Active maps.
16//
17// ROI (Reigon of Interest) maps are a way for the application to assign
18// each macroblock in the image to a region, and then set quantizer and
19// filtering parameters on that image.
20//
21// Active maps are a way for the application to specify on a
22// macroblock-by-macroblock basis whether there is any activity in that
23// macroblock.
24//
25//
26// Configuration
27// -------------
28// An ROI map is set on frame 22. If the width of the image in macroblocks
29// is evenly divisble by 4, then the output will appear to have distinct
30// columns, where the quantizer, loopfilter, and static threshold differ
31// from column to column.
32//
33// An active map is set on frame 33. If the width of the image in macroblocks
34// is evenly divisble by 4, then the output will appear to have distinct
35// columns, where one column will have motion and the next will not.
36//
37// The active map is cleared on frame 44.
38//
39// Observing The Effects
40// ---------------------
41// Use the `simple_decoder` example to decode this sample, and observe
42// the change in the image at frames 22, 33, and 44.
43
Jim Bankoski812506b2014-08-19 14:56:09 -070044#include <assert.h>
Dmitry Kovalev50fa5852014-01-07 15:15:25 -080045#include <stdio.h>
46#include <stdlib.h>
Dmitry Kovalev50fa5852014-01-07 15:15:25 -080047#include <string.h>
Dmitry Kovalev8837b022014-02-13 14:18:05 -080048
Yaowu Xuf883b422016-08-30 14:01:10 -070049#include "aom/aomcx.h"
50#include "aom/aom_encoder.h"
Dmitry Kovalev50fa5852014-01-07 15:15:25 -080051
Tom Finegan9e96bdc2015-02-04 16:11:57 -080052#include "../tools_common.h"
53#include "../video_writer.h"
Dmitry Kovalev50fa5852014-01-07 15:15:25 -080054
Dmitry Kovalev8837b022014-02-13 14:18:05 -080055static const char *exec_name;
56
James Zern59e7a472015-05-09 10:33:26 -070057void usage_exit(void) {
Alex Converse61ecd7f2014-03-10 16:13:49 -070058 fprintf(stderr, "Usage: %s <codec> <width> <height> <infile> <outfile>\n",
59 exec_name);
Dmitry Kovalev8837b022014-02-13 14:18:05 -080060 exit(EXIT_FAILURE);
Dmitry Kovalev50fa5852014-01-07 15:15:25 -080061}
62
Yaowu Xuf883b422016-08-30 14:01:10 -070063static void set_roi_map(const aom_codec_enc_cfg_t *cfg,
64 aom_codec_ctx_t *codec) {
Tom Finegan560119c2014-02-19 16:13:15 -080065 unsigned int i;
Yaowu Xuf883b422016-08-30 14:01:10 -070066 aom_roi_map_t roi;
Yaowu Xu70835602014-05-13 09:32:18 -070067 memset(&roi, 0, sizeof(roi));
Dmitry Kovalev8837b022014-02-13 14:18:05 -080068
Alex Converseb528d492014-03-10 16:08:58 -070069 roi.rows = (cfg->g_h + 15) / 16;
70 roi.cols = (cfg->g_w + 15) / 16;
Dmitry Kovalev8837b022014-02-13 14:18:05 -080071
72 roi.delta_q[0] = 0;
73 roi.delta_q[1] = -2;
74 roi.delta_q[2] = -4;
75 roi.delta_q[3] = -6;
76
77 roi.delta_lf[0] = 0;
78 roi.delta_lf[1] = 1;
79 roi.delta_lf[2] = 2;
80 roi.delta_lf[3] = 3;
81
82 roi.static_threshold[0] = 1500;
83 roi.static_threshold[1] = 1000;
84 roi.static_threshold[2] = 500;
85 roi.static_threshold[3] = 0;
86
87 roi.roi_map = (uint8_t *)malloc(roi.rows * roi.cols);
clang-format397d9642016-08-08 18:51:16 -070088 for (i = 0; i < roi.rows * roi.cols; ++i) roi.roi_map[i] = i % 4;
Dmitry Kovalev8837b022014-02-13 14:18:05 -080089
Yaowu Xuf883b422016-08-30 14:01:10 -070090 if (aom_codec_control(codec, AOME_SET_ROI_MAP, &roi))
Dmitry Kovalev8837b022014-02-13 14:18:05 -080091 die_codec(codec, "Failed to set ROI map");
92
93 free(roi.roi_map);
Dmitry Kovalev50fa5852014-01-07 15:15:25 -080094}
95
Yaowu Xuf883b422016-08-30 14:01:10 -070096static void set_active_map(const aom_codec_enc_cfg_t *cfg,
97 aom_codec_ctx_t *codec) {
Tom Finegan560119c2014-02-19 16:13:15 -080098 unsigned int i;
Yaowu Xuf883b422016-08-30 14:01:10 -070099 aom_active_map_t map = { 0, 0, 0 };
Dmitry Kovalev50fa5852014-01-07 15:15:25 -0800100
Alex Converseb528d492014-03-10 16:08:58 -0700101 map.rows = (cfg->g_h + 15) / 16;
102 map.cols = (cfg->g_w + 15) / 16;
Dmitry Kovalev8837b022014-02-13 14:18:05 -0800103
104 map.active_map = (uint8_t *)malloc(map.rows * map.cols);
clang-format397d9642016-08-08 18:51:16 -0700105 for (i = 0; i < map.rows * map.cols; ++i) map.active_map[i] = i % 2;
Dmitry Kovalev8837b022014-02-13 14:18:05 -0800106
Yaowu Xuf883b422016-08-30 14:01:10 -0700107 if (aom_codec_control(codec, AOME_SET_ACTIVEMAP, &map))
Dmitry Kovalev8837b022014-02-13 14:18:05 -0800108 die_codec(codec, "Failed to set active map");
109
110 free(map.active_map);
Dmitry Kovalev50fa5852014-01-07 15:15:25 -0800111}
112
Yaowu Xuf883b422016-08-30 14:01:10 -0700113static void unset_active_map(const aom_codec_enc_cfg_t *cfg,
114 aom_codec_ctx_t *codec) {
115 aom_active_map_t map = { 0, 0, 0 };
Dmitry Kovalev50fa5852014-01-07 15:15:25 -0800116
Alex Converseb528d492014-03-10 16:08:58 -0700117 map.rows = (cfg->g_h + 15) / 16;
118 map.cols = (cfg->g_w + 15) / 16;
Dmitry Kovalev8837b022014-02-13 14:18:05 -0800119 map.active_map = NULL;
120
Yaowu Xuf883b422016-08-30 14:01:10 -0700121 if (aom_codec_control(codec, AOME_SET_ACTIVEMAP, &map))
Dmitry Kovalev8837b022014-02-13 14:18:05 -0800122 die_codec(codec, "Failed to set active map");
Dmitry Kovalev50fa5852014-01-07 15:15:25 -0800123}
124
Yaowu Xuf883b422016-08-30 14:01:10 -0700125static int encode_frame(aom_codec_ctx_t *codec, aom_image_t *img,
126 int frame_index, AvxVideoWriter *writer) {
Dmitry Kovaleva8e674d2014-08-15 17:15:17 -0700127 int got_pkts = 0;
Yaowu Xuf883b422016-08-30 14:01:10 -0700128 aom_codec_iter_t iter = NULL;
129 const aom_codec_cx_pkt_t *pkt = NULL;
130 const aom_codec_err_t res =
131 aom_codec_encode(codec, img, frame_index, 1, 0, AOM_DL_GOOD_QUALITY);
132 if (res != AOM_CODEC_OK) die_codec(codec, "Failed to encode frame");
Dmitry Kovalev50fa5852014-01-07 15:15:25 -0800133
Yaowu Xuf883b422016-08-30 14:01:10 -0700134 while ((pkt = aom_codec_get_cx_data(codec, &iter)) != NULL) {
Dmitry Kovaleva8e674d2014-08-15 17:15:17 -0700135 got_pkts = 1;
136
Yaowu Xuf883b422016-08-30 14:01:10 -0700137 if (pkt->kind == AOM_CODEC_CX_FRAME_PKT) {
138 const int keyframe = (pkt->data.frame.flags & AOM_FRAME_IS_KEY) != 0;
139 if (!aom_video_writer_write_frame(writer, pkt->data.frame.buf,
Dmitry Kovalev8837b022014-02-13 14:18:05 -0800140 pkt->data.frame.sz,
141 pkt->data.frame.pts)) {
142 die_codec(codec, "Failed to write compressed frame");
143 }
144
145 printf(keyframe ? "K" : ".");
146 fflush(stdout);
Dmitry Kovalev50fa5852014-01-07 15:15:25 -0800147 }
Dmitry Kovalev8837b022014-02-13 14:18:05 -0800148 }
Dmitry Kovaleva8e674d2014-08-15 17:15:17 -0700149
150 return got_pkts;
Dmitry Kovalev50fa5852014-01-07 15:15:25 -0800151}
152
153int main(int argc, char **argv) {
Dmitry Kovalev8837b022014-02-13 14:18:05 -0800154 FILE *infile = NULL;
Yaowu Xuf883b422016-08-30 14:01:10 -0700155 aom_codec_ctx_t codec;
156 aom_codec_enc_cfg_t cfg;
Dmitry Kovalev8837b022014-02-13 14:18:05 -0800157 int frame_count = 0;
Yaowu Xuf883b422016-08-30 14:01:10 -0700158 aom_image_t raw;
159 aom_codec_err_t res;
160 AvxVideoInfo info;
161 AvxVideoWriter *writer = NULL;
162 const AvxInterface *encoder = NULL;
clang-format397d9642016-08-08 18:51:16 -0700163 const int fps = 2; // TODO(dkovalev) add command line argument
Alex Converseb528d492014-03-10 16:08:58 -0700164 const double bits_per_pixel_per_frame = 0.067;
Dmitry Kovalev50fa5852014-01-07 15:15:25 -0800165
Dmitry Kovalev8837b022014-02-13 14:18:05 -0800166 exec_name = argv[0];
clang-format397d9642016-08-08 18:51:16 -0700167 if (argc != 6) die("Invalid number of arguments");
Dmitry Kovalev50fa5852014-01-07 15:15:25 -0800168
Yaowu Xu70835602014-05-13 09:32:18 -0700169 memset(&info, 0, sizeof(info));
170
Yaowu Xuf883b422016-08-30 14:01:10 -0700171 encoder = get_aom_encoder_by_name(argv[1]);
Jim Bankoski812506b2014-08-19 14:56:09 -0700172 if (encoder == NULL) {
Dmitry Kovalev8837b022014-02-13 14:18:05 -0800173 die("Unsupported codec.");
Jim Bankoski812506b2014-08-19 14:56:09 -0700174 }
175 assert(encoder != NULL);
Dmitry Kovalev8837b022014-02-13 14:18:05 -0800176 info.codec_fourcc = encoder->fourcc;
Alex Converse61ecd7f2014-03-10 16:13:49 -0700177 info.frame_width = strtol(argv[2], NULL, 0);
178 info.frame_height = strtol(argv[3], NULL, 0);
Dmitry Kovalev8837b022014-02-13 14:18:05 -0800179 info.time_base.numerator = 1;
180 info.time_base.denominator = fps;
181
clang-format397d9642016-08-08 18:51:16 -0700182 if (info.frame_width <= 0 || info.frame_height <= 0 ||
183 (info.frame_width % 2) != 0 || (info.frame_height % 2) != 0) {
Dmitry Kovalev8837b022014-02-13 14:18:05 -0800184 die("Invalid frame size: %dx%d", info.frame_width, info.frame_height);
185 }
186
Yaowu Xuf883b422016-08-30 14:01:10 -0700187 if (!aom_img_alloc(&raw, AOM_IMG_FMT_I420, info.frame_width,
clang-format397d9642016-08-08 18:51:16 -0700188 info.frame_height, 1)) {
Dmitry Kovalev8837b022014-02-13 14:18:05 -0800189 die("Failed to allocate image.");
190 }
191
Yaowu Xuf883b422016-08-30 14:01:10 -0700192 printf("Using %s\n", aom_codec_iface_name(encoder->codec_interface()));
Dmitry Kovalev8837b022014-02-13 14:18:05 -0800193
Yaowu Xuf883b422016-08-30 14:01:10 -0700194 res = aom_codec_enc_config_default(encoder->codec_interface(), &cfg, 0);
clang-format397d9642016-08-08 18:51:16 -0700195 if (res) die_codec(&codec, "Failed to get default codec config.");
Dmitry Kovalev8837b022014-02-13 14:18:05 -0800196
197 cfg.g_w = info.frame_width;
198 cfg.g_h = info.frame_height;
199 cfg.g_timebase.num = info.time_base.numerator;
200 cfg.g_timebase.den = info.time_base.denominator;
clang-format397d9642016-08-08 18:51:16 -0700201 cfg.rc_target_bitrate =
202 (unsigned int)(bits_per_pixel_per_frame * cfg.g_w * cfg.g_h * fps / 1000);
Alex Converse61ecd7f2014-03-10 16:13:49 -0700203 cfg.g_lag_in_frames = 0;
Dmitry Kovalev8837b022014-02-13 14:18:05 -0800204
Yaowu Xuf883b422016-08-30 14:01:10 -0700205 writer = aom_video_writer_open(argv[5], kContainerIVF, &info);
clang-format397d9642016-08-08 18:51:16 -0700206 if (!writer) die("Failed to open %s for writing.", argv[5]);
Dmitry Kovalev8837b022014-02-13 14:18:05 -0800207
Alex Converse61ecd7f2014-03-10 16:13:49 -0700208 if (!(infile = fopen(argv[4], "rb")))
209 die("Failed to open %s for reading.", argv[4]);
Dmitry Kovalev8837b022014-02-13 14:18:05 -0800210
Yaowu Xuf883b422016-08-30 14:01:10 -0700211 if (aom_codec_enc_init(&codec, encoder->codec_interface(), &cfg, 0))
Dmitry Kovalev8837b022014-02-13 14:18:05 -0800212 die_codec(&codec, "Failed to initialize encoder");
213
Dmitry Kovaleva8e674d2014-08-15 17:15:17 -0700214 // Encode frames.
Yaowu Xuf883b422016-08-30 14:01:10 -0700215 while (aom_img_read(&raw, infile)) {
Dmitry Kovalev8837b022014-02-13 14:18:05 -0800216 ++frame_count;
217
Yaowu Xuf883b422016-08-30 14:01:10 -0700218 if (frame_count == 22 && encoder->fourcc == AV1_FOURCC) {
Dmitry Kovalev8837b022014-02-13 14:18:05 -0800219 set_roi_map(&cfg, &codec);
220 } else if (frame_count == 33) {
221 set_active_map(&cfg, &codec);
222 } else if (frame_count == 44) {
223 unset_active_map(&cfg, &codec);
Dmitry Kovalev50fa5852014-01-07 15:15:25 -0800224 }
225
Dmitry Kovalev8837b022014-02-13 14:18:05 -0800226 encode_frame(&codec, &raw, frame_count, writer);
227 }
Dmitry Kovaleva8e674d2014-08-15 17:15:17 -0700228
229 // Flush encoder.
clang-format397d9642016-08-08 18:51:16 -0700230 while (encode_frame(&codec, NULL, -1, writer)) {
231 }
Dmitry Kovaleva8e674d2014-08-15 17:15:17 -0700232
Dmitry Kovalev8837b022014-02-13 14:18:05 -0800233 printf("\n");
234 fclose(infile);
235 printf("Processed %d frames.\n", frame_count);
Dmitry Kovalev50fa5852014-01-07 15:15:25 -0800236
Yaowu Xuf883b422016-08-30 14:01:10 -0700237 aom_img_free(&raw);
238 if (aom_codec_destroy(&codec)) die_codec(&codec, "Failed to destroy codec.");
Dmitry Kovalev50fa5852014-01-07 15:15:25 -0800239
Yaowu Xuf883b422016-08-30 14:01:10 -0700240 aom_video_writer_close(writer);
Dmitry Kovalev50fa5852014-01-07 15:15:25 -0800241
Dmitry Kovalev8837b022014-02-13 14:18:05 -0800242 return EXIT_SUCCESS;
Dmitry Kovalev50fa5852014-01-07 15:15:25 -0800243}