John Koleszar | c377bf0 | 2010-11-02 09:11:57 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2010 The WebM project authors. All Rights Reserved. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license |
| 5 | * that can be found in the LICENSE file in the root of the source |
| 6 | * tree. An additional intellectual property rights grant can be found |
| 7 | * in the file PATENTS. All contributing project authors may |
| 8 | * be found in the AUTHORS file in the root of the source tree. |
| 9 | */ |
Tom Finegan | 03848f5 | 2013-11-05 10:02:18 -0800 | [diff] [blame] | 10 | #ifndef TOOLS_COMMON_H_ |
| 11 | #define TOOLS_COMMON_H_ |
| 12 | |
| 13 | #include <stdio.h> |
| 14 | |
Tom Finegan | e657919 | 2013-11-11 06:48:18 -0800 | [diff] [blame] | 15 | #include "./vpx_config.h" |
Dmitry Kovalev | 7ec2769 | 2014-01-27 13:40:29 -0800 | [diff] [blame] | 16 | #include "vpx/vpx_codec.h" |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 17 | #include "vpx/vpx_image.h" |
| 18 | #include "vpx/vpx_integer.h" |
| 19 | |
| 20 | #if CONFIG_ENCODERS |
| 21 | #include "./y4minput.h" |
| 22 | #endif |
Tom Finegan | e657919 | 2013-11-11 06:48:18 -0800 | [diff] [blame] | 23 | |
| 24 | #if defined(_MSC_VER) |
James Zern | dae4cfc | 2014-04-02 20:06:07 -0700 | [diff] [blame] | 25 | /* MSVS uses _f{seek,tell}i64. */ |
Tom Finegan | e657919 | 2013-11-11 06:48:18 -0800 | [diff] [blame] | 26 | #define fseeko _fseeki64 |
| 27 | #define ftello _ftelli64 |
| 28 | #elif defined(_WIN32) |
James Zern | e3578af | 2014-04-17 10:47:08 -0700 | [diff] [blame^] | 29 | /* MinGW uses f{seek,tell}o64 for large files. */ |
Tom Finegan | e657919 | 2013-11-11 06:48:18 -0800 | [diff] [blame] | 30 | #define fseeko fseeko64 |
| 31 | #define ftello ftello64 |
Tom Finegan | e657919 | 2013-11-11 06:48:18 -0800 | [diff] [blame] | 32 | #endif /* _WIN32 */ |
| 33 | |
| 34 | #if CONFIG_OS_SUPPORT |
| 35 | #if defined(_MSC_VER) |
| 36 | #include <io.h> /* NOLINT */ |
| 37 | #define snprintf _snprintf |
| 38 | #define isatty _isatty |
| 39 | #define fileno _fileno |
| 40 | #else |
| 41 | #include <unistd.h> /* NOLINT */ |
| 42 | #endif /* _MSC_VER */ |
| 43 | #endif /* CONFIG_OS_SUPPORT */ |
| 44 | |
| 45 | /* Use 32-bit file operations in WebM file format when building ARM |
| 46 | * executables (.axf) with RVCT. */ |
| 47 | #if !CONFIG_OS_SUPPORT |
Tom Finegan | e657919 | 2013-11-11 06:48:18 -0800 | [diff] [blame] | 48 | #define fseeko fseek |
| 49 | #define ftello ftell |
| 50 | #endif /* CONFIG_OS_SUPPORT */ |
| 51 | |
| 52 | #define LITERALU64(hi, lo) ((((uint64_t)hi) << 32) | lo) |
| 53 | |
| 54 | #ifndef PATH_MAX |
| 55 | #define PATH_MAX 512 |
| 56 | #endif |
| 57 | |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 58 | #define IVF_FRAME_HDR_SZ (4 + 8) /* 4 byte size + 8 byte timestamp */ |
| 59 | #define IVF_FILE_HDR_SZ 32 |
| 60 | |
| 61 | #define RAW_FRAME_HDR_SZ sizeof(uint32_t) |
| 62 | |
Dmitry Kovalev | cccadd2 | 2014-01-15 14:01:38 -0800 | [diff] [blame] | 63 | #define VP8_FOURCC 0x30385056 |
| 64 | #define VP9_FOURCC 0x30395056 |
John Koleszar | c377bf0 | 2010-11-02 09:11:57 -0400 | [diff] [blame] | 65 | |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 66 | enum VideoFileType { |
| 67 | FILE_TYPE_RAW, |
| 68 | FILE_TYPE_IVF, |
| 69 | FILE_TYPE_Y4M, |
| 70 | FILE_TYPE_WEBM |
| 71 | }; |
| 72 | |
| 73 | struct FileTypeDetectionBuffer { |
| 74 | char buf[4]; |
| 75 | size_t buf_read; |
| 76 | size_t position; |
| 77 | }; |
| 78 | |
| 79 | struct VpxRational { |
| 80 | int numerator; |
| 81 | int denominator; |
| 82 | }; |
| 83 | |
| 84 | struct VpxInputContext { |
| 85 | const char *filename; |
| 86 | FILE *file; |
James Zern | e3578af | 2014-04-17 10:47:08 -0700 | [diff] [blame^] | 87 | int64_t length; |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 88 | struct FileTypeDetectionBuffer detect; |
| 89 | enum VideoFileType file_type; |
Tom Finegan | 2abe2d4 | 2013-11-18 14:39:51 -0800 | [diff] [blame] | 90 | uint32_t width; |
| 91 | uint32_t height; |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 92 | int use_i420; |
| 93 | int only_i420; |
Tom Finegan | 2abe2d4 | 2013-11-18 14:39:51 -0800 | [diff] [blame] | 94 | uint32_t fourcc; |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 95 | struct VpxRational framerate; |
| 96 | #if CONFIG_ENCODERS |
| 97 | y4m_input y4m; |
| 98 | #endif |
| 99 | }; |
| 100 | |
| 101 | #ifdef __cplusplus |
| 102 | extern "C" { |
| 103 | #endif |
| 104 | |
John Koleszar | c377bf0 | 2010-11-02 09:11:57 -0400 | [diff] [blame] | 105 | /* Sets a stdio stream into binary mode */ |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 106 | FILE *set_binary_mode(FILE *stream); |
John Koleszar | c377bf0 | 2010-11-02 09:11:57 -0400 | [diff] [blame] | 107 | |
Tom Finegan | 03848f5 | 2013-11-05 10:02:18 -0800 | [diff] [blame] | 108 | void die(const char *fmt, ...); |
| 109 | void fatal(const char *fmt, ...); |
| 110 | void warn(const char *fmt, ...); |
| 111 | |
Dmitry Kovalev | 7ec2769 | 2014-01-27 13:40:29 -0800 | [diff] [blame] | 112 | void die_codec(vpx_codec_ctx_t *ctx, const char *s); |
| 113 | |
Tom Finegan | 03848f5 | 2013-11-05 10:02:18 -0800 | [diff] [blame] | 114 | /* The tool including this file must define usage_exit() */ |
| 115 | void usage_exit(); |
| 116 | |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 117 | int read_yuv_frame(struct VpxInputContext *input_ctx, vpx_image_t *yuv_frame); |
| 118 | |
Dmitry Kovalev | 70d9664 | 2014-02-11 21:12:23 -0800 | [diff] [blame] | 119 | typedef struct VpxInterface { |
| 120 | const char *const name; |
| 121 | const uint32_t fourcc; |
| 122 | vpx_codec_iface_t *(*const interface)(); |
| 123 | } VpxInterface; |
| 124 | |
| 125 | int get_vpx_encoder_count(); |
| 126 | const VpxInterface *get_vpx_encoder_by_index(int i); |
| 127 | const VpxInterface *get_vpx_encoder_by_name(const char *name); |
| 128 | |
| 129 | int get_vpx_decoder_count(); |
| 130 | const VpxInterface *get_vpx_decoder_by_index(int i); |
| 131 | const VpxInterface *get_vpx_decoder_by_name(const char *name); |
| 132 | const VpxInterface *get_vpx_decoder_by_fourcc(uint32_t fourcc); |
Dmitry Kovalev | 7ec2769 | 2014-01-27 13:40:29 -0800 | [diff] [blame] | 133 | |
| 134 | // TODO(dkovalev): move this function to vpx_image.{c, h}, so it will be part |
| 135 | // of vpx_image_t support |
Dmitry Kovalev | 2bdd43d | 2014-02-12 18:36:36 -0800 | [diff] [blame] | 136 | int vpx_img_plane_width(const vpx_image_t *img, int plane); |
| 137 | int vpx_img_plane_height(const vpx_image_t *img, int plane); |
Dmitry Kovalev | 7ec2769 | 2014-01-27 13:40:29 -0800 | [diff] [blame] | 138 | void vpx_img_write(const vpx_image_t *img, FILE *file); |
Dmitry Kovalev | 592936b | 2014-02-07 11:37:39 -0800 | [diff] [blame] | 139 | int vpx_img_read(vpx_image_t *img, FILE *file); |
| 140 | |
Dmitry Kovalev | 2dad0e1 | 2014-02-27 14:00:41 -0800 | [diff] [blame] | 141 | double sse_to_psnr(double samples, double peak, double mse); |
| 142 | |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 143 | #ifdef __cplusplus |
| 144 | } /* extern "C" */ |
| 145 | #endif |
| 146 | |
Tom Finegan | 03848f5 | 2013-11-05 10:02:18 -0800 | [diff] [blame] | 147 | #endif // TOOLS_COMMON_H_ |