Browse Source

Change license header

pull/1552/head
Brian Popow 6 years ago
parent
commit
82fc1223b1
  1. 2
      src/ImageSharp/Formats/WebP/AlphaCompressionMethod.cs
  2. 2
      src/ImageSharp/Formats/WebP/AlphaDecoder.cs
  3. 2
      src/ImageSharp/Formats/WebP/BitReader/BitReaderBase.cs
  4. 2
      src/ImageSharp/Formats/WebP/BitReader/Vp8BitReader.cs
  5. 2
      src/ImageSharp/Formats/WebP/BitReader/Vp8LBitReader.cs
  6. 2
      src/ImageSharp/Formats/WebP/IWebPDecoderOptions.cs
  7. 2
      src/ImageSharp/Formats/WebP/Lossless/ColorCache.cs
  8. 2
      src/ImageSharp/Formats/WebP/Lossless/HTreeGroup.cs
  9. 2
      src/ImageSharp/Formats/WebP/Lossless/HuffIndex.cs
  10. 2
      src/ImageSharp/Formats/WebP/Lossless/HuffmanCode.cs
  11. 2
      src/ImageSharp/Formats/WebP/Lossless/HuffmanUtils.cs
  12. 2
      src/ImageSharp/Formats/WebP/Lossless/LosslessUtils.cs
  13. 2
      src/ImageSharp/Formats/WebP/Lossless/Vp8LDecoder.cs
  14. 2
      src/ImageSharp/Formats/WebP/Lossless/Vp8LMetadata.cs
  15. 2
      src/ImageSharp/Formats/WebP/Lossless/Vp8LTransform.cs
  16. 2
      src/ImageSharp/Formats/WebP/Lossless/Vp8LTransformType.cs
  17. 2
      src/ImageSharp/Formats/WebP/Lossless/WebPLosslessDecoder.cs
  18. 2
      src/ImageSharp/Formats/WebP/Lossy/IntraPredictionMode.cs
  19. 2
      src/ImageSharp/Formats/WebP/Lossy/LoopFilter.cs
  20. 2
      src/ImageSharp/Formats/WebP/Lossy/LossyUtils.cs
  21. 2
      src/ImageSharp/Formats/WebP/Lossy/VP8BandProbas.cs
  22. 2
      src/ImageSharp/Formats/WebP/Lossy/Vp8Decoder.cs
  23. 2
      src/ImageSharp/Formats/WebP/Lossy/Vp8FilterHeader.cs
  24. 2
      src/ImageSharp/Formats/WebP/Lossy/Vp8FilterInfo.cs
  25. 2
      src/ImageSharp/Formats/WebP/Lossy/Vp8FrameHeader.cs
  26. 2
      src/ImageSharp/Formats/WebP/Lossy/Vp8Io.cs
  27. 2
      src/ImageSharp/Formats/WebP/Lossy/Vp8MacroBlock.cs
  28. 2
      src/ImageSharp/Formats/WebP/Lossy/Vp8MacroBlockData.cs
  29. 2
      src/ImageSharp/Formats/WebP/Lossy/Vp8PictureHeader.cs
  30. 2
      src/ImageSharp/Formats/WebP/Lossy/Vp8Proba.cs
  31. 2
      src/ImageSharp/Formats/WebP/Lossy/Vp8ProbaArray.cs
  32. 2
      src/ImageSharp/Formats/WebP/Lossy/Vp8QuantMatrix.cs
  33. 2
      src/ImageSharp/Formats/WebP/Lossy/Vp8SegmentHeader.cs
  34. 2
      src/ImageSharp/Formats/WebP/Lossy/Vp8TopSamples.cs
  35. 2
      src/ImageSharp/Formats/WebP/Lossy/WebPLossyDecoder.cs
  36. 2
      src/ImageSharp/Formats/WebP/Vp8HeaderType.cs
  37. 2
      src/ImageSharp/Formats/WebP/WebPAlphaFilterType.cs
  38. 2
      src/ImageSharp/Formats/WebP/WebPBitsPerPixel.cs
  39. 2
      src/ImageSharp/Formats/WebP/WebPChunkType.cs
  40. 2
      src/ImageSharp/Formats/WebP/WebPConstants.cs
  41. 2
      src/ImageSharp/Formats/WebP/WebPDecoder.cs
  42. 2
      src/ImageSharp/Formats/WebP/WebPDecoderCore.cs
  43. 2
      src/ImageSharp/Formats/WebP/WebPFeatures.cs
  44. 2
      src/ImageSharp/Formats/WebP/WebPFormat.cs
  45. 2
      src/ImageSharp/Formats/WebP/WebPFormatType.cs
  46. 2
      src/ImageSharp/Formats/WebP/WebPImageFormatDetector.cs
  47. 2
      src/ImageSharp/Formats/WebP/WebPImageInfo.cs
  48. 2
      src/ImageSharp/Formats/WebP/WebPLookupTables.cs
  49. 2
      src/ImageSharp/Formats/WebP/WebPMetadata.cs
  50. 2
      src/ImageSharp/Formats/WebP/WebPThrowHelper.cs
  51. 2
      src/ImageSharp/Formats/WebP/WebpConfigurationModule.cs
  52. 2
      tests/ImageSharp.Benchmarks/Codecs/DecodeWebp.cs
  53. 2
      tests/ImageSharp.Tests/Formats/WebP/WebPDecoderTests.cs
  54. 2
      tests/ImageSharp.Tests/Formats/WebP/WebPMetaDataTests.cs
  55. 4
      tests/Images/Input/WebP/exif_lossless.webp

