From: angiebird Date: Wed, 13 Nov 2019 21:39:23 +0000 (-0800) Subject: Add copyright and header guard for simple_encode.h X-Git-Tag: v1.8.2~31 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9b79c51b02c05b592d7baa2d769acc213f62bf2e;p=libvpx Add copyright and header guard for simple_encode.h Change-Id: Ib4502fc35202b36aa25f06c7c2bb5203673faa06 --- 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 #include @@ -69,3 +81,4 @@ class SimpleEncode { FILE *file; std::unique_ptr pimpl; }; +#endif // VPX_VP9_SIMPLE_ENCODE