AOMedia Codec SDK
scalable_encoder
1 /*
2  * Copyright (c) 2018, Alliance for Open Media. All rights reserved
3  *
4  * This source code is subject to the terms of the BSD 2 Clause License and
5  * the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License
6  * was not distributed with this source code in the LICENSE file, you can
7  * obtain it at www.aomedia.org/license/software. If the Alliance for Open
8  * Media Patent License 1.0 was not distributed with this source code in the
9  * PATENTS file, you can obtain it at www.aomedia.org/license/patent.
10  */
11 
12 // Scalable Encoder
13 // ==============
14 //
15 // This is an example of a scalable encoder loop. It takes two input files in
16 // YV12 format, passes it through the encoder, and writes the compressed
17 // frames to disk in OBU format.
18 //
19 // Getting The Default Configuration
20 // ---------------------------------
21 // Encoders have the notion of "usage profiles." For example, an encoder
22 // may want to publish default configurations for both a video
23 // conferencing application and a best quality offline encoder. These
24 // obviously have very different default settings. Consult the
25 // documentation for your codec to see if it provides any default
26 // configurations. All codecs provide a default configuration, number 0,
27 // which is valid for material in the vacinity of QCIF/QVGA.
28 //
29 // Updating The Configuration
30 // ---------------------------------
31 // Almost all applications will want to update the default configuration
32 // with settings specific to their usage. Here we set the width and height
33 // of the video file to that specified on the command line. We also scale
34 // the default bitrate based on the ratio between the default resolution
35 // and the resolution specified on the command line.
36 //
37 // Encoding A Frame
38 // ----------------
39 // The frame is read as a continuous block (size = width * height * 3 / 2)
40 // from the input file. If a frame was read (the input file has not hit
41 // EOF) then the frame is passed to the encoder. Otherwise, a NULL
42 // is passed, indicating the End-Of-Stream condition to the encoder. The
43 // `frame_cnt` is reused as the presentation time stamp (PTS) and each
44 // frame is shown for one frame-time in duration. The flags parameter is
45 // unused in this example.
46 
47 // Forced Keyframes
48 // ----------------
49 // Keyframes can be forced by setting the AOM_EFLAG_FORCE_KF bit of the
50 // flags passed to `aom_codec_control()`. In this example, we force a
51 // keyframe every <keyframe-interval> frames. Note, the output stream can
52 // contain additional keyframes beyond those that have been forced using the
53 // AOM_EFLAG_FORCE_KF flag because of automatic keyframe placement by the
54 // encoder.
55 //
56 // Processing The Encoded Data
57 // ---------------------------
58 // Each packet of type `AOM_CODEC_CX_FRAME_PKT` contains the encoded data
59 // for this frame. We write a IVF frame header, followed by the raw data.
60 //
61 // Cleanup
62 // -------
63 // The `aom_codec_destroy` call frees any memory allocated by the codec.
64 //
65 // Error Handling
66 // --------------
67 // This example does not special case any error return codes. If there was
68 // an error, a descriptive message is printed and the program exits. With
69 // few exeptions, aom_codec functions return an enumerated error status,
70 // with the value `0` indicating success.
71 
72 #include <stdio.h>
73 #include <stdlib.h>
74 #include <string.h>
75 
76 #include "aom/aom_encoder.h"
77 #include "aom/aomcx.h"
78 #include "av1/common/enums.h"
79 #include "common/tools_common.h"
80 #include "common/video_writer.h"
81 
82 static const char *exec_name;
83 
84 void usage_exit(void) {
85  fprintf(stderr,
86  "Usage: %s <codec> <width> <height> <infile0> <infile1> "
87  "<outfile> <frames to encode>\n"
88  "See comments in scalable_encoder.c for more information.\n",
89  exec_name);
90  exit(EXIT_FAILURE);
91 }
92 
93 static int encode_frame(aom_codec_ctx_t *codec, aom_image_t *img,
94  int frame_index, int flags, FILE *outfile) {
95  int got_pkts = 0;
96  aom_codec_iter_t iter = NULL;
97  const aom_codec_cx_pkt_t *pkt = NULL;
98  const aom_codec_err_t res =
99  aom_codec_encode(codec, img, frame_index, 1, flags);
100  if (res != AOM_CODEC_OK) die_codec(codec, "Failed to encode frame");
101 
102  while ((pkt = aom_codec_get_cx_data(codec, &iter)) != NULL) {
103  got_pkts = 1;
104 
105  if (pkt->kind == AOM_CODEC_CX_FRAME_PKT) {
106  const int keyframe = (pkt->data.frame.flags & AOM_FRAME_IS_KEY) != 0;
107  if (fwrite(pkt->data.frame.buf, 1, pkt->data.frame.sz, outfile) !=
108  pkt->data.frame.sz) {
109  die_codec(codec, "Failed to write compressed frame");
110  }
111  printf(keyframe ? "K" : ".");
112  printf(" %6d\n", (int)pkt->data.frame.sz);
113  fflush(stdout);
114  }
115  }
116 
117  return got_pkts;
118 }
119 
120 int main(int argc, char **argv) {
121  FILE *infile0 = NULL;
122  FILE *infile1 = NULL;
123  aom_codec_ctx_t codec;
125  int frame_count = 0;
126  aom_image_t raw0, raw1;
127  aom_codec_err_t res;
128  AvxVideoInfo info;
129  const AvxInterface *encoder = NULL;
130  const int fps = 30;
131  const int bitrate = 200;
132  int keyframe_interval = 0;
133  int max_frames = 0;
134  int frames_encoded = 0;
135  const char *codec_arg = NULL;
136  const char *width_arg = NULL;
137  const char *height_arg = NULL;
138  const char *infile0_arg = NULL;
139  const char *infile1_arg = NULL;
140  const char *outfile_arg = NULL;
141  // const char *keyframe_interval_arg = NULL;
142  FILE *outfile = NULL;
143 
144  exec_name = argv[0];
145 
146  // Clear explicitly, as simply assigning "{ 0 }" generates
147  // "missing-field-initializers" warning in some compilers.
148  memset(&info, 0, sizeof(info));
149 
150  if (argc != 8) die("Invalid number of arguments");
151 
152  codec_arg = argv[1];
153  width_arg = argv[2];
154  height_arg = argv[3];
155  infile0_arg = argv[4];
156  infile1_arg = argv[5];
157  outfile_arg = argv[6];
158  max_frames = (int)strtol(argv[7], NULL, 0);
159 
160  encoder = get_aom_encoder_by_name(codec_arg);
161  if (!encoder) die("Unsupported codec.");
162 
163  info.codec_fourcc = encoder->fourcc;
164  info.frame_width = (int)strtol(width_arg, NULL, 0);
165  info.frame_height = (int)strtol(height_arg, NULL, 0);
166  info.time_base.numerator = 1;
167  info.time_base.denominator = fps;
168 
169  if (info.frame_width <= 0 || info.frame_height <= 0 ||
170  (info.frame_width % 2) != 0 || (info.frame_height % 2) != 0) {
171  die("Invalid frame size: %dx%d", info.frame_width, info.frame_height);
172  }
173 
174  if (!aom_img_alloc(&raw0, AOM_IMG_FMT_I420, info.frame_width,
175  info.frame_height, 1)) {
176  die("Failed to allocate image for layer 0.");
177  }
178  if (!aom_img_alloc(&raw1, AOM_IMG_FMT_I420, info.frame_width,
179  info.frame_height, 1)) {
180  die("Failed to allocate image for layer 1.");
181  }
182 
183  // keyframe_interval = (int)strtol(keyframe_interval_arg, NULL, 0);
184  keyframe_interval = 100;
185  if (keyframe_interval < 0) die("Invalid keyframe interval value.");
186 
187  printf("Using %s\n", aom_codec_iface_name(encoder->codec_interface()));
188 
189  res = aom_codec_enc_config_default(encoder->codec_interface(), &cfg, 0);
190  if (res) die_codec(&codec, "Failed to get default codec config.");
191 
192  cfg.g_w = info.frame_width;
193  cfg.g_h = info.frame_height;
194  cfg.g_timebase.num = info.time_base.numerator;
195  cfg.g_timebase.den = info.time_base.denominator;
196  cfg.rc_target_bitrate = bitrate;
197  cfg.g_error_resilient = 0;
198  cfg.g_lag_in_frames = 0;
199  cfg.rc_end_usage = AOM_Q;
200  cfg.save_as_annexb = 0;
201 
202  outfile = fopen(outfile_arg, "wb");
203  if (!outfile) die("Failed to open %s for writing.", outfile_arg);
204 
205  if (!(infile0 = fopen(infile0_arg, "rb")))
206  die("Failed to open %s for reading.", infile0_arg);
207  if (!(infile1 = fopen(infile1_arg, "rb")))
208  die("Failed to open %s for reading.", infile0_arg);
209 
210  if (aom_codec_enc_init(&codec, encoder->codec_interface(), &cfg, 0))
211  die_codec(&codec, "Failed to initialize encoder");
212  if (aom_codec_control(&codec, AOME_SET_CPUUSED, 8))
213  die_codec(&codec, "Failed to set cpu to 8");
214 
216  die_codec(&codec, "Failed to set tile columns to 2");
217  if (aom_codec_control(&codec, AV1E_SET_NUM_TG, 3))
218  die_codec(&codec, "Failed to set num of tile groups to 3");
219 
221  die_codec(&codec, "Failed to set number of spatial layers to 2");
222 
223  // Encode frames.
224  while (aom_img_read(&raw0, infile0)) {
225  int flags = 0;
226 
227  // configure and encode base layer
228 
229  if (keyframe_interval > 0 && frames_encoded % keyframe_interval == 0)
230  flags |= AOM_EFLAG_FORCE_KF;
231  else
232  // use previous base layer (LAST) as sole reference
233  // save this frame as LAST to be used as reference by enhanmcent layer
234  // and next base layer
240  cfg.g_w = info.frame_width;
241  cfg.g_h = info.frame_height;
242  if (aom_codec_enc_config_set(&codec, &cfg))
243  die_codec(&codec, "Failed to set enc cfg for layer 0");
245  die_codec(&codec, "Failed to set layer id to 0");
246  if (aom_codec_control(&codec, AOME_SET_CQ_LEVEL, 62))
247  die_codec(&codec, "Failed to set cq level");
248  encode_frame(&codec, &raw0, frame_count++, flags, outfile);
249 
250  // configure and encode enhancement layer
251 
252  // use LAST (base layer) as sole reference
258  cfg.g_w = info.frame_width;
259  cfg.g_h = info.frame_height;
260  aom_img_read(&raw1, infile1);
261  if (aom_codec_enc_config_set(&codec, &cfg))
262  die_codec(&codec, "Failed to set enc cfg for layer 1");
264  die_codec(&codec, "Failed to set layer id to 1");
265  if (aom_codec_control(&codec, AOME_SET_CQ_LEVEL, 10))
266  die_codec(&codec, "Failed to set cq level");
267  encode_frame(&codec, &raw1, frame_count++, flags, outfile);
268 
269  frames_encoded++;
270 
271  if (max_frames > 0 && frames_encoded >= max_frames) break;
272  }
273 
274  // Flush encoder.
275  while (encode_frame(&codec, NULL, -1, 0, outfile)) continue;
276 
277  printf("\n");
278  fclose(infile0);
279  fclose(infile1);
280  printf("Processed %d frames.\n", frame_count / 2);
281 
282  aom_img_free(&raw0);
283  aom_img_free(&raw1);
284  if (aom_codec_destroy(&codec)) die_codec(&codec, "Failed to destroy codec.");
285 
286  fclose(outfile);
287 
288  return EXIT_SUCCESS;
289 }
AOM_IMG_FMT_I420
@ AOM_IMG_FMT_I420
Definition: aom_image.h:45
AOM_EFLAG_NO_UPD_ENTROPY
#define AOM_EFLAG_NO_UPD_ENTROPY
Disable entropy update.
Definition: aomcx.h:120
aom_codec_enc_cfg
Encoder configuration structure.
Definition: aom_encoder.h:228
AOME_SET_CPUUSED
@ AOME_SET_CPUUSED
Codec control function to set encoder internal speed settings.
Definition: aomcx.h:182
AOM_EFLAG_NO_REF_BWD
#define AOM_EFLAG_NO_REF_BWD
Don't reference the bwd reference frame.
Definition: aomcx.h:86
aom_codec_enc_cfg::g_lag_in_frames
unsigned int g_lag_in_frames
Allow lagged encoding.
Definition: aom_encoder.h:354
AOME_SET_SPATIAL_LAYER_ID
@ AOME_SET_SPATIAL_LAYER_ID
Codec control function to set encoder spatial layer id.
Definition: aomcx.h:172
AOM_EFLAG_NO_REF_LAST3
#define AOM_EFLAG_NO_REF_LAST3
Don't reference the last3 frame.
Definition: aomcx.h:64
aom_codec_ctx
Codec context structure.
Definition: aom_codec.h:204
aom_codec_iter_t
const typedef void * aom_codec_iter_t
Iterator.
Definition: aom_codec.h:194
aomcx.h
Provides definitions for using AOM or AV1 encoder algorithm within the aom Codec Interface.
AOM_CODEC_OK
@ AOM_CODEC_OK
Operation completed without error.
Definition: aom_codec.h:103
AOM_EFLAG_FORCE_KF
#define AOM_EFLAG_FORCE_KF
Definition: aom_encoder.h:220
aom_codec_enc_cfg::rc_target_bitrate
unsigned int rc_target_bitrate
Target data rate.
Definition: aom_encoder.h:481
aom_img_free
void aom_img_free(aom_image_t *img)
Close an image descriptor.
aom_codec_enc_config_set
aom_codec_err_t aom_codec_enc_config_set(aom_codec_ctx_t *ctx, const aom_codec_enc_cfg_t *cfg)
Set or change configuration.
aom_codec_iface_name
const char * aom_codec_iface_name(aom_codec_iface_t *iface)
Return the name for a given interface.
aom_rational::den
int den
Definition: aom_encoder.h:180
aom_codec_destroy
aom_codec_err_t aom_codec_destroy(aom_codec_ctx_t *ctx)
Destroy a codec instance.
aom_img_alloc
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_codec_control
#define aom_codec_control(ctx, id, data)
aom_codec_control wrapper macro
Definition: aom_codec.h:414
AV1E_SET_NUM_TG
@ AV1E_SET_NUM_TG
Codec control function to set a maximum number of tile groups.
Definition: aomcx.h:710
AOM_EFLAG_NO_UPD_LAST
#define AOM_EFLAG_NO_UPD_LAST
Don't update the last frame.
Definition: aomcx.h:100
aom_codec_enc_cfg::rc_end_usage
enum aom_rc_mode rc_end_usage
Rate control algorithm to use.
Definition: aom_encoder.h:461
aom_codec_enc_cfg::g_w
unsigned int g_w
Width of the frame.
Definition: aom_encoder.h:267
aom_codec_enc_cfg::g_error_resilient
aom_codec_er_flags_t g_error_resilient
Enable error resilient modes.
Definition: aom_encoder.h:333
AOM_EFLAG_NO_UPD_GF
#define AOM_EFLAG_NO_UPD_GF
Don't update the golden frame.
Definition: aomcx.h:107
aom_codec_err_t
aom_codec_err_t
Algorithm return codes.
Definition: aom_codec.h:101
AOM_EFLAG_NO_REF_GF
#define AOM_EFLAG_NO_REF_GF
Don't reference the golden frame.
Definition: aomcx.h:71
aom_encoder.h
Describes the encoder algorithm interface to applications.
aom_codec_get_cx_data
const aom_codec_cx_pkt_t * aom_codec_get_cx_data(aom_codec_ctx_t *ctx, aom_codec_iter_t *iter)
Encoded data iterator.
aom_codec_encode
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.
AOM_Q
@ AOM_Q
Definition: aom_encoder.h:195
aom_codec_cx_pkt::data
union aom_codec_cx_pkt::@1 data
aom_codec_cx_pkt::frame
struct aom_codec_cx_pkt::@1::@2 frame
aom_codec_cx_pkt
Encoder output packet.
Definition: aom_encoder.h:138
AOM_EFLAG_NO_UPD_ARF
#define AOM_EFLAG_NO_UPD_ARF
Don't update the alternate reference frame.
Definition: aomcx.h:114
AV1E_SET_TILE_COLUMNS
@ AV1E_SET_TILE_COLUMNS
Codec control function to set number of tile columns.
Definition: aomcx.h:306
AOM_EFLAG_NO_REF_LAST2
#define AOM_EFLAG_NO_REF_LAST2
Don't reference the last2 frame.
Definition: aomcx.h:57
aom_codec_enc_cfg::g_h
unsigned int g_h
Height of the frame.
Definition: aom_encoder.h:276
AOM_CODEC_CX_FRAME_PKT
@ AOM_CODEC_CX_FRAME_PKT
Definition: aom_encoder.h:126
aom_codec_enc_cfg::save_as_annexb
unsigned int save_as_annexb
Bitstream syntax mode.
Definition: aom_encoder.h:683
AOM_EFLAG_NO_REF_ARF2
#define AOM_EFLAG_NO_REF_ARF2
Don't reference the alt2 reference frame.
Definition: aomcx.h:93
aom_codec_enc_init
#define aom_codec_enc_init(ctx, iface, cfg, flags)
Convenience macro for aom_codec_enc_init_ver()
Definition: aom_encoder.h:764
AOME_SET_CQ_LEVEL
@ AOME_SET_CQ_LEVEL
Codec control function to set constrained quality level.
Definition: aomcx.h:227
aom_image
Image Descriptor.
Definition: aom_image.h:141
aom_codec_cx_pkt::kind
enum aom_codec_cx_pkt_kind kind
Definition: aom_encoder.h:139
aom_codec_enc_cfg::g_timebase
struct aom_rational g_timebase
Stream timebase units.
Definition: aom_encoder.h:325
AOM_FRAME_IS_KEY
#define AOM_FRAME_IS_KEY
Definition: aom_encoder.h:96
AOM_EFLAG_NO_REF_ARF
#define AOM_EFLAG_NO_REF_ARF
Don't reference the alternate reference frame.
Definition: aomcx.h:79
AOME_SET_NUMBER_SPATIAL_LAYERS
@ AOME_SET_NUMBER_SPATIAL_LAYERS
Codec control function to set number of spatial layers.
Definition: aomcx.h:244
aom_codec_enc_config_default
aom_codec_err_t aom_codec_enc_config_default(aom_codec_iface_t *iface, aom_codec_enc_cfg_t *cfg, unsigned int reserved)
Get a default configuration.
aom_rational::num
int num
Definition: aom_encoder.h:179