46#include "aom/aom_integer.h"
48#include "common/tools_common.h"
49#include "common/video_reader.h"
50#include "common/video_writer.h"
54static const char *exec_name;
56void usage_exit(
void) {
57 fprintf(stderr,
"Usage: %s <infile> <outfile> <num_references> <tile_list>\n",
62#define ALIGN_POWER_OF_TWO(value, n) \
63 (((value) + ((1 << (n)) - 1)) & ~((1 << (n)) - 1))
65const int output_frame_width = 512;
66const int output_frame_height = 512;
93 default: die(
"Invalid image format");
97static void process_tile_list(
const TILE_LIST_INFO *tiles,
int num_tiles,
100 unsigned char *tl_buf, AvxVideoWriter *writer,
101 uint8_t output_frame_width_in_tiles_minus_1,
102 uint8_t output_frame_height_in_tiles_minus_1) {
103 unsigned char *tl = tl_buf;
104 unsigned char *saved_obu_size_loc = NULL;
105 uint32_t tile_list_obu_header_size = 0;
106 uint32_t tile_list_obu_size = 0;
107 int num_tiles_minus_1 = num_tiles - 1;
111 int obu_type = OBU_TILE_LIST;
112 int obu_has_size_field = 1;
113 *tl++ = (obu_type << 3) | (obu_has_size_field << 1);
114 tile_list_obu_header_size++;
117 saved_obu_size_loc = tl;
118 for (i = 0; i < 4; i++) {
121 tile_list_obu_header_size += 4;
124 *tl++ = output_frame_width_in_tiles_minus_1;
125 *tl++ = output_frame_height_in_tiles_minus_1;
126 *tl++ = (num_tiles_minus_1 >> 8) & 0xff;
127 *tl++ = num_tiles_minus_1 & 0xff;
128 tile_list_obu_size += 4;
131 for (i = 0; i <= num_tiles_minus_1; i++) {
134 int image_idx = tiles[i].image_idx;
135 int ref_idx = tiles[i].reference_idx;
136 int tc = tiles[i].tile_col;
137 int tr = tiles[i].tile_row;
139 size_t frame_size = frame_sizes[image_idx];
140 const unsigned char *frame = frames[image_idx];
147 if (aom_status) die_codec(codec,
"Failed to decode tile.");
157 uint32_t tile_info_bytes = 5;
162 *tl++ = (coded_tile_data_size_minus_1 >> 8) & 0xff;
163 *tl++ = coded_tile_data_size_minus_1 & 0xff;
169 tile_list_obu_size +=
174 size_t bytes_written = 0;
175 if (aom_uleb_encode_fixed_size(tile_list_obu_size, 4, 4, saved_obu_size_loc,
177 die_codec(codec,
"Failed to encode the tile list obu size.");
180 if (!aom_video_writer_write_frame(
181 writer, tl_buf, tile_list_obu_header_size + tile_list_obu_size,
183 die_codec(codec,
"Failed to copy compressed tile list.");
186int main(
int argc,
char **argv) {
187 AvxVideoReader *reader = NULL;
188 AvxVideoWriter *writer = NULL;
189 const AvxVideoInfo *info = NULL;
193 const char *tile_list_file = NULL;
196 if (argc != 5) die(
"Invalid number of arguments.");
198 reader = aom_video_reader_open(argv[1]);
199 if (!reader) die(
"Failed to open %s for reading.", argv[1]);
201 num_references = (int)strtol(argv[3], NULL, 0);
202 info = aom_video_reader_get_info(reader);
204 aom_video_reader_set_fourcc(reader, AV1_FOURCC);
208 writer = aom_video_writer_open(argv[2], kContainerIVF, info);
209 if (!writer) die(
"Failed to open %s for writing", argv[2]);
211 tile_list_file = argv[4];
214 if (!decoder) die(
"Unknown input codec.");
219 die(
"Failed to initialize decoder.");
224 printf(
"Reading %d reference images.\n", num_references);
225 for (i = 0; i < num_references; ++i) {
226 aom_video_reader_read_frame(reader);
228 size_t frame_size = 0;
229 const unsigned char *frame =
230 aom_video_reader_get_frame(reader, &frame_size);
234 if (!aom_video_writer_write_frame(writer, frame, frame_size, pts))
235 die_codec(&codec,
"Failed to copy compressed anchor frame.");
238 die_codec(&codec,
"Failed to decode frame.");
245 FILE *infile = aom_video_reader_get_file(reader);
247 const FileOffset camera_frame_pos = ftello(infile);
249 printf(
"Loading compressed frames into memory.\n");
253 while (aom_video_reader_read_frame(reader)) {
256 if (num_frames < 1) die(
"Input light field has no frames.");
259 unsigned char **frames =
260 (
unsigned char **)malloc(num_frames *
sizeof(
unsigned char *));
261 size_t *frame_sizes = (
size_t *)malloc(num_frames *
sizeof(
size_t));
262 if (!(frames && frame_sizes)) die(
"Failed to allocate frame data.");
265 fseeko(infile, camera_frame_pos, SEEK_SET);
266 for (
int f = 0; f < num_frames; ++f) {
267 aom_video_reader_read_frame(reader);
268 size_t frame_size = 0;
269 const unsigned char *frame =
270 aom_video_reader_get_frame(reader, &frame_size);
271 frames[f] = (
unsigned char *)malloc(frame_size *
sizeof(
unsigned char));
272 if (!frames[f]) die(
"Failed to allocate frame data.");
273 memcpy(frames[f], frame, frame_size);
274 frame_sizes[f] = frame_size;
276 printf(
"Read %d frames.\n", num_frames);
281 size_t frame_size = frame_sizes[0];
282 const unsigned char *frame = frames[0];
283 pts = num_references;
293 if (aom_status) die_codec(&codec,
"Failed to decode tile.");
298 size_t obu_size_offset =
302 uint32_t frame_header_size = (uint32_t)frame_header_info.
extra_size - 1;
303 size_t bytes_to_copy =
304 obu_size_offset + length_field_size + frame_header_size;
306 unsigned char *frame_hdr_buf = (
unsigned char *)malloc(bytes_to_copy);
307 if (frame_hdr_buf == NULL)
308 die_codec(&codec,
"Failed to allocate frame header buffer.");
310 memcpy(frame_hdr_buf, frame, bytes_to_copy);
313 size_t bytes_written = 0;
314 if (aom_uleb_encode_fixed_size(
315 frame_header_size, length_field_size, length_field_size,
316 frame_hdr_buf + obu_size_offset, &bytes_written))
317 die_codec(&codec,
"Failed to encode the tile list obu size.");
320 if (!aom_video_writer_write_frame(writer, frame_hdr_buf, bytes_to_copy,
322 die_codec(&codec,
"Failed to copy compressed camera frame header.");
329 die_codec(&codec,
"Failed to get the image format");
330 const int bps = get_image_bps(ref_fmt);
331 if (!bps) die_codec(&codec,
"Invalid image format.");
333 unsigned int tile_size = 0;
335 die_codec(&codec,
"Failed to get the tile size");
336 const unsigned int tile_width = tile_size >> 16;
337 const unsigned int tile_height = tile_size & 65535;
339 const size_t data_sz = MAX_TILES * ALIGN_POWER_OF_TWO(tile_width, 5) *
340 ALIGN_POWER_OF_TWO(tile_height, 5) * bps / 8;
342 unsigned char *tl_buf = (
unsigned char *)malloc(data_sz);
343 if (tl_buf == NULL) die_codec(&codec,
"Failed to allocate tile list buffer.");
346 const uint8_t output_frame_width_in_tiles_minus_1 =
347 output_frame_width / tile_width - 1;
348 const uint8_t output_frame_height_in_tiles_minus_1 =
349 output_frame_height / tile_height - 1;
351 printf(
"Reading tile list from file.\n");
353 FILE *tile_list_fptr = fopen(tile_list_file,
"r");
354 if (!tile_list_fptr) die_codec(&codec,
"Failed to open tile list file.");
356 TILE_LIST_INFO tiles[MAX_TILES];
357 while ((fgets(line, 1024, tile_list_fptr)) != NULL) {
358 if (line[0] ==
'F' || num_tiles >= MAX_TILES) {
362 process_tile_list(tiles, num_tiles, tl_pts, frames, frame_sizes, &codec,
363 tl_buf, writer, output_frame_width_in_tiles_minus_1,
364 output_frame_height_in_tiles_minus_1);
369 if (line[0] ==
'F') {
372 if (sscanf(line,
"%d %d %d %d", &tiles[num_tiles].image_idx,
373 &tiles[num_tiles].reference_idx, &tiles[num_tiles].tile_col,
374 &tiles[num_tiles].tile_row) == 4) {
375 if (tiles[num_tiles].image_idx >= num_frames) {
376 die(
"Tile list image_idx out of bounds: %d >= %d.",
377 tiles[num_tiles].image_idx, num_frames);
379 if (tiles[num_tiles].reference_idx >= num_references) {
380 die(
"Tile list reference_idx out of bounds: %d >= %d.",
381 tiles[num_tiles].reference_idx, num_references);
388 process_tile_list(tiles, num_tiles, tl_pts, frames, frame_sizes, &codec,
389 tl_buf, writer, output_frame_width_in_tiles_minus_1,
390 output_frame_height_in_tiles_minus_1);
394 const int num_tile_lists = (int)(tl_pts - pts);
395 printf(
"Finished processing tile lists. Num tile lists: %d.\n",
398 for (
int f = 0; f < num_frames; ++f) {
404 aom_video_writer_close(writer);
405 aom_video_reader_close(reader);
Describes the codec algorithm interface to applications.
Describes the decoder algorithm interface to applications.
Describes the encoder algorithm interface to applications.
@ AOM_IMG_FMT_I42216
Definition aom_image.h:58
@ AOM_IMG_FMT_I42016
Definition aom_image.h:56
@ AOM_IMG_FMT_I444
Definition aom_image.h:50
@ AOM_IMG_FMT_I422
Definition aom_image.h:49
@ AOM_IMG_FMT_I44416
Definition aom_image.h:59
@ AOM_IMG_FMT_I420
Definition aom_image.h:45
enum aom_img_fmt aom_img_fmt_t
List of supported image formats.
Provides definitions for using AOM or AV1 within the aom Decoder interface.
@ AV1_SET_TILE_MODE
Codec control function to set the tile coding mode, unsigned int parameter.
Definition aomdx.h:316
@ AV1D_GET_TILE_SIZE
Codec control function to get the width and height (in pixels) of the tiles in a tile list,...
Definition aomdx.h:243
@ AV1_SET_DECODE_TILE_ROW
Codec control function to set the range of tile decoding, int parameter.
Definition aomdx.h:307
@ AV1D_GET_IMG_FORMAT
Codec control function to get the image format of the stream, aom_img_fmt_t* parameter.
Definition aomdx.h:235
@ AV1D_GET_TILE_DATA
Codec control function to get the start address and size of a tile in the coded bitstream,...
Definition aomdx.h:326
@ AV1D_GET_FRAME_HEADER_INFO
Codec control function to get the frame header information of an encoded frame, aom_tile_data* parame...
Definition aomdx.h:321
@ AV1D_EXT_TILE_DEBUG
Codec control function to enable the ext-tile software debug and testing code in the decoder,...
Definition aomdx.h:339
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
int64_t aom_codec_pts_t
Time Stamp Type.
Definition aom_codec.h:252
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
aom_codec_err_t aom_codec_decode(aom_codec_ctx_t *ctx, const uint8_t *data, size_t data_sz, void *user_priv)
Decode data.
#define aom_codec_dec_init(ctx, iface, cfg, flags)
Convenience macro for aom_codec_dec_init_ver()
Definition aom_decoder.h:129
Codec context structure.
Definition aom_codec.h:315
Structure to hold a tile's start address and size in the bitstream.
Definition aomdx.h:91
const void * coded_tile_data
Definition aomdx.h:95
size_t coded_tile_data_size
Definition aomdx.h:93
size_t extra_size
Definition aomdx.h:97