Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(153)

Side by Side Diff: source/libvpx/vp8/common/onyxd.h

Issue 12077018: libvpx: Pull from upstream (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « source/libvpx/vp8/common/onyxc_int.h ('k') | source/libvpx/vp8/common/postproc.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « source/libvpx/vp8/common/onyxc_int.h ('k') | source/libvpx/vp8/common/postproc.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698