Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 1 | /* |
Yaowu Xu | 9c01aa1 | 2016-09-01 14:32:49 -0700 | [diff] [blame] | 2 | * Copyright (c) 2016, Alliance for Open Media. All rights reserved |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 3 | * |
Yaowu Xu | 9c01aa1 | 2016-09-01 14:32:49 -0700 | [diff] [blame] | 4 | * 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 Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 10 | */ |
| 11 | |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 12 | #include <stdio.h> |
| 13 | #include <stdlib.h> |
Dmitry Kovalev | c2b3368 | 2014-01-24 11:20:09 -0800 | [diff] [blame] | 14 | #include <string.h> |
| 15 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 16 | #include "aom_ports/mem_ops.h" |
Dmitry Kovalev | 4334c07 | 2014-02-26 16:32:09 -0800 | [diff] [blame] | 17 | |
Dmitry Kovalev | c2b3368 | 2014-01-24 11:20:09 -0800 | [diff] [blame] | 18 | #include "./ivfdec.h" |
| 19 | |
| 20 | static const char *IVF_SIGNATURE = "DKIF"; |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 21 | |
Dmitry Kovalev | df46372 | 2014-01-15 15:10:12 -0800 | [diff] [blame] | 22 | static void fix_framerate(int *num, int *den) { |
Sebastien Alaiwan | deaf05e | 2016-11-25 10:39:39 +0100 | [diff] [blame] | 23 | if (*den <= 0 || *den >= 1000000000 || *num <= 0 || *num >= 1000) { |
| 24 | // framerate seems to be invalid, just default to 30fps. |
Dmitry Kovalev | df46372 | 2014-01-15 15:10:12 -0800 | [diff] [blame] | 25 | *num = 30; |
| 26 | *den = 1; |
| 27 | } |
| 28 | } |
| 29 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 30 | int file_is_ivf(struct AvxInputContext *input_ctx) { |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 31 | char raw_hdr[32]; |
| 32 | int is_ivf = 0; |
| 33 | |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 34 | if (fread(raw_hdr, 1, 32, input_ctx->file) == 32) { |
Dmitry Kovalev | c2b3368 | 2014-01-24 11:20:09 -0800 | [diff] [blame] | 35 | if (memcmp(IVF_SIGNATURE, raw_hdr, 4) == 0) { |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 36 | is_ivf = 1; |
| 37 | |
| 38 | if (mem_get_le16(raw_hdr + 4) != 0) { |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 39 | fprintf(stderr, |
| 40 | "Error: Unrecognized IVF version! This file may not" |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 41 | " decode properly."); |
| 42 | } |
| 43 | |
| 44 | input_ctx->fourcc = mem_get_le32(raw_hdr + 8); |
| 45 | input_ctx->width = mem_get_le16(raw_hdr + 12); |
| 46 | input_ctx->height = mem_get_le16(raw_hdr + 14); |
| 47 | input_ctx->framerate.numerator = mem_get_le32(raw_hdr + 16); |
| 48 | input_ctx->framerate.denominator = mem_get_le32(raw_hdr + 20); |
Dmitry Kovalev | df46372 | 2014-01-15 15:10:12 -0800 | [diff] [blame] | 49 | fix_framerate(&input_ctx->framerate.numerator, |
| 50 | &input_ctx->framerate.denominator); |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 51 | } |
| 52 | } |
| 53 | |
Yaowu Xu | a7c7e78 | 2013-11-19 10:17:04 -0800 | [diff] [blame] | 54 | if (!is_ivf) { |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 55 | rewind(input_ctx->file); |
Yaowu Xu | a7c7e78 | 2013-11-19 10:17:04 -0800 | [diff] [blame] | 56 | input_ctx->detect.buf_read = 0; |
| 57 | } else { |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 58 | input_ctx->detect.position = 4; |
Yaowu Xu | a7c7e78 | 2013-11-19 10:17:04 -0800 | [diff] [blame] | 59 | } |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 60 | return is_ivf; |
| 61 | } |
| 62 | |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 63 | int ivf_read_frame(FILE *infile, uint8_t **buffer, size_t *bytes_read, |
| 64 | size_t *buffer_size) { |
| 65 | char raw_header[IVF_FRAME_HDR_SZ] = { 0 }; |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 66 | size_t frame_size = 0; |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 67 | |
| 68 | if (fread(raw_header, IVF_FRAME_HDR_SZ, 1, infile) != 1) { |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 69 | if (!feof(infile)) warn("Failed to read frame size\n"); |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 70 | } else { |
| 71 | frame_size = mem_get_le32(raw_header); |
| 72 | |
| 73 | if (frame_size > 256 * 1024 * 1024) { |
| 74 | warn("Read invalid frame size (%u)\n", (unsigned int)frame_size); |
| 75 | frame_size = 0; |
| 76 | } |
| 77 | |
| 78 | if (frame_size > *buffer_size) { |
| 79 | uint8_t *new_buffer = realloc(*buffer, 2 * frame_size); |
| 80 | |
| 81 | if (new_buffer) { |
| 82 | *buffer = new_buffer; |
| 83 | *buffer_size = 2 * frame_size; |
| 84 | } else { |
| 85 | warn("Failed to allocate compressed data buffer\n"); |
| 86 | frame_size = 0; |
| 87 | } |
| 88 | } |
| 89 | } |
| 90 | |
| 91 | if (!feof(infile)) { |
| 92 | if (fread(*buffer, 1, frame_size, infile) != frame_size) { |
| 93 | warn("Failed to read full frame\n"); |
| 94 | return 1; |
| 95 | } |
| 96 | |
| 97 | *bytes_read = frame_size; |
| 98 | return 0; |
| 99 | } |
| 100 | |
| 101 | return 1; |
| 102 | } |