| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2013 The WebM project authors. All Rights Reserved. | 2 * Copyright (c) 2013 The WebM project authors. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 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 | 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 | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 #ifndef VPXENC_H_ | 10 #ifndef VPXENC_H_ |
| 11 #define VPXENC_H_ | 11 #define VPXENC_H_ |
| 12 | 12 |
| 13 #include "vpx/vpx_encoder.h" | 13 #include "vpx/vpx_encoder.h" |
| 14 | 14 |
| 15 #ifdef __cplusplus | 15 #ifdef __cplusplus |
| 16 extern "C" { | 16 extern "C" { |
| 17 #endif | 17 #endif |
| 18 | 18 |
| 19 enum TestDecodeFatality { | 19 enum TestDecodeFatality { |
| 20 TEST_DECODE_OFF, | 20 TEST_DECODE_OFF, |
| 21 TEST_DECODE_FATAL, | 21 TEST_DECODE_FATAL, |
| 22 TEST_DECODE_WARN, | 22 TEST_DECODE_WARN, |
| 23 }; | 23 }; |
| 24 | 24 |
| 25 typedef enum { | 25 typedef enum { |
| 26 I420, // 4:2:0 8+ bit-depth | 26 I420, // 4:2:0 8+ bit-depth |
| 27 I422, // 4:2:2 8+ bit-depth | 27 I422, // 4:2:2 8+ bit-depth |
| 28 I444, // 4:4:4 8+ bit-depth | 28 I444, // 4:4:4 8+ bit-depth |
| 29 I440, // 4:4:0 8+ bit-depth |
| 29 YV12, // 4:2:0 with uv flipped, only 8-bit depth | 30 YV12, // 4:2:0 with uv flipped, only 8-bit depth |
| 30 } ColorInputType; | 31 } ColorInputType; |
| 31 | 32 |
| 32 struct VpxInterface; | 33 struct VpxInterface; |
| 33 | 34 |
| 34 /* Configuration elements common to all streams. */ | 35 /* Configuration elements common to all streams. */ |
| 35 struct VpxEncoderConfig { | 36 struct VpxEncoderConfig { |
| 36 const struct VpxInterface *codec; | 37 const struct VpxInterface *codec; |
| 37 int passes; | 38 int passes; |
| 38 int pass; | 39 int pass; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 54 int disable_warnings; | 55 int disable_warnings; |
| 55 int disable_warning_prompt; | 56 int disable_warning_prompt; |
| 56 int experimental_bitstream; | 57 int experimental_bitstream; |
| 57 }; | 58 }; |
| 58 | 59 |
| 59 #ifdef __cplusplus | 60 #ifdef __cplusplus |
| 60 } // extern "C" | 61 } // extern "C" |
| 61 #endif | 62 #endif |
| 62 | 63 |
| 63 #endif // VPXENC_H_ | 64 #endif // VPXENC_H_ |
| OLD | NEW |