| 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 struct VpxInterface; |
| 26 |
| 25 /* Configuration elements common to all streams. */ | 27 /* Configuration elements common to all streams. */ |
| 26 struct VpxEncoderConfig { | 28 struct VpxEncoderConfig { |
| 27 const struct codec_item *codec; | 29 const struct VpxInterface *codec; |
| 28 int passes; | 30 int passes; |
| 29 int pass; | 31 int pass; |
| 30 int usage; | 32 int usage; |
| 31 int deadline; | 33 int deadline; |
| 32 int use_i420; | 34 int use_i420; |
| 33 int quiet; | 35 int quiet; |
| 34 int verbose; | 36 int verbose; |
| 35 int limit; | 37 int limit; |
| 36 int skip_frames; | 38 int skip_frames; |
| 37 int show_psnr; | 39 int show_psnr; |
| 38 enum TestDecodeFatality test_decode; | 40 enum TestDecodeFatality test_decode; |
| 39 int have_framerate; | 41 int have_framerate; |
| 40 struct vpx_rational framerate; | 42 struct vpx_rational framerate; |
| 41 int out_part; | 43 int out_part; |
| 42 int debug; | 44 int debug; |
| 43 int show_q_hist_buckets; | 45 int show_q_hist_buckets; |
| 44 int show_rate_hist_buckets; | 46 int show_rate_hist_buckets; |
| 45 int disable_warnings; | 47 int disable_warnings; |
| 46 int disable_warning_prompt; | 48 int disable_warning_prompt; |
| 47 }; | 49 }; |
| 48 | 50 |
| 49 #ifdef __cplusplus | 51 #ifdef __cplusplus |
| 50 } // extern "C" | 52 } // extern "C" |
| 51 #endif | 53 #endif |
| 52 | 54 |
| 53 #endif // VPXENC_H_ | 55 #endif // VPXENC_H_ |
| OLD | NEW |