84 #include "../tools_common.h" 85 #include "../video_reader.h" 86 #include "./vpx_config.h" 88 static const char *exec_name;
90 void usage_exit(
void) {
91 fprintf(stderr,
"Usage: %s <infile> <outfile>\n", exec_name);
95 int main(
int argc,
char **argv) {
99 VpxVideoReader *reader = NULL;
100 const VpxInterface *decoder = NULL;
101 const VpxVideoInfo *info = NULL;
105 if (argc != 3) die(
"Invalid number of arguments.");
107 reader = vpx_video_reader_open(argv[1]);
108 if (!reader) die(
"Failed to open %s for reading.", argv[1]);
110 if (!(outfile = fopen(argv[2],
"wb")))
111 die(
"Failed to open %s for writing.", argv[2]);
113 info = vpx_video_reader_get_info(reader);
115 decoder = get_vpx_decoder_by_fourcc(info->codec_fourcc);
116 if (!decoder) die(
"Unknown input codec.");
121 die_codec(&codec,
"Failed to initialize decoder.");
123 while (vpx_video_reader_read_frame(reader)) {
126 size_t frame_size = 0;
127 const unsigned char *frame =
128 vpx_video_reader_get_frame(reader, &frame_size);
130 die_codec(&codec,
"Failed to decode frame.");
133 vpx_img_write(img, outfile);
138 printf(
"Processed %d frames.\n", frame_cnt);
141 printf(
"Play: ffplay -f rawvideo -pix_fmt yuv420p -s %dx%d %s\n",
142 info->frame_width, info->frame_height, argv[2]);
144 vpx_video_reader_close(reader);
Image Descriptor.
Definition: vpx_image.h:88
Describes the decoder algorithm interface to applications.
const char * vpx_codec_iface_name(vpx_codec_iface_t *iface)
Return the name for a given interface.
#define vpx_codec_dec_init(ctx, iface, cfg, flags)
Convenience macro for vpx_codec_dec_init_ver()
Definition: vpx_decoder.h:144
vpx_codec_err_t vpx_codec_decode(vpx_codec_ctx_t *ctx, const uint8_t *data, unsigned int data_sz, void *user_priv, long deadline)
Decode data.
vpx_codec_err_t vpx_codec_destroy(vpx_codec_ctx_t *ctx)
Destroy a codec instance.
const void * vpx_codec_iter_t
Iterator.
Definition: vpx_codec.h:187
vpx_image_t * vpx_codec_get_frame(vpx_codec_ctx_t *ctx, vpx_codec_iter_t *iter)
Decoded frames iterator.
Codec context structure.
Definition: vpx_codec.h:197