summaryrefslogtreecommitdiff
path: root/vpx/vpx_frame_buffer.h
diff options
context:
space:
mode:
authorclang-format <noreply@google.com>2016-07-21 19:58:19 -0700
committerJames Zern <jzern@google.com>2016-07-21 20:49:07 -0700
commite3e9fee41958da6e5e46b53c604fc2b0a3fc3474 (patch)
tree4f2bbd1af7e4943b993e957c706313447cc09097 /vpx/vpx_frame_buffer.h
parent4b073bc39a39283577c485ed1e56c92cf0eaaa89 (diff)
downloadlibvpx-e3e9fee41958da6e5e46b53c604fc2b0a3fc3474.tar.gz
vpx/: apply clang-format
Change-Id: I95922a64568bf289863c1564212b6be5beec36df
Diffstat (limited to 'vpx/vpx_frame_buffer.h')
-rw-r--r--vpx/vpx_frame_buffer.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/vpx/vpx_frame_buffer.h b/vpx/vpx_frame_buffer.h
index 9036459af..ad70cdd57 100644
--- a/vpx/vpx_frame_buffer.h
+++ b/vpx/vpx_frame_buffer.h
@@ -37,9 +37,9 @@ extern "C" {
* This structure holds allocated frame buffers used by the decoder.
*/
typedef struct vpx_codec_frame_buffer {
- uint8_t *data; /**< Pointer to the data buffer */
- size_t size; /**< Size of data in bytes */
- void *priv; /**< Frame's private data */
+ uint8_t *data; /**< Pointer to the data buffer */
+ size_t size; /**< Size of data in bytes */
+ void *priv; /**< Frame's private data */
} vpx_codec_frame_buffer_t;
/*!\brief get frame buffer callback prototype
@@ -60,8 +60,8 @@ typedef struct vpx_codec_frame_buffer {
* \param[in] new_size Size in bytes needed by the buffer
* \param[in,out] fb Pointer to vpx_codec_frame_buffer_t
*/
-typedef int (*vpx_get_frame_buffer_cb_fn_t)(
- void *priv, size_t min_size, vpx_codec_frame_buffer_t *fb);
+typedef int (*vpx_get_frame_buffer_cb_fn_t)(void *priv, size_t min_size,
+ vpx_codec_frame_buffer_t *fb);
/*!\brief release frame buffer callback prototype
*
@@ -73,8 +73,8 @@ typedef int (*vpx_get_frame_buffer_cb_fn_t)(
* \param[in] priv Callback's private data
* \param[in] fb Pointer to vpx_codec_frame_buffer_t
*/
-typedef int (*vpx_release_frame_buffer_cb_fn_t)(
- void *priv, vpx_codec_frame_buffer_t *fb);
+typedef int (*vpx_release_frame_buffer_cb_fn_t)(void *priv,
+ vpx_codec_frame_buffer_t *fb);
#ifdef __cplusplus
} // extern "C"