blob: 4182e11ef1229788f9b5b129a61e7a6de04a7db8 [file] [log] [blame]
Tom Finegan00a35aa2013-11-14 12:37:42 -08001/*
Yaowu Xu9c01aa12016-09-01 14:32:49 -07002 * Copyright (c) 2016, Alliance for Open Media. All rights reserved
Tom Finegan00a35aa2013-11-14 12:37:42 -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.
Tom Finegan00a35aa2013-11-14 12:37:42 -080010 */
11
Tom Finegan00a35aa2013-11-14 12:37:42 -080012#include <stdio.h>
13#include <stdlib.h>
Dmitry Kovalevc2b33682014-01-24 11:20:09 -080014#include <string.h>
15
Yaowu Xuc27fc142016-08-22 16:08:15 -070016#include "aom_ports/mem_ops.h"
Dmitry Kovalev4334c072014-02-26 16:32:09 -080017
Dmitry Kovalevc2b33682014-01-24 11:20:09 -080018#include "./ivfdec.h"
19
20static const char *IVF_SIGNATURE = "DKIF";
Tom Finegan00a35aa2013-11-14 12:37:42 -080021
Dmitry Kovalevdf463722014-01-15 15:10:12 -080022static void fix_framerate(int *num, int *den) {
Yaowu Xuf883b422016-08-30 14:01:10 -070023 // Some versions of aomenc used 1/(2*fps) for the timebase, so
Dmitry Kovalevdf463722014-01-15 15:10:12 -080024 // we can guess the framerate using only the timebase in this
25 // case. Other files would require reading ahead to guess the
26 // timebase, like we do for webm.
James Zern79829142016-06-03 18:04:54 -070027 if (*den > 0 && *den < 1000000000 && *num > 0 && *num < 1000) {
Dmitry Kovalevdf463722014-01-15 15:10:12 -080028 // Correct for the factor of 2 applied to the timebase in the encoder.
29 if (*num & 1)
30 *den *= 2;
31 else
32 *num /= 2;
33 } else {
34 // Don't know FPS for sure, and don't have readahead code
35 // (yet?), so just default to 30fps.
36 *num = 30;
37 *den = 1;
38 }
39}
40
Yaowu Xuf883b422016-08-30 14:01:10 -070041int file_is_ivf(struct AvxInputContext *input_ctx) {
Tom Finegan00a35aa2013-11-14 12:37:42 -080042 char raw_hdr[32];
43 int is_ivf = 0;
44
Tom Finegan00a35aa2013-11-14 12:37:42 -080045 if (fread(raw_hdr, 1, 32, input_ctx->file) == 32) {
Dmitry Kovalevc2b33682014-01-24 11:20:09 -080046 if (memcmp(IVF_SIGNATURE, raw_hdr, 4) == 0) {
Tom Finegan00a35aa2013-11-14 12:37:42 -080047 is_ivf = 1;
48
49 if (mem_get_le16(raw_hdr + 4) != 0) {
clang-format6c4d83e2016-08-08 19:03:30 -070050 fprintf(stderr,
51 "Error: Unrecognized IVF version! This file may not"
Tom Finegan00a35aa2013-11-14 12:37:42 -080052 " decode properly.");
53 }
54
55 input_ctx->fourcc = mem_get_le32(raw_hdr + 8);
56 input_ctx->width = mem_get_le16(raw_hdr + 12);
57 input_ctx->height = mem_get_le16(raw_hdr + 14);
58 input_ctx->framerate.numerator = mem_get_le32(raw_hdr + 16);
59 input_ctx->framerate.denominator = mem_get_le32(raw_hdr + 20);
Dmitry Kovalevdf463722014-01-15 15:10:12 -080060 fix_framerate(&input_ctx->framerate.numerator,
61 &input_ctx->framerate.denominator);
Tom Finegan00a35aa2013-11-14 12:37:42 -080062 }
63 }
64
Yaowu Xua7c7e782013-11-19 10:17:04 -080065 if (!is_ivf) {
Tom Finegan00a35aa2013-11-14 12:37:42 -080066 rewind(input_ctx->file);
Yaowu Xua7c7e782013-11-19 10:17:04 -080067 input_ctx->detect.buf_read = 0;
68 } else {
Tom Finegan00a35aa2013-11-14 12:37:42 -080069 input_ctx->detect.position = 4;
Yaowu Xua7c7e782013-11-19 10:17:04 -080070 }
Tom Finegan00a35aa2013-11-14 12:37:42 -080071 return is_ivf;
72}
73
clang-format6c4d83e2016-08-08 19:03:30 -070074int ivf_read_frame(FILE *infile, uint8_t **buffer, size_t *bytes_read,
75 size_t *buffer_size) {
76 char raw_header[IVF_FRAME_HDR_SZ] = { 0 };
Tom Finegan00a35aa2013-11-14 12:37:42 -080077 size_t frame_size = 0;
Tom Finegan00a35aa2013-11-14 12:37:42 -080078
79 if (fread(raw_header, IVF_FRAME_HDR_SZ, 1, infile) != 1) {
clang-format6c4d83e2016-08-08 19:03:30 -070080 if (!feof(infile)) warn("Failed to read frame size\n");
Tom Finegan00a35aa2013-11-14 12:37:42 -080081 } else {
82 frame_size = mem_get_le32(raw_header);
83
84 if (frame_size > 256 * 1024 * 1024) {
85 warn("Read invalid frame size (%u)\n", (unsigned int)frame_size);
86 frame_size = 0;
87 }
88
89 if (frame_size > *buffer_size) {
90 uint8_t *new_buffer = realloc(*buffer, 2 * frame_size);
91
92 if (new_buffer) {
93 *buffer = new_buffer;
94 *buffer_size = 2 * frame_size;
95 } else {
96 warn("Failed to allocate compressed data buffer\n");
97 frame_size = 0;
98 }
99 }
100 }
101
102 if (!feof(infile)) {
103 if (fread(*buffer, 1, frame_size, infile) != frame_size) {
104 warn("Failed to read full frame\n");
105 return 1;
106 }
107
108 *bytes_read = frame_size;
109 return 0;
110 }
111
112 return 1;
113}