summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorangiebird <angiebird@google.com>2019-11-13 13:39:23 -0800
committerangiebird <angiebird@google.com>2019-11-20 10:36:00 -0800
commit9b79c51b02c05b592d7baa2d769acc213f62bf2e (patch)
tree2b6f246b805fae5119a38fad4020fd324065f8bb
parent65c7b631a23db881c6b2bdb510db71d04c7f3d76 (diff)
downloadlibvpx-9b79c51b02c05b592d7baa2d769acc213f62bf2e.tar.gz
Add copyright and header guard for simple_encode.h
Change-Id: Ib4502fc35202b36aa25f06c7c2bb5203673faa06
-rw-r--r--vp9/simple_encode.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/vp9/simple_encode.h b/vp9/simple_encode.h
index e97cdb1a2..e4b107c0a 100644
--- a/vp9/simple_encode.h
+++ b/vp9/simple_encode.h
@@ -1,3 +1,15 @@
+/*
+ * Copyright (c) 2019 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 VPX_VP9_SIMPLE_ENCODE_H_
+#define VPX_VP9_SIMPLE_ENCODE_H_
#include <memory>
#include <vector>
@@ -69,3 +81,4 @@ class SimpleEncode {
FILE *file;
std::unique_ptr<impl> pimpl;
};
+#endif // VPX_VP9_SIMPLE_ENCODE