2
src/ImageSharp/Formats/WebP/AlphaCompressionMethod.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
namespace SixLabors.ImageSharp.Formats.WebP
{

2
src/ImageSharp/Formats/WebP/AlphaDecoder.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Buffers;

2
src/ImageSharp/Formats/WebP/BitReader/BitReaderBase.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Buffers;

2
src/ImageSharp/Formats/WebP/BitReader/Vp8BitReader.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System.Buffers;
using System.Buffers.Binary;

2
src/ImageSharp/Formats/WebP/BitReader/Vp8LBitReader.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System.Buffers;
using System.IO;

2
src/ImageSharp/Formats/WebP/IWebPDecoderOptions.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
namespace SixLabors.ImageSharp.Formats.WebP
{

2
src/ImageSharp/Formats/WebP/Lossless/ColorCache.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
namespace SixLabors.ImageSharp.Formats.WebP.Lossless
{

2
src/ImageSharp/Formats/WebP/Lossless/HTreeGroup.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System.Collections.Generic;

2
src/ImageSharp/Formats/WebP/Lossless/HuffIndex.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
namespace SixLabors.ImageSharp.Formats.WebP.Lossless
{

2
src/ImageSharp/Formats/WebP/Lossless/HuffmanCode.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System.Diagnostics;

2
src/ImageSharp/Formats/WebP/Lossless/HuffmanUtils.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;

2
src/ImageSharp/Formats/WebP/Lossless/LosslessUtils.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Runtime.CompilerServices;

2
src/ImageSharp/Formats/WebP/Lossless/Vp8LDecoder.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Buffers;

2
src/ImageSharp/Formats/WebP/Lossless/Vp8LMetadata.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System.Buffers;

2
src/ImageSharp/Formats/WebP/Lossless/Vp8LTransform.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System.Buffers;
using System.Diagnostics;

2
src/ImageSharp/Formats/WebP/Lossless/Vp8LTransformType.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
namespace SixLabors.ImageSharp.Formats.WebP.Lossless
{

2
src/ImageSharp/Formats/WebP/Lossless/WebPLosslessDecoder.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Buffers;

2
src/ImageSharp/Formats/WebP/Lossy/IntraPredictionMode.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
namespace SixLabors.ImageSharp.Formats.WebP.Lossy
{

2
src/ImageSharp/Formats/WebP/Lossy/LoopFilter.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
namespace SixLabors.ImageSharp.Formats.WebP.Lossy
{

2
src/ImageSharp/Formats/WebP/Lossy/LossyUtils.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Buffers.Binary;

2
src/ImageSharp/Formats/WebP/Lossy/VP8BandProbas.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
namespace SixLabors.ImageSharp.Formats.WebP.Lossy
{

2
src/ImageSharp/Formats/WebP/Lossy/Vp8Decoder.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Buffers;

2
src/ImageSharp/Formats/WebP/Lossy/Vp8FilterHeader.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
namespace SixLabors.ImageSharp.Formats.WebP.Lossy
{

2
src/ImageSharp/Formats/WebP/Lossy/Vp8FilterInfo.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
namespace SixLabors.ImageSharp.Formats.WebP.Lossy
{

2
src/ImageSharp/Formats/WebP/Lossy/Vp8FrameHeader.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
namespace SixLabors.ImageSharp.Formats.WebP.Lossy
{

2
src/ImageSharp/Formats/WebP/Lossy/Vp8Io.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;

2
src/ImageSharp/Formats/WebP/Lossy/Vp8MacroBlock.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
namespace SixLabors.ImageSharp.Formats.WebP.Lossy
{

2
src/ImageSharp/Formats/WebP/Lossy/Vp8MacroBlockData.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
namespace SixLabors.ImageSharp.Formats.WebP.Lossy
{

2
src/ImageSharp/Formats/WebP/Lossy/Vp8PictureHeader.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
namespace SixLabors.ImageSharp.Formats.WebP.Lossy
{

2
src/ImageSharp/Formats/WebP/Lossy/Vp8Proba.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
namespace SixLabors.ImageSharp.Formats.WebP.Lossy
{

2
src/ImageSharp/Formats/WebP/Lossy/Vp8ProbaArray.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
namespace SixLabors.ImageSharp.Formats.WebP.Lossy
{

2
src/ImageSharp/Formats/WebP/Lossy/Vp8QuantMatrix.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
namespace SixLabors.ImageSharp.Formats.WebP.Lossy
{

2
src/ImageSharp/Formats/WebP/Lossy/Vp8SegmentHeader.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
namespace SixLabors.ImageSharp.Formats.WebP.Lossy
{

2
src/ImageSharp/Formats/WebP/Lossy/Vp8TopSamples.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
namespace SixLabors.ImageSharp.Formats.WebP.Lossy
{

2
src/ImageSharp/Formats/WebP/Lossy/WebPLossyDecoder.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Buffers;

2
src/ImageSharp/Formats/WebP/Vp8HeaderType.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
namespace SixLabors.ImageSharp.Formats.WebP
{

2
src/ImageSharp/Formats/WebP/WebPAlphaFilterType.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
namespace SixLabors.ImageSharp.Formats.WebP
{

2
src/ImageSharp/Formats/WebP/WebPBitsPerPixel.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
namespace SixLabors.ImageSharp.Formats.WebP
{

2
src/ImageSharp/Formats/WebP/WebPChunkType.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
namespace SixLabors.ImageSharp.Formats.WebP
{

2
src/ImageSharp/Formats/WebP/WebPConstants.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System.Collections.Generic;

2
src/ImageSharp/Formats/WebP/WebPDecoder.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System.IO;
using SixLabors.ImageSharp.PixelFormats;

2
src/ImageSharp/Formats/WebP/WebPDecoderCore.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Buffers.Binary;

2
src/ImageSharp/Formats/WebP/WebPFeatures.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Buffers;

2
src/ImageSharp/Formats/WebP/WebPFormat.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System.Collections.Generic;

2
src/ImageSharp/Formats/WebP/WebPFormatType.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
namespace SixLabors.ImageSharp.Formats.WebP
{

2
src/ImageSharp/Formats/WebP/WebPImageFormatDetector.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;

2
src/ImageSharp/Formats/WebP/WebPImageInfo.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using SixLabors.ImageSharp.Formats.WebP.BitReader;

2
src/ImageSharp/Formats/WebP/WebPLookupTables.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System.Collections.Generic;

2
src/ImageSharp/Formats/WebP/WebPMetadata.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System.Collections.Generic;

2
src/ImageSharp/Formats/WebP/WebPThrowHelper.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System;
using System.Runtime.CompilerServices;

2
src/ImageSharp/Formats/WebP/WebpConfigurationModule.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
namespace SixLabors.ImageSharp.Formats.WebP
{

2
tests/ImageSharp.Benchmarks/Codecs/DecodeWebp.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System.IO;
using BenchmarkDotNet.Attributes;

2
tests/ImageSharp.Tests/Formats/WebP/WebPDecoderTests.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using System.IO;

2
tests/ImageSharp.Tests/Formats/WebP/WebPMetaDataTests.cs

@ -1,5 +1,5 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
// Licensed under the GNU Affero General Public License, Version 3.
using SixLabors.ImageSharp.Formats.WebP;
using SixLabors.ImageSharp.PixelFormats;

4
tests/Images/Input/WebP/exif_lossless.webp

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:30734501a0b1953c392762d6ea11652400efec3f891f0da37749e3674e15b6a0
size 183280
oid sha256:21de077dd545c182a36584955918a70643ae2b972b208234f548d95ef8535a3e
size 183286

Loading…
Cancel
Save