blob: 214401958aec8ebc03c1fcc8f6a160ca5d7a3854 [file] [log] [blame]
Dmitry Kovalev50fa5852014-01-07 15:15:25 -08001/*
Yaowu Xu9c01aa12016-09-01 14:32:49 -07002 * Copyright (c) 2016, Alliance for Open Media. All rights reserved
Dmitry Kovalev50fa5852014-01-07 15:15:25 -08003 *
Yaowu Xu9c01aa12016-09-01 14:32:49 -07004 * 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.
Dmitry Kovalev50fa5852014-01-07 15:15:25 -080010 */
11
12// Decode With Drops Example
13// =========================
14//
15// This is an example utility which drops a series of frames, as specified
16// on the command line. This is useful for observing the error recovery
17// features of the codec.
18//
19// Usage
20// -----
21// This example adds a single argument to the `simple_decoder` example,
22// which specifies the range or pattern of frames to drop. The parameter is
23// parsed as follows:
24//
25// Dropping A Range Of Frames
26// --------------------------
27// To drop a range of frames, specify the starting frame and the ending
28// frame to drop, separated by a dash. The following command will drop
29// frames 5 through 10 (base 1).
30//
31// $ ./decode_with_drops in.ivf out.i420 5-10
32//
33//
34// Dropping A Pattern Of Frames
35// ----------------------------
36// To drop a pattern of frames, specify the number of frames to drop and
37// the number of frames after which to repeat the pattern, separated by
38// a forward-slash. The following command will drop 3 of 7 frames.
39// Specifically, it will decode 4 frames, then drop 3 frames, and then
40// repeat.
41//
42// $ ./decode_with_drops in.ivf out.i420 3/7
43//
44//
45// Extra Variables
46// ---------------
47// This example maintains the pattern passed on the command line in the
48// `n`, `m`, and `is_range` variables:
49//
50//
51// Making The Drop Decision
52// ------------------------
53// The example decides whether to drop the frame based on the current
54// frame number, immediately before decoding the frame.
55
Dmitry Kovalev50fa5852014-01-07 15:15:25 -080056#include <stdio.h>
57#include <stdlib.h>
58#include <string.h>
Dmitry Kovalev834f2fb2014-01-28 11:25:24 -080059
Yaowu Xuf883b422016-08-30 14:01:10 -070060#include "aom/aom_decoder.h"
Tom Finegan77902132018-05-21 10:19:15 -070061#include "aom/aomdx.h"
62#include "common/tools_common.h"
63#include "common/video_reader.h"
Dmitry Kovalev50fa5852014-01-07 15:15:25 -080064
Dmitry Kovalev834f2fb2014-01-28 11:25:24 -080065static const char *exec_name;
Dmitry Kovalev50fa5852014-01-07 15:15:25 -080066
James Zern59e7a472015-05-09 10:33:26 -070067void usage_exit(void) {
Dmitry Kovalev834f2fb2014-01-28 11:25:24 -080068 fprintf(stderr, "Usage: %s <infile> <outfile> <N-M|N/M>\n", exec_name);
69 exit(EXIT_FAILURE);
Dmitry Kovalev50fa5852014-01-07 15:15:25 -080070}
71
Dmitry Kovalev50fa5852014-01-07 15:15:25 -080072int main(int argc, char **argv) {
Dmitry Kovalev37e6fd32014-02-05 18:34:46 -080073 int frame_cnt = 0;
74 FILE *outfile = NULL;
Yaowu Xuf883b422016-08-30 14:01:10 -070075 aom_codec_ctx_t codec;
76 const AvxInterface *decoder = NULL;
77 AvxVideoReader *reader = NULL;
78 const AvxVideoInfo *info = NULL;
Dmitry Kovalev37e6fd32014-02-05 18:34:46 -080079 int n = 0;
80 int m = 0;
81 int is_range = 0;
82 char *nptr = NULL;
Dmitry Kovalev50fa5852014-01-07 15:15:25 -080083
Dmitry Kovalev834f2fb2014-01-28 11:25:24 -080084 exec_name = argv[0];
85
clang-format397d9642016-08-08 18:51:16 -070086 if (argc != 4) die("Invalid number of arguments.");
Dmitry Kovalev834f2fb2014-01-28 11:25:24 -080087
Yaowu Xuf883b422016-08-30 14:01:10 -070088 reader = aom_video_reader_open(argv[1]);
clang-format397d9642016-08-08 18:51:16 -070089 if (!reader) die("Failed to open %s for reading.", argv[1]);
Dmitry Kovalev834f2fb2014-01-28 11:25:24 -080090
91 if (!(outfile = fopen(argv[2], "wb")))
Dmitry Kovalev37e6fd32014-02-05 18:34:46 -080092 die("Failed to open %s for writing.", argv[2]);
Dmitry Kovalev834f2fb2014-01-28 11:25:24 -080093
James Zern097fef92017-03-23 00:25:55 -070094 n = (int)strtol(argv[3], &nptr, 0);
95 m = (int)strtol(nptr + 1, NULL, 0);
Dmitry Kovalev834f2fb2014-01-28 11:25:24 -080096 is_range = (*nptr == '-');
97 if (!n || !m || (*nptr != '-' && *nptr != '/'))
Dmitry Kovalev37e6fd32014-02-05 18:34:46 -080098 die("Couldn't parse pattern %s.\n", argv[3]);
Dmitry Kovalev834f2fb2014-01-28 11:25:24 -080099
Yaowu Xuf883b422016-08-30 14:01:10 -0700100 info = aom_video_reader_get_info(reader);
Dmitry Kovalev834f2fb2014-01-28 11:25:24 -0800101
Yaowu Xuf883b422016-08-30 14:01:10 -0700102 decoder = get_aom_decoder_by_fourcc(info->codec_fourcc);
clang-format397d9642016-08-08 18:51:16 -0700103 if (!decoder) die("Unknown input codec.");
Dmitry Kovalev834f2fb2014-01-28 11:25:24 -0800104
Yaowu Xuf883b422016-08-30 14:01:10 -0700105 printf("Using %s\n", aom_codec_iface_name(decoder->codec_interface()));
Dmitry Kovalev834f2fb2014-01-28 11:25:24 -0800106
Yaowu Xuf883b422016-08-30 14:01:10 -0700107 if (aom_codec_dec_init(&codec, decoder->codec_interface(), NULL, 0))
Dmitry Kovalev37e6fd32014-02-05 18:34:46 -0800108 die_codec(&codec, "Failed to initialize decoder.");
Dmitry Kovalev834f2fb2014-01-28 11:25:24 -0800109
Yaowu Xuf883b422016-08-30 14:01:10 -0700110 while (aom_video_reader_read_frame(reader)) {
111 aom_codec_iter_t iter = NULL;
112 aom_image_t *img = NULL;
Dmitry Kovalev834f2fb2014-01-28 11:25:24 -0800113 size_t frame_size = 0;
114 int skip;
clang-format397d9642016-08-08 18:51:16 -0700115 const unsigned char *frame =
Yaowu Xuf883b422016-08-30 14:01:10 -0700116 aom_video_reader_get_frame(reader, &frame_size);
Dmitry Kovalev834f2fb2014-01-28 11:25:24 -0800117 ++frame_cnt;
118
119 skip = (is_range && frame_cnt >= n && frame_cnt <= m) ||
120 (!is_range && m - (frame_cnt - 1) % m <= n);
121
122 if (!skip) {
123 putc('.', stdout);
Tom Finegan21f48252018-05-15 11:31:04 -0700124 if (aom_codec_decode(&codec, frame, frame_size, NULL))
Frank Bossenf9db0e02018-03-21 16:27:13 -0400125 die_codec(&codec, "Failed to decode frame.");
Dmitry Kovalev834f2fb2014-01-28 11:25:24 -0800126
Yaowu Xuf883b422016-08-30 14:01:10 -0700127 while ((img = aom_codec_get_frame(&codec, &iter)) != NULL)
128 aom_img_write(img, outfile);
Dmitry Kovalev834f2fb2014-01-28 11:25:24 -0800129 } else {
130 putc('X', stdout);
Dmitry Kovalev50fa5852014-01-07 15:15:25 -0800131 }
Dmitry Kovalev50fa5852014-01-07 15:15:25 -0800132
Dmitry Kovalev834f2fb2014-01-28 11:25:24 -0800133 fflush(stdout);
134 }
Dmitry Kovalev50fa5852014-01-07 15:15:25 -0800135
Dmitry Kovalev834f2fb2014-01-28 11:25:24 -0800136 printf("Processed %d frames.\n", frame_cnt);
Yaowu Xuf883b422016-08-30 14:01:10 -0700137 if (aom_codec_destroy(&codec)) die_codec(&codec, "Failed to destroy codec.");
Dmitry Kovalev50fa5852014-01-07 15:15:25 -0800138
Dmitry Kovalev834f2fb2014-01-28 11:25:24 -0800139 printf("Play: ffplay -f rawvideo -pix_fmt yuv420p -s %dx%d %s\n",
Dmitry Kovalev37e6fd32014-02-05 18:34:46 -0800140 info->frame_width, info->frame_height, argv[2]);
Dmitry Kovalev50fa5852014-01-07 15:15:25 -0800141
Yaowu Xuf883b422016-08-30 14:01:10 -0700142 aom_video_reader_close(reader);
Dmitry Kovalev834f2fb2014-01-28 11:25:24 -0800143 fclose(outfile);
Dmitry Kovalev50fa5852014-01-07 15:15:25 -0800144
Dmitry Kovalev834f2fb2014-01-28 11:25:24 -0800145 return EXIT_SUCCESS;
Dmitry Kovalev50fa5852014-01-07 15:15:25 -0800146}