| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2010 The WebM project authors. All Rights Reserved. | 2 * Copyright (c) 2010 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 | 10 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 struct VP8D_COMP; | 27 struct VP8D_COMP; |
| 28 | 28 |
| 29 typedef struct | 29 typedef struct |
| 30 { | 30 { |
| 31 int Width; | 31 int Width; |
| 32 int Height; | 32 int Height; |
| 33 int Version; | 33 int Version; |
| 34 int postprocess; | 34 int postprocess; |
| 35 int max_threads; | 35 int max_threads; |
| 36 int error_concealment; | 36 int error_concealment; |
| 37 int input_fragments; | |
| 38 } VP8D_CONFIG; | 37 } VP8D_CONFIG; |
| 39 | 38 |
| 40 typedef enum | 39 typedef enum |
| 41 { | 40 { |
| 42 VP8D_OK = 0 | 41 VP8D_OK = 0 |
| 43 } VP8D_SETTING; | 42 } VP8D_SETTING; |
| 44 | 43 |
| 45 void vp8dx_initialize(void); | 44 void vp8dx_initialize(void); |
| 46 | 45 |
| 47 void vp8dx_set_setting(struct VP8D_COMP* comp, VP8D_SETTING oxst, int x); | 46 void vp8dx_set_setting(struct VP8D_COMP* comp, VP8D_SETTING oxst, int x); |
| (...skipping 11 matching lines...) Expand all Loading... |
| 59 struct VP8D_COMP* vp8dx_create_decompressor(VP8D_CONFIG *oxcf); | 58 struct VP8D_COMP* vp8dx_create_decompressor(VP8D_CONFIG *oxcf); |
| 60 | 59 |
| 61 void vp8dx_remove_decompressor(struct VP8D_COMP* comp); | 60 void vp8dx_remove_decompressor(struct VP8D_COMP* comp); |
| 62 | 61 |
| 63 #ifdef __cplusplus | 62 #ifdef __cplusplus |
| 64 } | 63 } |
| 65 #endif | 64 #endif |
| 66 | 65 |
| 67 | 66 |
| 68 #endif | 67 #endif |
| OLD | NEW |