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 | |
| 15 | #define VP8_FOURCC (0x30385056) |
| 16 | #define VP9_FOURCC (0x30395056) |
| 17 | #define VP8_FOURCC_MASK (0x00385056) |
| 18 | #define VP9_FOURCC_MASK (0x00395056) |
John Koleszar | c377bf0 | 2010-11-02 09:11:57 -0400 | [diff] [blame] | 19 | |
| 20 | /* Sets a stdio stream into binary mode */ |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 21 | FILE *set_binary_mode(FILE *stream); |
John Koleszar | c377bf0 | 2010-11-02 09:11:57 -0400 | [diff] [blame] | 22 | |
Tom Finegan | 03848f5 | 2013-11-05 10:02:18 -0800 | [diff] [blame] | 23 | void die(const char *fmt, ...); |
| 24 | void fatal(const char *fmt, ...); |
| 25 | void warn(const char *fmt, ...); |
| 26 | |
| 27 | /* The tool including this file must define usage_exit() */ |
| 28 | void usage_exit(); |
| 29 | |
| 30 | #endif // TOOLS_COMMON_H_ |