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

Side by Side Diff: source/libvpx/vpx/vp8cx.h

Issue 232133009: libvpx: Pull from upstream (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 6 years, 8 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/vpx/svc_context.h ('k') | source/libvpx/vpx/vpx_encoder.h » ('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 #ifndef VPX_VP8CX_H_ 10 #ifndef VPX_VP8CX_H_
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 */ 185 */
186 VP8E_SET_MAX_INTRA_BITRATE_PCT, 186 VP8E_SET_MAX_INTRA_BITRATE_PCT,
187 187
188 188
189 /* TODO(jkoleszar): Move to vp9cx.h */ 189 /* TODO(jkoleszar): Move to vp9cx.h */
190 VP9E_SET_LOSSLESS, 190 VP9E_SET_LOSSLESS,
191 VP9E_SET_TILE_COLUMNS, 191 VP9E_SET_TILE_COLUMNS,
192 VP9E_SET_TILE_ROWS, 192 VP9E_SET_TILE_ROWS,
193 VP9E_SET_FRAME_PARALLEL_DECODING, 193 VP9E_SET_FRAME_PARALLEL_DECODING,
194 VP9E_SET_AQ_MODE, 194 VP9E_SET_AQ_MODE,
195 VP9E_SET_FRAME_PERIODIC_BOOST,
195 196
196 VP9E_SET_SVC, 197 VP9E_SET_SVC,
197 VP9E_SET_SVC_PARAMETERS, 198 VP9E_SET_SVC_PARAMETERS,
198 /*!\brief control function to set svc layer for spatial and temporal. 199 /*!\brief control function to set svc layer for spatial and temporal.
199 * \note Valid ranges: 0..#vpx_codec_enc_cfg::ss_number_layers for spatial 200 * \note Valid ranges: 0..#vpx_codec_enc_cfg::ss_number_layers for spatial
200 * layer and 0..#vpx_codec_enc_cfg::ts_number_layers for 201 * layer and 0..#vpx_codec_enc_cfg::ts_number_layers for
201 * temporal layer. 202 * temporal layer.
202 */ 203 */
203 VP9E_SET_SVC_LAYER_ID 204 VP9E_SET_SVC_LAYER_ID
204 }; 205 };
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
357 VPX_CTRL_USE_TYPE(VP8E_GET_LAST_QUANTIZER_64, int *) 358 VPX_CTRL_USE_TYPE(VP8E_GET_LAST_QUANTIZER_64, int *)
358 359
359 VPX_CTRL_USE_TYPE(VP8E_SET_MAX_INTRA_BITRATE_PCT, unsigned int) 360 VPX_CTRL_USE_TYPE(VP8E_SET_MAX_INTRA_BITRATE_PCT, unsigned int)
360 361
361 VPX_CTRL_USE_TYPE(VP9E_SET_LOSSLESS, unsigned int) 362 VPX_CTRL_USE_TYPE(VP9E_SET_LOSSLESS, unsigned int)
362 363
363 VPX_CTRL_USE_TYPE(VP9E_SET_FRAME_PARALLEL_DECODING, unsigned int) 364 VPX_CTRL_USE_TYPE(VP9E_SET_FRAME_PARALLEL_DECODING, unsigned int)
364 365
365 VPX_CTRL_USE_TYPE(VP9E_SET_AQ_MODE, unsigned int) 366 VPX_CTRL_USE_TYPE(VP9E_SET_AQ_MODE, unsigned int)
366 367
368 VPX_CTRL_USE_TYPE(VP9E_SET_FRAME_PERIODIC_BOOST, unsigned int)
369
367 /*! @} - end defgroup vp8_encoder */ 370 /*! @} - end defgroup vp8_encoder */
368 #ifdef __cplusplus 371 #ifdef __cplusplus
369 } // extern "C" 372 } // extern "C"
370 #endif 373 #endif
371 374
372 #endif // VPX_VP8CX_H_ 375 #endif // VPX_VP8CX_H_
OLDNEW
« no previous file with comments | « source/libvpx/vpx/svc_context.h ('k') | source/libvpx/vpx/vpx_encoder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698