blob: 7dfd5ad214c017884571436b7846bc3e4ce20918 [file] [log] [blame]
John Koleszarc377bf02010-11-02 09:11:57 -04001/*
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 Finegan03848f52013-11-05 10:02:18 -080010#ifndef TOOLS_COMMON_H_
11#define TOOLS_COMMON_H_
12
13#include <stdio.h>
14
15#define VP8_FOURCC (0x30385056)
16#define VP9_FOURCC (0x30395056)
17#define VP8_FOURCC_MASK (0x00385056)
18#define VP9_FOURCC_MASK (0x00395056)
John Koleszarc377bf02010-11-02 09:11:57 -040019
20/* Sets a stdio stream into binary mode */
John Koleszarc6b90392012-07-13 15:21:29 -070021FILE *set_binary_mode(FILE *stream);
John Koleszarc377bf02010-11-02 09:11:57 -040022
Tom Finegan03848f52013-11-05 10:02:18 -080023void die(const char *fmt, ...);
24void fatal(const char *fmt, ...);
25void warn(const char *fmt, ...);
26
27/* The tool including this file must define usage_exit() */
28void usage_exit();
29
30#endif // TOOLS_COMMON_H_