Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/LAVFilters.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHendrik Leppkes <h.leppkes@gmail.com>2016-01-01 14:11:40 +0300
committerHendrik Leppkes <h.leppkes@gmail.com>2016-01-01 14:12:15 +0300
commitf6d5e2e38451da2831f5e199e82630cb5a544e42 (patch)
tree93622b58b759e8ea816901b2462e49fcf337fcbd /decoder/LAVVideo/pixconv
parent66d2d0d5256f72b7feac76fb8489d23f9b097d19 (diff)
Update Copyright to 2016
Diffstat (limited to 'decoder/LAVVideo/pixconv')
-rw-r--r--decoder/LAVVideo/pixconv/convert_direct.cpp2
-rw-r--r--decoder/LAVVideo/pixconv/convert_generic.cpp2
-rw-r--r--decoder/LAVVideo/pixconv/interleave.cpp2
-rw-r--r--decoder/LAVVideo/pixconv/pixconv.cpp2
-rw-r--r--decoder/LAVVideo/pixconv/pixconv_internal.h2
-rw-r--r--decoder/LAVVideo/pixconv/pixconv_sse2_templates.h2
-rw-r--r--decoder/LAVVideo/pixconv/rgb2rgb_unscaled.cpp2
-rw-r--r--decoder/LAVVideo/pixconv/yuv2rgb.cpp2
-rw-r--r--decoder/LAVVideo/pixconv/yuv2yuv_unscaled.cpp2
-rw-r--r--decoder/LAVVideo/pixconv/yuv420_yuy2.cpp2
-rw-r--r--decoder/LAVVideo/pixconv/yuv444_ayuv.cpp2
11 files changed, 11 insertions, 11 deletions
diff --git a/decoder/LAVVideo/pixconv/convert_direct.cpp b/decoder/LAVVideo/pixconv/convert_direct.cpp
index 2c036ef3..2a4ed007 100644
--- a/decoder/LAVVideo/pixconv/convert_direct.cpp
+++ b/decoder/LAVVideo/pixconv/convert_direct.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2010-2015 Hendrik Leppkes
+ * Copyright (C) 2010-2016 Hendrik Leppkes
* http://www.1f0.de
*
* This program is free software; you can redistribute it and/or modify
diff --git a/decoder/LAVVideo/pixconv/convert_generic.cpp b/decoder/LAVVideo/pixconv/convert_generic.cpp
index 9cb6b06a..decbad37 100644
--- a/decoder/LAVVideo/pixconv/convert_generic.cpp
+++ b/decoder/LAVVideo/pixconv/convert_generic.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2010-2015 Hendrik Leppkes
+ * Copyright (C) 2010-2016 Hendrik Leppkes
* http://www.1f0.de
*
* This program is free software; you can redistribute it and/or modify
diff --git a/decoder/LAVVideo/pixconv/interleave.cpp b/decoder/LAVVideo/pixconv/interleave.cpp
index afe1080b..d7ee08d2 100644
--- a/decoder/LAVVideo/pixconv/interleave.cpp
+++ b/decoder/LAVVideo/pixconv/interleave.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2010-2015 Hendrik Leppkes
+ * Copyright (C) 2010-2016 Hendrik Leppkes
* http://www.1f0.de
*
* This program is free software; you can redistribute it and/or modify
diff --git a/decoder/LAVVideo/pixconv/pixconv.cpp b/decoder/LAVVideo/pixconv/pixconv.cpp
index ca42ca46..5afc56e3 100644
--- a/decoder/LAVVideo/pixconv/pixconv.cpp
+++ b/decoder/LAVVideo/pixconv/pixconv.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2010-2015 Hendrik Leppkes
+ * Copyright (C) 2010-2016 Hendrik Leppkes
* http://www.1f0.de
*
* This program is free software; you can redistribute it and/or modify
diff --git a/decoder/LAVVideo/pixconv/pixconv_internal.h b/decoder/LAVVideo/pixconv/pixconv_internal.h
index 6ddd27d7..85347b60 100644
--- a/decoder/LAVVideo/pixconv/pixconv_internal.h
+++ b/decoder/LAVVideo/pixconv/pixconv_internal.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2010-2015 Hendrik Leppkes
+ * Copyright (C) 2010-2016 Hendrik Leppkes
* http://www.1f0.de
*
* This program is free software; you can redistribute it and/or modify
diff --git a/decoder/LAVVideo/pixconv/pixconv_sse2_templates.h b/decoder/LAVVideo/pixconv/pixconv_sse2_templates.h
index 602b6905..e295ec9c 100644
--- a/decoder/LAVVideo/pixconv/pixconv_sse2_templates.h
+++ b/decoder/LAVVideo/pixconv/pixconv_sse2_templates.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2010-2015 Hendrik Leppkes
+ * Copyright (C) 2010-2016 Hendrik Leppkes
* http://www.1f0.de
*
* This program is free software; you can redistribute it and/or modify
diff --git a/decoder/LAVVideo/pixconv/rgb2rgb_unscaled.cpp b/decoder/LAVVideo/pixconv/rgb2rgb_unscaled.cpp
index 279fccb3..675fbc9f 100644
--- a/decoder/LAVVideo/pixconv/rgb2rgb_unscaled.cpp
+++ b/decoder/LAVVideo/pixconv/rgb2rgb_unscaled.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2010-2015 Hendrik Leppkes
+ * Copyright (C) 2010-2016 Hendrik Leppkes
* http://www.1f0.de
*
* This program is free software; you can redistribute it and/or modify
diff --git a/decoder/LAVVideo/pixconv/yuv2rgb.cpp b/decoder/LAVVideo/pixconv/yuv2rgb.cpp
index b70fb11a..c1cf8e25 100644
--- a/decoder/LAVVideo/pixconv/yuv2rgb.cpp
+++ b/decoder/LAVVideo/pixconv/yuv2rgb.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2010-2015 Hendrik Leppkes
+ * Copyright (C) 2010-2016 Hendrik Leppkes
* http://www.1f0.de
*
* This program is free software; you can redistribute it and/or modify
diff --git a/decoder/LAVVideo/pixconv/yuv2yuv_unscaled.cpp b/decoder/LAVVideo/pixconv/yuv2yuv_unscaled.cpp
index 7ebb30f4..8d24250f 100644
--- a/decoder/LAVVideo/pixconv/yuv2yuv_unscaled.cpp
+++ b/decoder/LAVVideo/pixconv/yuv2yuv_unscaled.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2010-2015 Hendrik Leppkes
+ * Copyright (C) 2010-2016 Hendrik Leppkes
* http://www.1f0.de
*
* This program is free software; you can redistribute it and/or modify
diff --git a/decoder/LAVVideo/pixconv/yuv420_yuy2.cpp b/decoder/LAVVideo/pixconv/yuv420_yuy2.cpp
index 8a03eef2..160a6946 100644
--- a/decoder/LAVVideo/pixconv/yuv420_yuy2.cpp
+++ b/decoder/LAVVideo/pixconv/yuv420_yuy2.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2010-2015 Hendrik Leppkes
+ * Copyright (C) 2010-2016 Hendrik Leppkes
* http://www.1f0.de
*
* This program is free software; you can redistribute it and/or modify
diff --git a/decoder/LAVVideo/pixconv/yuv444_ayuv.cpp b/decoder/LAVVideo/pixconv/yuv444_ayuv.cpp
index ccadf12e..ac5d07ce 100644
--- a/decoder/LAVVideo/pixconv/yuv444_ayuv.cpp
+++ b/decoder/LAVVideo/pixconv/yuv444_ayuv.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2010-2015 Hendrik Leppkes
+ * Copyright (C) 2010-2016 Hendrik Leppkes
* http://www.1f0.de
*
* This program is free software; you can redistribute it and/or modify