diff options
Diffstat (limited to 'drivers/webp/enc/layer.c')
-rw-r--r-- | drivers/webp/enc/layer.c | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/drivers/webp/enc/layer.c b/drivers/webp/enc/layer.c index 2402362359..423127df63 100644 --- a/drivers/webp/enc/layer.c +++ b/drivers/webp/enc/layer.c @@ -1,10 +1,8 @@ // Copyright 2011 Google Inc. All Rights Reserved. // -// Use of this source code is governed by a BSD-style license -// that can be found in the COPYING 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. +// This code is licensed under the same terms as WebM: +// Software License Agreement: http://www.webmproject.org/license/software/ +// Additional IP Rights Grant: http://www.webmproject.org/license/additional/ // ----------------------------------------------------------------------------- // // Enhancement layer (for YUV444/422) @@ -15,6 +13,10 @@ #include "./vp8enci.h" +#if defined(__cplusplus) || defined(c_plusplus) +extern "C" { +#endif + //------------------------------------------------------------------------------ void VP8EncInitLayer(VP8Encoder* const enc) { @@ -42,3 +44,6 @@ void VP8EncDeleteLayer(VP8Encoder* enc) { free(enc->layer_data_); } +#if defined(__cplusplus) || defined(c_plusplus) +} // extern "C" +#endif |