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

Side by Side Diff: source/libvpx/vpxenc.h

Issue 111463005: libvpx: Pull from upstream (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 7 years 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/vpxdec.c ('k') | source/libvpx/vpxenc.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /*
2 * Copyright (c) 2013 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 */
10 #ifndef VPXENC_H_
11 #define VPXENC_H_
12
13 #include "vpx/vpx_encoder.h"
14
15 enum TestDecodeFatality {
16 TEST_DECODE_OFF,
17 TEST_DECODE_FATAL,
18 TEST_DECODE_WARN,
19 };
20
21 /* Configuration elements common to all streams. */
22 struct VpxEncoderConfig {
23 const struct codec_item *codec;
24 int passes;
25 int pass;
26 int usage;
27 int deadline;
28 int use_i420;
29 int quiet;
30 int verbose;
31 int limit;
32 int skip_frames;
33 int show_psnr;
34 enum TestDecodeFatality test_decode;
35 int have_framerate;
36 struct vpx_rational framerate;
37 int out_part;
38 int debug;
39 int show_q_hist_buckets;
40 int show_rate_hist_buckets;
41 int disable_warnings;
42 int disable_warning_prompt;
43 };
44
45 #endif // VPXENC_H_
OLDNEW
« no previous file with comments | « source/libvpx/vpxdec.c ('k') | source/libvpx/vpxenc.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698