1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45#include <assert.h>
46#include <stdio.h>
47#include <stdlib.h>
48#include <string.h>
49
52#include "common/tools_common.h"
53#include "common/video_writer.h"
54
55static const char *exec_name;
56
57void usage_exit(void) {
58 fprintf(stderr, "Usage: %s <codec> <width> <height> <infile> <outfile>\n",
59 exec_name);
60 exit(EXIT_FAILURE);
61}
62
65 unsigned int i;
67
68 map.
rows = (cfg->
g_h + 15) / 16;
69 map.
cols = (cfg->
g_w + 15) / 16;
70
72 if (!map.
active_map) die(
"Failed to allocate active map");
74
76 die_codec(codec, "Failed to set active map");
77
79}
80
84
85 map.
rows = (cfg->
g_h + 15) / 16;
86 map.
cols = (cfg->
g_w + 15) / 16;
88
90 die_codec(codec, "Failed to set active map");
91}
92
94 int frame_index, AvxVideoWriter *writer) {
95 int got_pkts = 0;
99 if (res !=
AOM_CODEC_OK) die_codec(codec,
"Failed to encode frame");
100
102 got_pkts = 1;
103
106 if (!aom_video_writer_write_frame(writer, pkt->
data.
frame.
buf,
109 die_codec(codec, "Failed to write compressed frame");
110 }
111
112 printf(keyframe ? "K" : ".");
113 fflush(stdout);
114 }
115 }
116
117 return got_pkts;
118}
119
120int main(int argc, char **argv) {
121 FILE *infile = NULL;
124 int frame_count = 0;
125 const int limit = 10;
128 AvxVideoInfo info;
129 AvxVideoWriter *writer = NULL;
130 const int fps = 2;
131 const double bits_per_pixel_per_frame = 0.067;
132
133#if CONFIG_REALTIME_ONLY
134 const int usage = 1;
135 const int speed = 7;
136#else
137 const int usage = 0;
138 const int speed = 2;
139#endif
140
141 exec_name = argv[0];
142 if (argc != 6) die("Invalid number of arguments");
143
144 memset(&info, 0, sizeof(info));
145
147 if (encoder == NULL) {
148 die("Unsupported codec.");
149 }
150 assert(encoder != NULL);
151 info.codec_fourcc = get_fourcc_by_aom_encoder(encoder);
152 info.frame_width = (int)strtol(argv[2], NULL, 0);
153 info.frame_height = (int)strtol(argv[3], NULL, 0);
154 info.time_base.numerator = 1;
155 info.time_base.denominator = fps;
156
157 if (info.frame_width <= 0 || info.frame_height <= 0 ||
158 (info.frame_width % 2) != 0 || (info.frame_height % 2) != 0) {
159 die("Invalid frame size: %dx%d", info.frame_width, info.frame_height);
160 }
161
163 info.frame_height, 1)) {
164 die("Failed to allocate image.");
165 }
166
168
170 if (res) die_codec(&codec, "Failed to get default codec config.");
171
172 cfg.
g_w = info.frame_width;
173 cfg.
g_h = info.frame_height;
177 (
unsigned int)(bits_per_pixel_per_frame * cfg.
g_w * cfg.
g_h * fps / 1000);
179
180 writer = aom_video_writer_open(argv[5], kContainerIVF, &info);
181 if (!writer) die("Failed to open %s for writing.", argv[5]);
182
183 if (!(infile = fopen(argv[4], "rb")))
184 die("Failed to open %s for reading.", argv[4]);
185
187 die("Failed to initialize encoder");
188
190 die_codec(&codec, "Failed to set cpu-used");
191
192
193 while (aom_img_read(&raw, infile) && frame_count < limit) {
194 ++frame_count;
195
196 if (frame_count == 5) {
197 set_active_map(&cfg, &codec);
198 } else if (frame_count == 9) {
199 unset_active_map(&cfg, &codec);
200 }
201
202 encode_frame(&codec, &raw, frame_count, writer);
203 }
204
205
206 while (encode_frame(&codec, NULL, -1, writer)) {
207 }
208
209 printf("\n");
210 fclose(infile);
211 printf("Processed %d frames.\n", frame_count);
212
215
216 aom_video_writer_close(writer);
217
218 return EXIT_SUCCESS;
219}
Describes the encoder algorithm interface to applications.
aom_image_t * aom_img_alloc(aom_image_t *img, aom_img_fmt_t fmt, unsigned int d_w, unsigned int d_h, unsigned int align)
Open a descriptor, allocating storage for the underlying image.
@ AOM_IMG_FMT_I420
Definition aom_image.h:45
struct aom_image aom_image_t
Image Descriptor.
void aom_img_free(aom_image_t *img)
Close an image descriptor.
Provides definitions for using AOM or AV1 encoder algorithm within the aom Codec Interface.
struct aom_active_map aom_active_map_t
aom active region map
@ AOME_SET_ACTIVEMAP
Codec control function to pass an Active map to encoder, aom_active_map_t* parameter.
Definition aomcx.h:190
@ AOME_SET_CPUUSED
Codec control function to set encoder internal speed settings, int parameter.
Definition aomcx.h:220
const char * aom_codec_iface_name(aom_codec_iface_t *iface)
Return the name for a given interface.
aom_codec_err_t aom_codec_control(aom_codec_ctx_t *ctx, int ctrl_id,...)
Algorithm Control.
struct aom_codec_ctx aom_codec_ctx_t
Codec context structure.
const struct aom_codec_iface aom_codec_iface_t
Codec interface structure.
Definition aom_codec.h:254
aom_codec_err_t aom_codec_destroy(aom_codec_ctx_t *ctx)
Destroy a codec instance.
aom_codec_err_t
Algorithm return codes.
Definition aom_codec.h:155
const void * aom_codec_iter_t
Iterator.
Definition aom_codec.h:288
#define AOM_FRAME_IS_KEY
Definition aom_codec.h:271
@ AOM_CODEC_OK
Operation completed without error.
Definition aom_codec.h:157
const aom_codec_cx_pkt_t * aom_codec_get_cx_data(aom_codec_ctx_t *ctx, aom_codec_iter_t *iter)
Encoded data iterator.
struct aom_codec_cx_pkt aom_codec_cx_pkt_t
Encoder output packet.
aom_codec_err_t aom_codec_encode(aom_codec_ctx_t *ctx, const aom_image_t *img, aom_codec_pts_t pts, unsigned long duration, aom_enc_frame_flags_t flags)
Encode a frame.
#define aom_codec_enc_init(ctx, iface, cfg, flags)
Convenience macro for aom_codec_enc_init_ver()
Definition aom_encoder.h:938
aom_codec_err_t aom_codec_enc_config_default(aom_codec_iface_t *iface, aom_codec_enc_cfg_t *cfg, unsigned int usage)
Get the default configuration for a usage.
struct aom_codec_enc_cfg aom_codec_enc_cfg_t
Encoder configuration structure.
@ AOM_CODEC_CX_FRAME_PKT
Definition aom_encoder.h:108
unsigned int rows
Definition aomcx.h:1599
unsigned int cols
Definition aomcx.h:1600
unsigned char * active_map
specify an on (1) or off (0) each 16x16 region within a frame
Definition aomcx.h:1598
size_t sz
Definition aom_encoder.h:125
enum aom_codec_cx_pkt_kind kind
Definition aom_encoder.h:121
union aom_codec_cx_pkt::@202210014045072156205127107315337341215221351166 data
aom_codec_pts_t pts
time stamp to show frame (in timebase units)
Definition aom_encoder.h:127
aom_codec_frame_flags_t flags
Definition aom_encoder.h:130
struct aom_codec_cx_pkt::@202210014045072156205127107315337341215221351166::@052232317104146204273007241322037340334334344046 frame
void * buf
Definition aom_encoder.h:124
struct aom_rational g_timebase
Stream timebase units.
Definition aom_encoder.h:487
unsigned int g_h
Height of the frame.
Definition aom_encoder.h:433
unsigned int g_lag_in_frames
Allow lagged encoding.
Definition aom_encoder.h:516
unsigned int g_w
Width of the frame.
Definition aom_encoder.h:424
unsigned int rc_target_bitrate
Target data rate.
Definition aom_encoder.h:641
int num
Definition aom_encoder.h:163
int den
Definition aom_encoder.h:164