18#include "common/tools_common.h"
19#include "common/video_writer.h"
21static const char *exec_name;
23void usage_exit(
void) {
25 "lossless_encoder: Example demonstrating lossless "
26 "encoding feature. Supports raw input only.\n");
27 fprintf(stderr,
"Usage: %s <width> <height> <infile> <outfile>\n", exec_name);
32 int frame_index,
int flags, AvxVideoWriter *writer) {
38 if (res !=
AOM_CODEC_OK) die_codec(codec,
"Failed to encode frame");
45 if (!aom_video_writer_write_frame(writer, pkt->
data.
frame.
buf,
48 die_codec(codec,
"Failed to write compressed frame");
50 printf(keyframe ?
"K" :
".");
58int main(
int argc,
char **argv) {
65 AvxVideoWriter *writer = NULL;
72 memset(&info, 0,
sizeof(info));
74 if (argc < 5) die(
"Invalid number of arguments");
77 if (!encoder) die(
"Unsupported codec.");
79 info.codec_fourcc = get_fourcc_by_aom_encoder(encoder);
80 info.frame_width = (int)strtol(argv[1], NULL, 0);
81 info.frame_height = (int)strtol(argv[2], NULL, 0);
82 info.time_base.numerator = 1;
83 info.time_base.denominator = fps;
85 if (info.frame_width <= 0 || info.frame_height <= 0 ||
86 (info.frame_width % 2) != 0 || (info.frame_height % 2) != 0) {
87 die(
"Invalid frame size: %dx%d", info.frame_width, info.frame_height);
91 info.frame_height, 1)) {
92 die(
"Failed to allocate image.");
99 if (res) die_codec(&codec,
"Failed to get default codec config.");
101 cfg.
g_w = info.frame_width;
102 cfg.
g_h = info.frame_height;
106 writer = aom_video_writer_open(argv[4], kContainerIVF, &info);
107 if (!writer) die(
"Failed to open %s for writing.", argv[4]);
109 if (!(infile = fopen(argv[3],
"rb")))
110 die(
"Failed to open %s for reading.", argv[3]);
113 die(
"Failed to initialize encoder");
116 die_codec(&codec,
"Failed to use lossless mode");
119 while (aom_img_read(&raw, infile)) {
120 encode_frame(&codec, &raw, frame_count++, 0, writer);
124 while (encode_frame(&codec, NULL, -1, 0, writer)) {
129 printf(
"Processed %d frames.\n", frame_count);
134 aom_video_writer_close(writer);
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
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.
@ AV1E_SET_LOSSLESS
Codec control function to set lossless encoding mode, unsigned int parameter.
Definition aomcx.h:353
const char * aom_codec_iface_name(aom_codec_iface_t *iface)
Return the name for a given interface.
const struct aom_codec_iface aom_codec_iface_t
Codec interface structure.
Definition aom_codec.h:271
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
#define AOM_CODEC_CONTROL_TYPECHECKED(ctx, id, data)
aom_codec_control wrapper macro (adds type-checking, less flexible)
Definition aom_codec.h:542
const void * aom_codec_iter_t
Iterator.
Definition aom_codec.h:305
#define AOM_FRAME_IS_KEY
Definition aom_codec.h:288
@ 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.
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:943
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.
@ AOM_CODEC_CX_FRAME_PKT
Definition aom_encoder.h:110
Codec context structure.
Definition aom_codec.h:315
Encoder output packet.
Definition aom_encoder.h:122
size_t sz
Definition aom_encoder.h:127
enum aom_codec_cx_pkt_kind kind
Definition aom_encoder.h:123
union aom_codec_cx_pkt::@1 data
aom_codec_pts_t pts
time stamp to show frame (in timebase units)
Definition aom_encoder.h:129
struct aom_codec_cx_pkt::@1::@2 frame
aom_codec_frame_flags_t flags
Definition aom_encoder.h:132
void * buf
Definition aom_encoder.h:126
Encoder configuration structure.
Definition aom_encoder.h:387
struct aom_rational g_timebase
Stream timebase units.
Definition aom_encoder.h:489
unsigned int g_h
Height of the frame.
Definition aom_encoder.h:435
unsigned int g_w
Width of the frame.
Definition aom_encoder.h:426
Image Descriptor.
Definition aom_image.h:182
int num
Definition aom_encoder.h:165
int den
Definition aom_encoder.h:166