summaryrefslogtreecommitdiff
path: root/vp10/encoder/vp9_extend.h
diff options
context:
space:
mode:
authorJingning Han <jingning@google.com>2015-08-12 01:57:15 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2015-08-12 01:57:15 +0000
commitbe6c031fb3b0ee940c852a6a2db63af4747ff022 (patch)
treebdefb7fb5f2b3fa276410f308c2c167f27fcf4c4 /vp10/encoder/vp9_extend.h
parent70deaf00eb4a035247fd102337f949bff7b1f232 (diff)
parent3ee6db6c8110680c051fe7a4dca97bb27474ca00 (diff)
downloadlibvpx-be6c031fb3b0ee940c852a6a2db63af4747ff022.tar
libvpx-be6c031fb3b0ee940c852a6a2db63af4747ff022.tar.gz
libvpx-be6c031fb3b0ee940c852a6a2db63af4747ff022.tar.bz2
libvpx-be6c031fb3b0ee940c852a6a2db63af4747ff022.zip
Merge "Fork VP9 and VP10 codebase"
Diffstat (limited to 'vp10/encoder/vp9_extend.h')
-rw-r--r--vp10/encoder/vp9_extend.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/vp10/encoder/vp9_extend.h b/vp10/encoder/vp9_extend.h
new file mode 100644
index 000000000..97f423ef4
--- /dev/null
+++ b/vp10/encoder/vp9_extend.h
@@ -0,0 +1,33 @@
+/*
+ * Copyright (c) 2010 The WebM project authors. All Rights Reserved.
+ *
+ * Use of this source code is governed by a BSD-style license
+ * that can be found in the LICENSE file in the root of the source
+ * tree. An additional intellectual property rights grant can be found
+ * in the file PATENTS. All contributing project authors may
+ * be found in the AUTHORS file in the root of the source tree.
+ */
+
+#ifndef VP9_ENCODER_VP9_EXTEND_H_
+#define VP9_ENCODER_VP9_EXTEND_H_
+
+#include "vpx_scale/yv12config.h"
+#include "vpx/vpx_integer.h"
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+
+void vp10_copy_and_extend_frame(const YV12_BUFFER_CONFIG *src,
+ YV12_BUFFER_CONFIG *dst);
+
+void vp10_copy_and_extend_frame_with_rect(const YV12_BUFFER_CONFIG *src,
+ YV12_BUFFER_CONFIG *dst,
+ int srcy, int srcx,
+ int srch, int srcw);
+#ifdef __cplusplus
+} // extern "C"
+#endif
+
+#endif // VP9_ENCODER_VP9_EXTEND_H_