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
46
47
48
49
50#include <stdio.h>
51#include <stdlib.h>
52#include <string.h>
53
56#include "common/tools_common.h"
57#include "common/video_writer.h"
58
59static const char *exec_name;
60
61void usage_exit(void) {
62 fprintf(stderr,
63 "Usage: %s <codec> <width> <height> <infile> <outfile> "
64 "<limit(optional)>\n",
65 exec_name);
66 exit(EXIT_FAILURE);
67}
68
73 int got_pkts = 0;
77 if (res !=
AOM_CODEC_OK) die_codec(ctx,
"Failed to get frame stats.");
78
80 got_pkts = 1;
81
85 stats->
buf = realloc(stats->
buf, stats->
sz + pkt_size);
86 memcpy((uint8_t *)stats->
buf + stats->
sz, pkt_buf, pkt_size);
87 stats->
sz += pkt_size;
88 }
89 }
90
91 return got_pkts;
92}
93
97 int got_pkts = 0;
101 if (res !=
AOM_CODEC_OK) die_codec(ctx,
"Failed to encode frame.");
102
104 got_pkts = 1;
107
108 if (!aom_video_writer_write_frame(writer, pkt->
data.
frame.
buf,
111 die_codec(ctx, "Failed to write compressed frame.");
112 printf(keyframe ? "K" : ".");
113 fflush(stdout);
114 }
115 }
116
117 return got_pkts;
118}
119
124 int frame_count = 0;
126
128 die("Failed to initialize encoder");
129
130
131 while (aom_img_read(raw, infile) && frame_count < limit) {
132 ++frame_count;
133 get_frame_stats(&codec, raw, frame_count, 1, 0, &stats);
134 }
135
136
137 while (get_frame_stats(&codec, NULL, frame_count, 1, 0, &stats)) {
138 }
139
140 printf("Pass 0 complete. Processed %d frames.\n", frame_count);
142
143 return stats;
144}
145
146static void pass1(
aom_image_t *raw, FILE *infile,
const char *outfile_name,
148 int limit) {
149 AvxVideoInfo info = { get_fourcc_by_aom_encoder(encoder),
153 0 };
154 AvxVideoWriter *writer = NULL;
156 int frame_count = 0;
157
158 writer = aom_video_writer_open(outfile_name, kContainerIVF, &info);
159 if (!writer) die("Failed to open %s for writing", outfile_name);
160
162 die("Failed to initialize encoder");
163
165 die_codec(&codec, "Failed to set cpu-used");
166
167
168 while (aom_img_read(raw, infile) && frame_count < limit) {
169 ++frame_count;
170 encode_frame(&codec, raw, frame_count, 1, 0, writer);
171 }
172
173
174 while (encode_frame(&codec, NULL, -1, 1, 0, writer)) {
175 }
176
177 printf("\n");
178
180
181 aom_video_writer_close(writer);
182
183 printf("Pass 1 complete. Processed %d frames.\n", frame_count);
184}
185
186int main(int argc, char **argv) {
187 FILE *infile = NULL;
188 int w, h;
194
195 const int fps = 30;
196 const int bitrate = 200;
197 const char *const codec_arg = argv[1];
198 const char *const width_arg = argv[2];
199 const char *const height_arg = argv[3];
200 const char *const infile_arg = argv[4];
201 const char *const outfile_arg = argv[5];
202 int limit = 0;
203 exec_name = argv[0];
204
205 if (argc < 6) die("Invalid number of arguments");
206
207 if (argc > 6) limit = (int)strtol(argv[6], NULL, 0);
208
209 if (limit == 0) limit = 100;
210
212 if (!encoder) die("Unsupported codec.");
213
214 w = (int)strtol(width_arg, NULL, 0);
215 h = (int)strtol(height_arg, NULL, 0);
216
217 if (w <= 0 || h <= 0 || (w % 2) != 0 || (h % 2) != 0)
218 die("Invalid frame size: %dx%d", w, h);
219
221 die("Failed to allocate image", w, h);
222
224
225
227 if (res) die_codec(&codec, "Failed to get default codec config.");
228
234
235 if (!(infile = fopen(infile_arg, "rb")))
236 die("Failed to open %s for reading", infile_arg);
237
238
240 stats = pass0(&raw, infile, encoder, &cfg, limit);
241
242
243 rewind(infile);
246 pass1(&raw, infile, outfile_arg, encoder, &cfg, limit);
248
250 fclose(infile);
251
252 return EXIT_SUCCESS;
253}
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.
@ AOME_SET_CPUUSED
Codec control function to set encoder internal speed settings, int parameter.
Definition aomcx.h:213
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
int64_t aom_codec_pts_t
Time Stamp Type.
Definition aom_codec.h:235
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.
struct aom_fixed_buf aom_fixed_buf_t
Generic fixed size buffer structure.
#define aom_codec_enc_init(ctx, iface, cfg, flags)
Convenience macro for aom_codec_enc_init_ver()
Definition aom_encoder.h:931
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.
long aom_enc_frame_flags_t
Encoded Frame Flags.
Definition aom_encoder.h:357
struct aom_codec_enc_cfg aom_codec_enc_cfg_t
Encoder configuration structure.
@ AOM_RC_LAST_PASS
Definition aom_encoder.h:161
@ AOM_RC_FIRST_PASS
Definition aom_encoder.h:160
@ AOM_CODEC_CX_FRAME_PKT
Definition aom_encoder.h:98
@ AOM_CODEC_STATS_PKT
Definition aom_encoder.h:99
size_t sz
Definition aom_encoder.h:115
enum aom_codec_cx_pkt_kind kind
Definition aom_encoder.h:111
aom_fixed_buf_t twopass_stats
Definition aom_encoder.h:128
union aom_codec_cx_pkt::@202210014045072156205127107315337341215221351166 data
aom_codec_pts_t pts
time stamp to show frame (in timebase units)
Definition aom_encoder.h:117
aom_codec_frame_flags_t flags
Definition aom_encoder.h:120
struct aom_codec_cx_pkt::@202210014045072156205127107315337341215221351166::@052232317104146204273007241322037340334334344046 frame
void * buf
Definition aom_encoder.h:114
struct aom_rational g_timebase
Stream timebase units.
Definition aom_encoder.h:464
unsigned int g_h
Height of the frame.
Definition aom_encoder.h:415
unsigned int g_w
Width of the frame.
Definition aom_encoder.h:406
enum aom_enc_pass g_pass
Multi-pass Encoding Mode.
Definition aom_encoder.h:479
unsigned int rc_target_bitrate
Target data rate.
Definition aom_encoder.h:618
aom_fixed_buf_t rc_twopass_stats_in
Two-pass stats buffer.
Definition aom_encoder.h:605
size_t sz
Definition aom_encoder.h:78
void * buf
Definition aom_encoder.h:77
int num
Definition aom_encoder.h:153
int den
Definition aom_encoder.h:154