2 * Copyright (c) 2010 The WebM project authors. All Rights Reserved.
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.
10 #ifndef TOOLS_COMMON_H_
11 #define TOOLS_COMMON_H_
15 #include "./vpx_config.h"
16 #include "vpx/vpx_codec.h"
17 #include "vpx/vpx_image.h"
18 #include "vpx/vpx_integer.h"
21 #include "./y4minput.h"
25 /* MSVS uses _f{seek,tell}i64. */
26 #define fseeko _fseeki64
27 #define ftello _ftelli64
29 /* MinGW uses f{seek,tell}o64 for large files. */
30 #define fseeko fseeko64
31 #define ftello ftello64
36 #include <io.h> /* NOLINT */
37 #define snprintf _snprintf
38 #define isatty _isatty
39 #define fileno _fileno
41 #include <unistd.h> /* NOLINT */
43 #endif /* CONFIG_OS_SUPPORT */
45 /* Use 32-bit file operations in WebM file format when building ARM
46 * executables (.axf) with RVCT. */
47 #if !CONFIG_OS_SUPPORT
50 #endif /* CONFIG_OS_SUPPORT */
52 #define LITERALU64(hi, lo) ((((uint64_t)hi) << 32) | lo)
58 #define IVF_FRAME_HDR_SZ (4 + 8) /* 4 byte size + 8 byte timestamp */
59 #define IVF_FILE_HDR_SZ 32
61 #define RAW_FRAME_HDR_SZ sizeof(uint32_t)
63 #define VP8_FOURCC 0x30385056
64 #define VP9_FOURCC 0x30395056
73 struct FileTypeDetectionBuffer
{
84 struct VpxInputContext
{
88 struct FileTypeDetectionBuffer detect
;
89 enum VideoFileType file_type
;
95 struct VpxRational framerate
;
105 /* Sets a stdio stream into binary mode */
106 FILE *set_binary_mode(FILE *stream
);
108 void die(const char *fmt
, ...);
109 void fatal(const char *fmt
, ...);
110 void warn(const char *fmt
, ...);
112 void die_codec(vpx_codec_ctx_t
*ctx
, const char *s
);
114 /* The tool including this file must define usage_exit() */
117 int read_yuv_frame(struct VpxInputContext
*input_ctx
, vpx_image_t
*yuv_frame
);
119 typedef struct VpxInterface
{
120 const char *const name
;
121 const uint32_t fourcc
;
122 vpx_codec_iface_t
*(*const interface
)();
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
);
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
);
134 // TODO(dkovalev): move this function to vpx_image.{c, h}, so it will be part
135 // of vpx_image_t support
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
);
138 void vpx_img_write(const vpx_image_t
*img
, FILE *file
);
139 int vpx_img_read(vpx_image_t
*img
, FILE *file
);
141 double sse_to_psnr(double samples
, double peak
, double mse
);
147 #endif // TOOLS_COMMON_H_