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

Side by Side Diff: source/libvpx/vpx/vpx_encoder.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/vp8cx.h ('k') | source/libvpx/vpx_scale/arm/neon/vp8_vpxyv12_copy_y_neon.asm » ('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_VPX_ENCODER_H_ 10 #ifndef VPX_VPX_ENCODER_H_
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 /*!\deprecated Use #VPX_TS_MAX_PERIODICITY instead. */ 42 /*!\deprecated Use #VPX_TS_MAX_PERIODICITY instead. */
43 #define MAX_PERIODICITY VPX_TS_MAX_PERIODICITY 43 #define MAX_PERIODICITY VPX_TS_MAX_PERIODICITY
44 44
45 /*!\deprecated Use #VPX_TS_MAX_LAYERS instead. */ 45 /*!\deprecated Use #VPX_TS_MAX_LAYERS instead. */
46 #define MAX_LAYERS VPX_TS_MAX_LAYERS 46 #define MAX_LAYERS VPX_TS_MAX_LAYERS
47 47
48 /*! Spatial Scalability: Maximum number of coding layers */ 48 /*! Spatial Scalability: Maximum number of coding layers */
49 #define VPX_SS_MAX_LAYERS 5 49 #define VPX_SS_MAX_LAYERS 5
50 50
51 /*! Spatial Scalability: Default number of coding layers */ 51 /*! Spatial Scalability: Default number of coding layers */
52 #define VPX_SS_DEFAULT_LAYERS 3 52 #define VPX_SS_DEFAULT_LAYERS 1
53 53
54 /*!\brief Current ABI version number 54 /*!\brief Current ABI version number
55 * 55 *
56 * \internal 56 * \internal
57 * If this file is altered in any way that changes the ABI, this value 57 * If this file is altered in any way that changes the ABI, this value
58 * must be bumped. Examples include, but are not limited to, changing 58 * must be bumped. Examples include, but are not limited to, changing
59 * types, removing or reassigning enums, adding/removing/rearranging 59 * types, removing or reassigning enums, adding/removing/rearranging
60 * fields to structures 60 * fields to structures
61 */ 61 */
62 #define VPX_ENCODER_ABI_VERSION (3 + VPX_CODEC_ABI_VERSION) /**<\hideinitializer */ 62 #define VPX_ENCODER_ABI_VERSION (3 + VPX_CODEC_ABI_VERSION) /**<\hideinitializer */
(...skipping 872 matching lines...) Expand 10 before | Expand all | Expand 10 after
935 */ 935 */
936 const vpx_image_t *vpx_codec_get_preview_frame(vpx_codec_ctx_t *ctx); 936 const vpx_image_t *vpx_codec_get_preview_frame(vpx_codec_ctx_t *ctx);
937 937
938 938
939 /*!@} - end defgroup encoder*/ 939 /*!@} - end defgroup encoder*/
940 #ifdef __cplusplus 940 #ifdef __cplusplus
941 } 941 }
942 #endif 942 #endif
943 #endif // VPX_VPX_ENCODER_H_ 943 #endif // VPX_VPX_ENCODER_H_
944 944
OLDNEW
« no previous file with comments | « source/libvpx/vpx/vp8cx.h ('k') | source/libvpx/vpx_scale/arm/neon/vp8_vpxyv12_copy_y_neon.asm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698