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

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

Issue 181493009: libvpx: Pull from upstream (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 6 years, 9 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/vpx_encoder.h ('k') | source/libvpx/vpx_ports/mem_ops_aligned.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) 2014 The WebM project authors. All Rights Reserved. 2 * Copyright (c) 2014 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
11 #ifndef VPX_VPX_FRAME_BUFFER_H_ 11 #ifndef VPX_VPX_FRAME_BUFFER_H_
12 #define VPX_VPX_FRAME_BUFFER_H_ 12 #define VPX_VPX_FRAME_BUFFER_H_
13 13
14 /*!\file
15 * \brief Describes the decoder external frame buffer interface.
16 */
17
14 #ifdef __cplusplus 18 #ifdef __cplusplus
15 extern "C" { 19 extern "C" {
16 #endif 20 #endif
17 21
18 #include "./vpx_integer.h" 22 #include "./vpx_integer.h"
19 23
20 /*!\brief The maximum number of work buffers used by libvpx. 24 /*!\brief The maximum number of work buffers used by libvpx.
21 */ 25 */
22 #define VPX_MAXIMUM_WORK_BUFFERS 1 26 #define VPX_MAXIMUM_WORK_BUFFERS 1
23 27
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 * \param[in] fb Pointer to vpx_codec_frame_buffer_t 71 * \param[in] fb Pointer to vpx_codec_frame_buffer_t
68 */ 72 */
69 typedef int (*vpx_release_frame_buffer_cb_fn_t)( 73 typedef int (*vpx_release_frame_buffer_cb_fn_t)(
70 void *priv, vpx_codec_frame_buffer_t *fb); 74 void *priv, vpx_codec_frame_buffer_t *fb);
71 75
72 #ifdef __cplusplus 76 #ifdef __cplusplus
73 } // extern "C" 77 } // extern "C"
74 #endif 78 #endif
75 79
76 #endif // VPX_VPX_FRAME_BUFFER_H_ 80 #endif // VPX_VPX_FRAME_BUFFER_H_
OLDNEW
« no previous file with comments | « source/libvpx/vpx/vpx_encoder.h ('k') | source/libvpx/vpx_ports/mem_ops_aligned.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698