]> git.sesse.net Git - x264/commitdiff
Bump dates to 2014
authorHenrik Gramner <henrik@gramner.com>
Sun, 5 Jan 2014 14:25:05 +0000 (15:25 +0100)
committerFiona Glaser <fiona@x264.com>
Wed, 8 Jan 2014 19:15:45 +0000 (11:15 -0800)
Also update AUTHORS file and my e-mail address in the headers of various files.

151 files changed:
AUTHORS
common/arm/asm.S
common/arm/cpu-a.S
common/arm/dct-a.S
common/arm/dct.h
common/arm/deblock-a.S
common/arm/mc-a.S
common/arm/mc-c.c
common/arm/mc.h
common/arm/pixel-a.S
common/arm/pixel.h
common/arm/predict-a.S
common/arm/predict-c.c
common/arm/predict.h
common/arm/quant-a.S
common/arm/quant.h
common/bitstream.c
common/bitstream.h
common/cabac.c
common/cabac.h
common/common.c
common/common.h
common/cpu.c
common/cpu.h
common/dct.c
common/dct.h
common/deblock.c
common/frame.c
common/frame.h
common/macroblock.c
common/macroblock.h
common/mc.c
common/mc.h
common/mvpred.c
common/opencl.c
common/opencl.h
common/osdep.c
common/osdep.h
common/pixel.c
common/pixel.h
common/ppc/dct.c
common/ppc/dct.h
common/ppc/deblock.c
common/ppc/mc.c
common/ppc/mc.h
common/ppc/pixel.c
common/ppc/pixel.h
common/ppc/ppccommon.h
common/ppc/predict.c
common/ppc/predict.h
common/ppc/quant.c
common/ppc/quant.h
common/predict.c
common/predict.h
common/quant.c
common/quant.h
common/rectangle.c
common/rectangle.h
common/set.c
common/set.h
common/sparc/pixel.asm
common/sparc/pixel.h
common/threadpool.c
common/threadpool.h
common/vlc.c
common/win32thread.c
common/win32thread.h
common/x86/bitstream-a.asm
common/x86/cabac-a.asm
common/x86/const-a.asm
common/x86/cpu-a.asm
common/x86/dct-32.asm
common/x86/dct-64.asm
common/x86/dct-a.asm
common/x86/dct.h
common/x86/deblock-a.asm
common/x86/mc-a.asm
common/x86/mc-a2.asm
common/x86/mc-c.c
common/x86/mc.h
common/x86/pixel-32.asm
common/x86/pixel-a.asm
common/x86/pixel.h
common/x86/predict-a.asm
common/x86/predict-c.c
common/x86/predict.h
common/x86/quant-a.asm
common/x86/quant.h
common/x86/sad-a.asm
common/x86/sad16-a.asm
common/x86/trellis-64.asm
common/x86/util.h
common/x86/x86inc.asm
common/x86/x86util.asm
encoder/analyse.c
encoder/analyse.h
encoder/cabac.c
encoder/cavlc.c
encoder/encoder.c
encoder/lookahead.c
encoder/macroblock.c
encoder/macroblock.h
encoder/me.c
encoder/me.h
encoder/ratecontrol.c
encoder/ratecontrol.h
encoder/rdo.c
encoder/set.c
encoder/set.h
encoder/slicetype-cl.c
encoder/slicetype.c
filters/filters.c
filters/filters.h
filters/video/cache.c
filters/video/crop.c
filters/video/depth.c
filters/video/fix_vfr_pts.c
filters/video/internal.c
filters/video/internal.h
filters/video/resize.c
filters/video/select_every.c
filters/video/source.c
filters/video/video.c
filters/video/video.h
input/avs.c
input/ffms.c
input/input.c
input/input.h
input/lavf.c
input/raw.c
input/thread.c
input/timecode.c
input/y4m.c
output/flv.c
output/flv_bytestream.c
output/flv_bytestream.h
output/matroska.c
output/matroska_ebml.c
output/matroska_ebml.h
output/mp4.c
output/mp4_lsmash.c
output/output.h
output/raw.c
tools/checkasm-a.asm
tools/checkasm.c
tools/cltostr.pl
x264.c
x264.h
x264cli.h
x264dll.c
x264res.rc

diff --git a/AUTHORS b/AUTHORS
index 680987b5b64d6143393f068db66028e536b06e3b..b0e8524c0213606889793a1f467b83cd01938b0b 100644 (file)
--- a/AUTHORS
+++ b/AUTHORS
@@ -43,8 +43,8 @@ D: Altivec optimizations
 S: Brittany, France
 
 N: Henrik Gramner
-E: hengar-6 AT student DOT ltu DOT se
-D: 4:2:2 chroma subsampling, x86 asm
+E: henrik AT gramner DOT com
+D: 4:2:2 chroma subsampling, x86 asm, Windows improvements, bugfixes
 S: Sweden
 
 N: Fiona Glaser
index 43d7259c146baf0f59a0cc4514784f531fd54a1a..77cc005f9665a5198b630a63fb3607c1a41ee7a9 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * asm.S: arm utility macros
  *****************************************************************************
- * Copyright (C) 2008-2013 x264 project
+ * Copyright (C) 2008-2014 x264 project
  *
  * Authors: Mans Rullgard <mans@mansr.com>
  *          David Conrad <lessen42@gmail.com>
index 3d9cca9daf03417269269a6adddbbc7ecef63d57..a254551ae65c16e9e7d4e5d2cd520a3ff363e487 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * cpu-a.S: arm cpu detection
  *****************************************************************************
- * Copyright (C) 2009-2013 x264 project
+ * Copyright (C) 2009-2014 x264 project
  *
  * Authors: David Conrad <lessen42@gmail.com>
  *
index 1b188e912057497ef3ac271f72d907f36cef0eed..df12aeb04a0475b51b7fcc85cf65b6bae61215d4 100644 (file)
@@ -1,7 +1,7 @@
 /****************************************************************************
  * dct-a.S: arm transform and zigzag
  *****************************************************************************
- * Copyright (C) 2009-2013 x264 project
+ * Copyright (C) 2009-2014 x264 project
  *
  * Authors: David Conrad <lessen42@gmail.com>
  *
index 4defc32a0b4b078b7f749f3fd709b69e5462570b..8a683f23cd68075619785010fb73190f2a660fb5 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * dct.h: arm transform and zigzag
  *****************************************************************************
- * Copyright (C) 2009-2013 x264 project
+ * Copyright (C) 2009-2014 x264 project
  *
  * Authors: David Conrad <lessen42@gmail.com>
  *
index f0e7f4d088671e069f78f5fdb1e8213e41592c50..7cfecb7e0f9ce4b5be89bd7c23f13a532bbeb6ba 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * deblock.S: arm deblocking
  *****************************************************************************
- * Copyright (C) 2009-2013 x264 project
+ * Copyright (C) 2009-2014 x264 project
  *
  * Authors: Mans Rullgard <mans@mansr.com>
  *
index 6e84e3cd6da6a0995c3abe573ac6c9e4a6eec4b6..90f16116ebca1646352ca201e24f364e138bd1ef 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * mc.S: arm motion compensation
  *****************************************************************************
- * Copyright (C) 2009-2013 x264 project
+ * Copyright (C) 2009-2014 x264 project
  *
  * Authors: David Conrad <lessen42@gmail.com>
  *          Mans Rullgard <mans@mansr.com>
index 2168120f711a00e6355577959687e24a3c11d16f..16ea1c5f893c7d908491c907dbed8dcc1ce5f0a6 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * mc-c.c: arm motion compensation
  *****************************************************************************
- * Copyright (C) 2009-2013 x264 project
+ * Copyright (C) 2009-2014 x264 project
  *
  * Authors: David Conrad <lessen42@gmail.com>
  *
index 8823a53dfcca60b24f02d8d242cbb8fa3a538ba3..f8922ea693a298e661efa663de9b5df87c64a96f 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * mc.h: arm motion compensation
  *****************************************************************************
- * Copyright (C) 2009-2013 x264 project
+ * Copyright (C) 2009-2014 x264 project
  *
  * Authors: David Conrad <lessen42@gmail.com>
  *
index 717a771f5a9bed7f99e95b7f26bccedf9657c933..644e4497788215b749a28caf7cb688a19e0ce5bc 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * pixel.S: arm pixel metrics
  *****************************************************************************
- * Copyright (C) 2009-2013 x264 project
+ * Copyright (C) 2009-2014 x264 project
  *
  * Authors: David Conrad <lessen42@gmail.com>
  *
index 7d04247316e2860cab358775cda144cba7ae9181..1024ee7839bb2c2cb589f44e54ad66af30846f8a 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * pixel.h: arm pixel metrics
  *****************************************************************************
- * Copyright (C) 2009-2013 x264 project
+ * Copyright (C) 2009-2014 x264 project
  *
  * Authors: David Conrad <lessen42@gmail.com>
  *
index c2bf08171c7b0cfdcbb4038eb3bb93297c2331de..ed805b5cf8fb4c3400d6baf94078c5df782dc165 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * predict.S: arm intra prediction
  *****************************************************************************
- * Copyright (C) 2009-2013 x264 project
+ * Copyright (C) 2009-2014 x264 project
  *
  * Authors: David Conrad <lessen42@gmail.com>
  *          Mans Rullgard <mans@mansr.com>
index 07a46fac44657919cd7f001ddf61096e6257df39..204051b08f8024a8f7b760413b61ee9624f0e922 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * predict.c: arm intra prediction
  *****************************************************************************
- * Copyright (C) 2009-2013 x264 project
+ * Copyright (C) 2009-2014 x264 project
  *
  * Authors: David Conrad <lessen42@gmail.com>
  *
index e6e13fa1bbe6410e3ec82e4e0d010a2f85719ad5..0d07c2a22c10786d16d302163e58433fa393d4d6 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * predict.h: arm intra prediction
  *****************************************************************************
- * Copyright (C) 2009-2013 x264 project
+ * Copyright (C) 2009-2014 x264 project
  *
  * Authors: David Conrad <lessen42@gmail.com>
  *
index 38045bc63efb9f2e17e1f5b32b69af4d72383de8..2aeedc4ac9b768f19736f38f688b676e9984619e 100644 (file)
@@ -1,7 +1,7 @@
 /****************************************************************************
  * quant.S: arm quantization and level-run
  *****************************************************************************
- * Copyright (C) 2009-2013 x264 project
+ * Copyright (C) 2009-2014 x264 project
  *
  * Authors: David Conrad <lessen42@gmail.com>
  *
index bf29f251b4f2b33ab011323f770c9937684cea17..0695ab1e327920a22feb3b39b0540e45879b5090 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * quant.h: arm quantization and level-run
  *****************************************************************************
- * Copyright (C) 2005-2013 x264 project
+ * Copyright (C) 2005-2014 x264 project
  *
  * Authors: David Conrad <lessen42@gmail.com>
  *
index 2c2ca37fc3363c58f762b1a0d802c613e6bd49b5..ed3ad5e1a0912023a1743880ae1b9f418b349561 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * bitstream.c: bitstream writing
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *          Fiona Glaser <fiona@x264.com>
index 629cf6078fa56b28d5889a87e5d0926745e61465..83a6b1d5751ff9023099efd4f88df12d615eb5a0 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * bitstream.h: bitstream writing
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Loren Merritt <lorenm@u.washington.edu>
  *          Fiona Glaser <fiona@x264.com>
index a796bb1f7af678f6710b059824968115b9ca779f..3dbc5743749fb2f8d79cfd445c6916ab5df071e5 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * cabac.c: arithmetic coder
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *          Loren Merritt <lorenm@u.washington.edu>
index ccf4d4e87b995737a3125faf986a5b4bae2a616d..dbe682061d08e3a8013a2e46f985157c3e756362 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * cabac.h: arithmetic coder
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Loren Merritt <lorenm@u.washington.edu>
  *          Laurent Aimar <fenrir@via.ecp.fr>
index f24890f9fda2b296405c66628f40818e2fbe0178..4cdde07c01501f36759eb45137346ffff72f4546 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * common.c: misc common functions
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Loren Merritt <lorenm@u.washington.edu>
  *          Laurent Aimar <fenrir@via.ecp.fr>
index d18b715e1fc16a01db0ce29779cbce13b9a43ae6..6e63170f486c2f0adab17fb060cf194a9f2eb77f 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * common.h: misc common functions
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *          Loren Merritt <lorenm@u.washington.edu>
index 0e36a89fdeb30f59246826beb4ab71245efad5c3..3f6076658e1f8c39b81448b7bac80a7ba2ab9908 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * cpu.c: cpu detection
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Loren Merritt <lorenm@u.washington.edu>
  *          Laurent Aimar <fenrir@via.ecp.fr>
index 06b45d37243282f832842243f02f8a7c50f01181..158e102e13f2f6d8f1f1c3d2116bad856ae0945a 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * cpu.h: cpu detection
  *****************************************************************************
- * Copyright (C) 2004-2013 x264 project
+ * Copyright (C) 2004-2014 x264 project
  *
  * Authors: Loren Merritt <lorenm@u.washington.edu>
  *
index 52ef9bef7d32414467b9fc2593cbccaa0ff03dbf..9cca355fe7c377c44c4f16e128f0eac191f0ea56 100644 (file)
@@ -1,11 +1,11 @@
 /*****************************************************************************
  * dct.c: transform and zigzag
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Loren Merritt <lorenm@u.washington.edu>
  *          Laurent Aimar <fenrir@via.ecp.fr>
- *          Henrik Gramner <hengar-6@student.ltu.se>
+ *          Henrik Gramner <henrik@gramner.com>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
index ce10eb21d58e3ed9568cf4878ff6bdec3e329266..7aef8256487b08ed73d9c5e82d0bf14b373c5664 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * dct.h: transform and zigzag
  *****************************************************************************
- * Copyright (C) 2004-2013 x264 project
+ * Copyright (C) 2004-2014 x264 project
  *
  * Authors: Loren Merritt <lorenm@u.washington.edu>
  *
index a00847ef2b292608a6ed6f3dc5e46e9c5ea35c89..e6af417f879bff3ed36d1a6558f3d2a50f618371 100644 (file)
@@ -1,12 +1,12 @@
 /*****************************************************************************
  * deblock.c: deblocking
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *          Loren Merritt <lorenm@u.washington.edu>
  *          Fiona Glaser <fiona@x264.com>
- *          Henrik Gramner <hengar-6@student.ltu.se>
+ *          Henrik Gramner <henrik@gramner.com>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
index 6203e3bf0ea383e9b83dbf365795bde7733118c5..7e79fe9ad4dfa17d1c236fb2b7606f0f04483c54 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * frame.c: frame handling
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *          Loren Merritt <lorenm@u.washington.edu>
index d8416a5df52f03b7f668874dba808718b0b36ce5..f95ffa99fdcda65c4f80bd8fc3f6829db67c81fb 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * frame.h: frame handling
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *          Loren Merritt <lorenm@u.washington.edu>
index 45405fde51050e88793b138a82f1ee46ddf58f82..bf5a0e82cb92a961591eedec1683e95810f9e305 100644 (file)
@@ -1,12 +1,12 @@
 /*****************************************************************************
  * macroblock.c: macroblock common functions
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Fiona Glaser <fiona@x264.com>
  *          Laurent Aimar <fenrir@via.ecp.fr>
  *          Loren Merritt <lorenm@u.washington.edu>
- *          Henrik Gramner <hengar-6@student.ltu.se>
+ *          Henrik Gramner <henrik@gramner.com>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
index 7805e497d994bda6662e89d8170cca1c2d3ad2bd..2fe316323b4bbc54d08d41c23b5a08b8b749441d 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * macroblock.h: macroblock common functions
  *****************************************************************************
- * Copyright (C) 2005-2013 x264 project
+ * Copyright (C) 2005-2014 x264 project
  *
  * Authors: Loren Merritt <lorenm@u.washington.edu>
  *          Laurent Aimar <fenrir@via.ecp.fr>
index 6810484026f8e19e53d2e3d06a328393f7314486..0fe0e61a66eb8357068486b194b6e7ce46590e29 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * mc.c: motion compensation
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *          Loren Merritt <lorenm@u.washington.edu>
index 262e20169e175ca1ebd73a1749b82510c7fdbd5d..edd3e327f6675b97ef0900bf40ea0ed8e4862fe7 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * mc.h: motion compensation
  *****************************************************************************
- * Copyright (C) 2004-2013 x264 project
+ * Copyright (C) 2004-2014 x264 project
  *
  * Authors: Loren Merritt <lorenm@u.washington.edu>
  *
index 4cde5ad5857851f34fe201ebfe300054c06562a4..745c8ea01c4ca92ef4092326aa557fe15b9f8af0 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * mvpred.c: motion vector prediction
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Loren Merritt <lorenm@u.washington.edu>
  *          Fiona Glaser <fiona@x264.com>
index 5d0dce509d690c68a37dbf9313f2ac5fa9aab362..9e5e7941a2d50b72980f4b90d2a6b47c8dbb4052 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * opencl.c: OpenCL initialization and kernel compilation
  *****************************************************************************
- * Copyright (C) 2012-2013 x264 project
+ * Copyright (C) 2012-2014 x264 project
  *
  * Authors: Steve Borho <sborho@multicorewareinc.com>
  *          Anton Mitrofanov <BugMaster@narod.ru>
index 426bf140ea12a18465b9780da0b60841ed77bbe2..05129b07c5e109de075c1bd929a265eb8b06146f 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * opencl.h: OpenCL structures and defines
  *****************************************************************************
- * Copyright (C) 2012-2013 x264 project
+ * Copyright (C) 2012-2014 x264 project
  *
  * Authors: Steve Borho <sborho@multicorewareinc.com>
  *          Anton Mitrofanov <BugMaster@narod.ru>
index bc3692a1b2d0a26d342d39bcb12e131cb327e22c..e97aaeda11cd734f53bca0f9d9c4e08f8066ca14 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * osdep.c: platform-specific code
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Steven Walters <kemuri9@gmail.com>
  *          Laurent Aimar <fenrir@via.ecp.fr>
index ea6eb0859840f68873be696993b3924e0ffe6860..28a2e85f0f3a98c933869375d06614efa8378aea 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * osdep.h: platform-specific code
  *****************************************************************************
- * Copyright (C) 2007-2013 x264 project
+ * Copyright (C) 2007-2014 x264 project
  *
  * Authors: Loren Merritt <lorenm@u.washington.edu>
  *          Laurent Aimar <fenrir@via.ecp.fr>
index ff881ac61d5791b031c1c386e940d0861c6a0e70..54ada1ea9a3bc8856c0d975e7707c22f2fb8515d 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * pixel.c: pixel metrics
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Loren Merritt <lorenm@u.washington.edu>
  *          Laurent Aimar <fenrir@via.ecp.fr>
index 4fef644aee61acb312c98bc108c6668d6490620a..df480b0974ce1e4f96df558bcae5ce120755b913 100644 (file)
@@ -1,11 +1,11 @@
 /*****************************************************************************
  * pixel.c: pixel metrics
  *****************************************************************************
- * Copyright (C) 2004-2013 x264 project
+ * Copyright (C) 2004-2014 x264 project
  *
  * Authors: Loren Merritt <lorenm@u.washington.edu>
  *          Fiona Glaser <fiona@x264.com>
-            Henrik Gramner <hengar-6@student.ltu.se>
+            Henrik Gramner <henrik@gramner.com>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
index 8420ad218c7f42f182c8bba960b9fa25cba80a70..b3c3b2c24230d8bd3f6baedb8d314c1463652290 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * dct.c: ppc transform and zigzag
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Guillaume Poirier <gpoirier@mplayerhq.hu>
  *          Eric Petit <eric.petit@lapsus.org>
index 3ac841a9303ecd2363926d9c6c354e50c16c2831..f04de1f52084f7e5776cae8d6d458fa10dfb0006 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * dct.h: ppc transform and zigzag
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Eric Petit <eric.petit@lapsus.org>
  *          Guillaume Poirier <gpoirier@mplayerhq.hu>
index bddd2e4186b4daa4c46d006de5c0ec55a958af2a..423e9b49713f3501dffc1f337dea8d98422a30e8 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * deblock.c: ppc deblocking
  *****************************************************************************
- * Copyright (C) 2007-2013 x264 project
+ * Copyright (C) 2007-2014 x264 project
  *
  * Authors: Guillaume Poirier <gpoirier@mplayerhq.hu>
  *
index 437c7d06a451ea5b73f83dede924368446476886..9d554feb0898bd219d93b4ed73e310593ebb730f 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * mc.c: ppc motion compensation
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Eric Petit <eric.petit@lapsus.org>
  *          Guillaume Poirier <gpoirier@mplayerhq.hu>
index a996ae7b94241a202f09ecc7d201c4998c20097e..4b77f016ebbe50c1fed8ba4fb04bec62ad16efae 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * mc.h: ppc motion compensation
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Eric Petit <eric.petit@lapsus.org>
  *
index 4d322843abcfa6c3f53db2f95c2d7aca682fb69b..46a3a49c0d6aaa14b3fd5ee43d4123b70936ca43 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * pixel.c: ppc pixel metrics
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Eric Petit <eric.petit@lapsus.org>
  *          Guillaume Poirier <gpoirier@mplayerhq.hu>
index 62e8cfc41bac05316fc3edbb15d41d9109d90943..7ad1ac7cf7362361691dc511ffb9794d6ba22036 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * pixel.h: ppc pixel metrics
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Eric Petit <eric.petit@lapsus.org>
  *
index f88d36081b8b74b21113abbd877d8e152a1d85ad..1a79bd5d88cea09199e7a68f39a8edc1caf84388 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * ppccommon.h: ppc utility macros
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Eric Petit <eric.petit@lapsus.org>
  *
index 69fe2224865fbf791b7146e7d2e2cff0db85981c..e75f9e9ccd0ccd026fcf651fac2d9a471738c82a 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * predict.c: ppc intra prediction
  *****************************************************************************
- * Copyright (C) 2007-2013 x264 project
+ * Copyright (C) 2007-2014 x264 project
  *
  * Authors: Guillaume Poirier <gpoirier@mplayerhq.hu>
  *
index 9082ca554d776ad124657e94505c78e216a1b1f8..cff175625e7c01181e40ae5cf93549743a34138c 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * predict.h: ppc intra prediction
  *****************************************************************************
- * Copyright (C) 2007-2013 x264 project
+ * Copyright (C) 2007-2014 x264 project
  *
  * Authors: Guillaume Poirier <gpoirier@mplayerhq.hu>
  *
index f11938afc1b3d0ec20ef7aaf481cec0503018465..15094872f2038521ef51d4e7d1b4d18e28e99f37 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * quant.c: ppc quantization
  *****************************************************************************
- * Copyright (C) 2007-2013 x264 project
+ * Copyright (C) 2007-2014 x264 project
  *
  * Authors: Guillaume Poirier <gpoirier@mplayerhq.hu>
  *
index 1f789c3522f151e94abf88d29e5cd7bc067fb44f..6bdf2a447b45026ad18cad011952bafb80438bb4 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * quant.c: ppc quantization
  *****************************************************************************
- * Copyright (C) 2007-2013 x264 project
+ * Copyright (C) 2007-2014 x264 project
  *
  * Authors: Guillaume Poirier <gpoirier@mplayerhq.hu>
  *
index caa72f01489b199607ccf331bda0256810533db9..cbc018d392ce3452a8f043fd156f46b563069dc7 100644 (file)
@@ -1,12 +1,12 @@
 /*****************************************************************************
  * predict.c: intra prediction
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *          Loren Merritt <lorenm@u.washington.edu>
  *          Fiona Glaser <fiona@x264.com>
- *          Henrik Gramner <hengar-6@student.ltu.se>
+ *          Henrik Gramner <henrik@gramner.com>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
index 957c3abaf1bc5694e2d12928d3fd1e918a695517..b01dcbd55d98626bc40c2302c742d0ac1a6af459 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * predict.h: intra prediction
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Loren Merritt <lorenm@u.washington.edu>
  *          Laurent Aimar <fenrir@via.ecp.fr>
index bb87d70aaa27e39ac36a5697105d719127875040..339df1c1277dd8db41b23a5e9cd79678f8ec978d 100644 (file)
@@ -1,12 +1,12 @@
 /*****************************************************************************
  * quant.c: quantization and level-run
  *****************************************************************************
- * Copyright (C) 2005-2013 x264 project
+ * Copyright (C) 2005-2014 x264 project
  *
  * Authors: Loren Merritt <lorenm@u.washington.edu>
  *          Fiona Glaser <fiona@x264.com>
  *          Christian Heine <sennindemokrit@gmx.net>
- *          Henrik Gramner <hengar-6@student.ltu.se>
+ *          Henrik Gramner <henrik@gramner.com>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
index ee80aeb67822794c9b664ca3d681347c8f0f6ac4..ae597ef889399acc47b50e54d412ad622e7fc2e1 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * quant.h: quantization and level-run
  *****************************************************************************
- * Copyright (C) 2005-2013 x264 project
+ * Copyright (C) 2005-2014 x264 project
  *
  * Authors: Loren Merritt <lorenm@u.washington.edu>
  *          Fiona Glaser <fiona@x264.com>
index 623e9e1d0b8ce316abdb7cd6101232178ab858c2..f53f6525d82d369fe4c31502e6baa5b66712a3d7 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * rectangle.c: rectangle filling
  *****************************************************************************
- * Copyright (C) 2010-2013 x264 project
+ * Copyright (C) 2010-2014 x264 project
  *
  * Authors: Fiona Glaser <fiona@x264.com>
  *
index ef83ad31a0d3960b9757ff5b18799a8a609e3fee..fe81dd9acd4c476f03161354849d6b9526016d4b 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * rectangle.h: rectangle filling
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Fiona Glaser <fiona@x264.com>
  *          Loren Merritt <lorenm@u.washington.edu>
index fa8b15856096aca8eda9078fadeea2a3adba2961..53c61ca1175560e4992754f466871ec1cf929b0b 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * set.c: quantization init
  *****************************************************************************
- * Copyright (C) 2005-2013 x264 project
+ * Copyright (C) 2005-2014 x264 project
  *
  * Authors: Loren Merritt <lorenm@u.washington.edu>
  *
index 2bb11fc426cfa1174c362bef1c27988c8b71fa99..6fb7abafa8eec7f782b3a2535eb2c57cd7ec467f 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * set.h: quantization init
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Loren Merritt <lorenm@u.washington.edu>
  *          Laurent Aimar <fenrir@via.ecp.fr>
index ba21273ca371d1f20d2d2a09913459dec180aac0..d87d7fe5c5bc2524e8f2344b2708cecf5949e848 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * pixel.asm: sparc pixel metrics
  *****************************************************************************
- * Copyright (C) 2005-2013 x264 project
+ * Copyright (C) 2005-2014 x264 project
  *
  * Authors: Phil Jensen <philj@csufresno.edu>
  *
index 600b05d56b803344041968377412c098f90b5cb6..ed60b62cdac3d4970561b784ea4bb191a07ba4c2 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * pixel.h: sparc pixel metrics
  *****************************************************************************
- * Copyright (C) 2005-2013 x264 project
+ * Copyright (C) 2005-2014 x264 project
  *
  * Authors: Phil Jensen <philj@csufresno.edu>
  *
index 303349a463ad221441da9b5ef81e2e4daae9bc0f..6c44cc86d8dc0145b64ba1bbfc8bd699a8f51755 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * threadpool.c: thread pooling
  *****************************************************************************
- * Copyright (C) 2010-2013 x264 project
+ * Copyright (C) 2010-2014 x264 project
  *
  * Authors: Steven Walters <kemuri9@gmail.com>
  *
index 2941458b64a6190e7a1aa35fa35d23f3b18b883f..b2a00c1251cba4dbaaa1570d8d4a4404d81f7903 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * threadpool.h: thread pooling
  *****************************************************************************
- * Copyright (C) 2010-2013 x264 project
+ * Copyright (C) 2010-2014 x264 project
  *
  * Authors: Steven Walters <kemuri9@gmail.com>
  *
index b070bd7e402e37d51034034483eb5a98ce3ca8d9..1edf1051dc9ec45199e648ec034fc7a8a8481afb 100644 (file)
@@ -1,11 +1,11 @@
 /*****************************************************************************
  * vlc.c : vlc tables
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *          Fiona Glaser <fiona@x264.com>
- *          Henrik Gramner <hengar-6@student.ltu.se>
+ *          Henrik Gramner <henrik@gramner.com>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
index b446b76c1466bb1133c82a0ca4226cd8b9351d97..7ad70edcb7d212c47c4c3adb524173e61b682922 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * win32thread.c: windows threading
  *****************************************************************************
- * Copyright (C) 2010-2013 x264 project
+ * Copyright (C) 2010-2014 x264 project
  *
  * Authors: Steven Walters <kemuri9@gmail.com>
  *          Pegasys Inc. <http://www.pegasys-inc.com>
index 48494d510ea083e0f81e3de048bc95c4289b736e..c5130a18bd8fa89710af90463b2ce2cba51dd305 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * win32thread.h: windows threading
  *****************************************************************************
- * Copyright (C) 2010-2013 x264 project
+ * Copyright (C) 2010-2014 x264 project
  *
  * Authors: Steven Walters <kemuri9@gmail.com>
  *
index 8aff5069916791653ede9c61052914b708736e51..1ff0348b2edb7fcc75ba5484e7d7dbdad5f8a558 100644 (file)
@@ -1,7 +1,7 @@
 ;*****************************************************************************
 ;* bitstream-a.asm: x86 bitstream functions
 ;*****************************************************************************
-;* Copyright (C) 2010-2013 x264 project
+;* Copyright (C) 2010-2014 x264 project
 ;*
 ;* Authors: Fiona Glaser <fiona@x264.com>
 ;*          Henrik Gramner <henrik@gramner.com>
index 790edf1e212780fd4f7314fe993660cdb8cfebe5..2d7d5519820d9c21f340f17f0463083239b76200 100644 (file)
@@ -1,7 +1,7 @@
 ;*****************************************************************************
 ;* cabac-a.asm: x86 cabac
 ;*****************************************************************************
-;* Copyright (C) 2008-2013 x264 project
+;* Copyright (C) 2008-2014 x264 project
 ;*
 ;* Authors: Loren Merritt <lorenm@u.washington.edu>
 ;*          Fiona Glaser <fiona@x264.com>
index ae41c5b09f84bd86f616ce94ac7cecf037b78ce1..fafe567d28bbdfd2edf35a11a73a58c27c7b8dd9 100644 (file)
@@ -1,7 +1,7 @@
 ;*****************************************************************************
 ;* const-a.asm: x86 global constants
 ;*****************************************************************************
-;* Copyright (C) 2010-2013 x264 project
+;* Copyright (C) 2010-2014 x264 project
 ;*
 ;* Authors: Loren Merritt <lorenm@u.washington.edu>
 ;*          Fiona Glaser <fiona@x264.com>
index 2ff86e7542eb62a38c5e413a29ae67f0787a6e8a..bcf6c4340dac66455b3ab0a16bc8b072e66ce64b 100644 (file)
@@ -1,7 +1,7 @@
 ;*****************************************************************************
 ;* cpu-a.asm: x86 cpu utilities
 ;*****************************************************************************
-;* Copyright (C) 2003-2013 x264 project
+;* Copyright (C) 2003-2014 x264 project
 ;*
 ;* Authors: Laurent Aimar <fenrir@via.ecp.fr>
 ;*          Loren Merritt <lorenm@u.washington.edu>
index 70c7fb57317bec0381812c8273a06933bf2c6bd9..be2786f150a183936d0f480b0472dfdfeeb76dba 100644 (file)
@@ -1,7 +1,7 @@
 ;*****************************************************************************
 ;* dct-32.asm: x86_32 transform and zigzag
 ;*****************************************************************************
-;* Copyright (C) 2003-2013 x264 project
+;* Copyright (C) 2003-2014 x264 project
 ;*
 ;* Authors: Loren Merritt <lorenm@u.washington.edu>
 ;*          Holger Lubitz <holger@lubitz.org>
index c1aff843101f0081686f07ebe04908c7aa803e4a..ac20e99f24bc4f5f614cc86da909f5be0c33c58a 100644 (file)
@@ -1,7 +1,7 @@
 ;*****************************************************************************
 ;* dct-64.asm: x86_64 transform and zigzag
 ;*****************************************************************************
-;* Copyright (C) 2003-2013 x264 project
+;* Copyright (C) 2003-2014 x264 project
 ;*
 ;* Authors: Loren Merritt <lorenm@u.washington.edu>
 ;*          Holger Lubitz <holger@lubitz.org>
index ab6e10b4260bbeb0ece9f4e1bdd805534d32e9d9..4c594acc421d2bb0761bf61eaa3a5c0d6a169fe2 100644 (file)
@@ -1,7 +1,7 @@
 ;*****************************************************************************
 ;* dct-a.asm: x86 transform and zigzag
 ;*****************************************************************************
-;* Copyright (C) 2003-2013 x264 project
+;* Copyright (C) 2003-2014 x264 project
 ;*
 ;* Authors: Holger Lubitz <holger@lubitz.org>
 ;*          Loren Merritt <lorenm@u.washington.edu>
index 0a8ef374cc7175d6af1db934dcf02ce84eaaf8f7..337a63271483e0abe89d0f86eab069db8cfdf2b3 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * dct.h: x86 transform and zigzag
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Loren Merritt <lorenm@u.washington.edu>
  *          Laurent Aimar <fenrir@via.ecp.fr>
index 75cb9e1de49a883fcaf273213925ab997982b344..a9b719c6d5c1ebec3c4d76e8b1875f596903d1c8 100644 (file)
@@ -1,7 +1,7 @@
 ;*****************************************************************************
 ;* deblock-a.asm: x86 deblocking
 ;*****************************************************************************
-;* Copyright (C) 2005-2013 x264 project
+;* Copyright (C) 2005-2014 x264 project
 ;*
 ;* Authors: Loren Merritt <lorenm@u.washington.edu>
 ;*          Fiona Glaser <fiona@x264.com>
index f8d66a45f53641a647efecbec08b513c91ae1fad..f60e69ea33cbc746f36c5684310ab2fd8bfee45f 100644 (file)
@@ -1,7 +1,7 @@
 ;*****************************************************************************
 ;* mc-a.asm: x86 motion compensation
 ;*****************************************************************************
-;* Copyright (C) 2003-2013 x264 project
+;* Copyright (C) 2003-2014 x264 project
 ;*
 ;* Authors: Loren Merritt <lorenm@u.washington.edu>
 ;*          Fiona Glaser <fiona@x264.com>
index 0b97f237c8ef2a516f4c37a276b1aa5947985acd..39b835550ea0fb330eb13d79a3567c9234c93712 100644 (file)
@@ -1,7 +1,7 @@
 ;*****************************************************************************
 ;* mc-a2.asm: x86 motion compensation
 ;*****************************************************************************
-;* Copyright (C) 2005-2013 x264 project
+;* Copyright (C) 2005-2014 x264 project
 ;*
 ;* Authors: Loren Merritt <lorenm@u.washington.edu>
 ;*          Fiona Glaser <fiona@x264.com>
index ffc2ca862128d288f750b242baa7d701d600014d..cbe2d3ac0bbb2d68586427723e53463b7a2198c8 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * mc-c.c: x86 motion compensation
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *          Loren Merritt <lorenm@u.washington.edu>
index 4287f6d05c3d398c379913d7591cea75f122be2c..c9e56344cc1eb60aa21d8e8a3e99c89aa7f4e526 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * mc.h: x86 motion compensation
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Loren Merritt <lorenm@u.washington.edu>
  *          Laurent Aimar <fenrir@via.ecp.fr>
index 58324bf8817ea11ebabc6c740f02967ce086774d..f25bb67a78ff90d31cdbf633ed9ad60a538db258 100644 (file)
@@ -1,7 +1,7 @@
 ;*****************************************************************************
 ;* pixel-32.asm: x86_32 pixel metrics
 ;*****************************************************************************
-;* Copyright (C) 2003-2013 x264 project
+;* Copyright (C) 2003-2014 x264 project
 ;*
 ;* Authors: Loren Merritt <lorenm@u.washington.edu>
 ;*          Laurent Aimar <fenrir@via.ecp.fr>
index 748ecf92a08d8d3a5e837db640f99c4a774210e5..421675e7ff9f6777e19d27aee4391386b5f7ae64 100644 (file)
@@ -1,7 +1,7 @@
 ;*****************************************************************************
 ;* pixel.asm: x86 pixel metrics
 ;*****************************************************************************
-;* Copyright (C) 2003-2013 x264 project
+;* Copyright (C) 2003-2014 x264 project
 ;*
 ;* Authors: Loren Merritt <lorenm@u.washington.edu>
 ;*          Holger Lubitz <holger@lubitz.org>
index 0f3524cbf670e8e9bab3a5906b030b904a592dc2..362bc30c943ae281507ba9e760b82bbbd32048bc 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * pixel.h: x86 pixel metrics
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *          Loren Merritt <lorenm@u.washington.edu>
index 9dae4a87932aa1acd0c263934b3deb3523b67d4a..c0fabfa84f9c43eff4ed1c0d945036cae7475049 100644 (file)
@@ -1,7 +1,7 @@
 ;*****************************************************************************
 ;* predict-a.asm: x86 intra prediction
 ;*****************************************************************************
-;* Copyright (C) 2005-2013 x264 project
+;* Copyright (C) 2005-2014 x264 project
 ;*
 ;* Authors: Loren Merritt <lorenm@u.washington.edu>
 ;*          Holger Lubitz <holger@lubitz.org>
index 59fda581a4e99b8cc34925948c55f22f41c57de8..086c45dcc204e2c1752913253fda34690060f8da 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * predict-c.c: intra prediction
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *          Loren Merritt <lorenm@u.washington.edu>
index 25ba25ddc7a80f51b92095ba8246af3e78b838aa..187fb68f887d2da07ae3daeb883bb12edeff7963 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * predict.h: x86 intra prediction
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *          Loren Merritt <lorenm@u.washington.edu>
index def485ee57fb4fddd0211e7c0fb88b32063d1a2b..ed01c372b6d5691c20b179761ea961fd15afc50e 100644 (file)
@@ -1,7 +1,7 @@
 ;*****************************************************************************
 ;* quant-a.asm: x86 quantization and level-run
 ;*****************************************************************************
-;* Copyright (C) 2005-2013 x264 project
+;* Copyright (C) 2005-2014 x264 project
 ;*
 ;* Authors: Loren Merritt <lorenm@u.washington.edu>
 ;*          Fiona Glaser <fiona@x264.com>
index 089942adffff40ca1a6a9a8e88380aecb4431a2a..5adc6877a294df6e5711d70a3abd877a12b2fc31 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * quant.h: x86 quantization and level-run
  *****************************************************************************
- * Copyright (C) 2005-2013 x264 project
+ * Copyright (C) 2005-2014 x264 project
  *
  * Authors: Loren Merritt <lorenm@u.washington.edu>
  *          Fiona Glaser <fiona@x264.com>
index 2270011b1b4b9390de115f99a1ae89e6b4cc2e38..7744ab3536e62131cf2edf019d9daf2db3c0bbfc 100644 (file)
@@ -1,7 +1,7 @@
 ;*****************************************************************************
 ;* sad-a.asm: x86 sad functions
 ;*****************************************************************************
-;* Copyright (C) 2003-2013 x264 project
+;* Copyright (C) 2003-2014 x264 project
 ;*
 ;* Authors: Loren Merritt <lorenm@u.washington.edu>
 ;*          Fiona Glaser <fiona@x264.com>
index 68fa06aef0c6d097bc0b11daaec9280b5b0623ce..ebfe9b5cf39243b2fa0552f30e0efc17f36395e2 100644 (file)
@@ -1,7 +1,7 @@
 ;*****************************************************************************
 ;* sad16-a.asm: x86 high depth sad functions
 ;*****************************************************************************
-;* Copyright (C) 2010-2013 x264 project
+;* Copyright (C) 2010-2014 x264 project
 ;*
 ;* Authors: Oskar Arvidsson <oskar@irock.se>
 ;*          Henrik Gramner <henrik@gramner.com>
index bd3e803c9ac2cc60c3897f3f1bfd58acf255a23e..4fbe9e923cb955b8e43e963c2c773415819a5b87 100644 (file)
@@ -1,7 +1,7 @@
 ;*****************************************************************************
 ;* trellis-64.asm: x86_64 trellis quantization
 ;*****************************************************************************
-;* Copyright (C) 2012-2013 x264 project
+;* Copyright (C) 2012-2014 x264 project
 ;*
 ;* Authors: Loren Merritt <lorenm@u.washington.edu>
 ;*
index 972f0de9b0dcd6bb03dcf1750293da222b8a4ab6..6aa423368f8d11258b070cd6584779c9e47c6e20 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * util.h: x86 inline asm
  *****************************************************************************
- * Copyright (C) 2008-2013 x264 project
+ * Copyright (C) 2008-2014 x264 project
  *
  * Authors: Fiona Glaser <fiona@x264.com>
  *          Loren Merritt <lorenm@u.washington.edu>
index 1696a4c9631fc82f984eee129a42bd0662bdc282..4dae43a23b59b3d0f43fbe0d4b4636522aa33c8b 100644 (file)
@@ -1,7 +1,7 @@
 ;*****************************************************************************
 ;* x86inc.asm: x264asm abstraction layer
 ;*****************************************************************************
-;* Copyright (C) 2005-2013 x264 project
+;* Copyright (C) 2005-2014 x264 project
 ;*
 ;* Authors: Loren Merritt <lorenm@u.washington.edu>
 ;*          Anton Mitrofanov <BugMaster@narod.ru>
index 8a5365e0344d5ea4ffe7548d75e07e047f376622..79ff34f3703684349c7acdfae82f5c24737092bf 100644 (file)
@@ -1,7 +1,7 @@
 ;*****************************************************************************
 ;* x86util.asm: x86 utility macros
 ;*****************************************************************************
-;* Copyright (C) 2008-2013 x264 project
+;* Copyright (C) 2008-2014 x264 project
 ;*
 ;* Authors: Holger Lubitz <holger@lubitz.org>
 ;*          Loren Merritt <lorenm@u.washington.edu>
index 3796afb2227dd35d6672a3d7f77d85d7f87607d3..0e8a280f11506fe29f2da6d0eb54daf9051c9396 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * analyse.c: macroblock analysis
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *          Loren Merritt <lorenm@u.washington.edu>
index cbbb0dfa295b5e940b4545fc1c6d08877648b729..a0237f524eccd982ee0bb78cbdf1ac72358d51af 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * analyse.h: macroblock analysis
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *          Loren Merritt <lorenm@u.washington.edu>
index 2a9297d91582df5f523117607dc21e8f2bc00f33..f9cbae1122cb8bc763f70689be900f3234608a5d 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * cabac.c: cabac bitstream writing
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *          Loren Merritt <lorenm@u.washington.edu>
index dfdfd91ff712146c0011276e0214c49568cefaa4..b8ea8f2f5044ddcf7bbf6ea1cece18802c5a941d 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * cavlc.c: cavlc bitstream writing
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *          Loren Merritt <lorenm@u.washington.edu>
index f8596e84f764a05a7514afc5a9b0dc60b556f839..2c7438ea2161d92e6c503559f1028852a9c544eb 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * encoder.c: top-level encoder functions
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *          Loren Merritt <lorenm@u.washington.edu>
index 772db9d62e7fe704a74e32eee2165b5d901fc97e..a6e861bb4f6065e852d01517888ddeee632d4ca8 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * lookahead.c: high-level lookahead functions
  *****************************************************************************
- * Copyright (C) 2010-2013 Avail Media and x264 project
+ * Copyright (C) 2010-2014 Avail Media and x264 project
  *
  * Authors: Michael Kazmier <mkazmier@availmedia.com>
  *          Alex Giladi <agiladi@availmedia.com>
index da817b3bb1a1406aff328c6ca9d423c5a9047681..1f66278a4cf4cd4d25b2f3988764c44b5f696295 100644 (file)
@@ -1,12 +1,12 @@
 /*****************************************************************************
  * macroblock.c: macroblock encoding
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *          Loren Merritt <lorenm@u.washington.edu>
  *          Fiona Glaser <fiona@x264.com>
- *          Henrik Gramner <hengar-6@student.ltu.se>
+ *          Henrik Gramner <henrik@gramner.com>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
index a417c2696665ddbafd0b4591e936af4f9f8369c8..d0ba11a9707101ee37bcb7fecc3ccfacda77010b 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * macroblock.h: macroblock encoding
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Loren Merritt <lorenm@u.washington.edu>
  *          Laurent Aimar <fenrir@via.ecp.fr>
index 972af4748e2f23f9cd5646cbb834f8e90fa5a90c..55aa0ab73ae3e0747a9b88ae3bc8bee5fb1c817c 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * me.c: motion estimation
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Loren Merritt <lorenm@u.washington.edu>
  *          Laurent Aimar <fenrir@via.ecp.fr>
index 5857bad6ae0a60a42cfa21169820692e9a207569..ceb58df17c29508fd86bf605aaa58e7e062d4d02 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * me.h: motion estimation
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Loren Merritt <lorenm@u.washington.edu>
  *          Laurent Aimar <fenrir@via.ecp.fr>
index 641c93eb02142bfba6075fcd1a7f377c8ee90ace..3bf62d17c06358a9e59c3916e9dbab9b9fabd0ec 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * ratecontrol.c: ratecontrol
  *****************************************************************************
- * Copyright (C) 2005-2013 x264 project
+ * Copyright (C) 2005-2014 x264 project
  *
  * Authors: Loren Merritt <lorenm@u.washington.edu>
  *          Michael Niedermayer <michaelni@gmx.at>
index 9306b27d376434a52577e6ec4a2069e7abde80ce..9321e72641f66dfb8ce5fdabe316522595db6240 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * ratecontrol.h: ratecontrol
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Loren Merritt <lorenm@u.washington.edu>
  *          Laurent Aimar <fenrir@via.ecp.fr>
index 0dbcf2aea7f0840fc698c958b02375280f4c88c0..93fdc3a6d238e5d8304f16e4333634980645500a 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * rdo.c: rate-distortion optimization
  *****************************************************************************
- * Copyright (C) 2005-2013 x264 project
+ * Copyright (C) 2005-2014 x264 project
  *
  * Authors: Loren Merritt <lorenm@u.washington.edu>
  *          Fiona Glaser <fiona@x264.com>
index 61eb00618d2e4633a4880c16b10d2238c792a5c0..c3aa7c28b221eec1e1428ecfe2f9f34502196e16 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * set: header writing
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *          Loren Merritt <lorenm@u.washington.edu>
@@ -576,7 +576,7 @@ int x264_sei_version_write( x264_t *h, bs_t *s )
 
     memcpy( payload, uuid, 16 );
     sprintf( payload+16, "x264 - core %d%s - H.264/MPEG-4 AVC codec - "
-             "Copy%s 2003-2013 - http://www.videolan.org/x264.html - options: %s",
+             "Copy%s 2003-2014 - http://www.videolan.org/x264.html - options: %s",
              X264_BUILD, X264_VERSION, HAVE_GPL?"left":"right", opts );
     length = strlen(payload)+1;
 
index d70bec85730cc3ed1e205c94e5f276ef4d4c4781..5a8e1c798e8bb123f4f457eeacfde7cf8c46286a 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * set.h: header writing
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *          Loren Merritt <lorenm@u.washington.edu>
index 334215f8e0781f712176fd5e10b8d86404fa6356..a7cd00b9ca92bbb895ccdfbff83483e31cc44284 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * slicetype-cl.c: OpenCL slicetype decision code (lowres lookahead)
  *****************************************************************************
- * Copyright (C) 2012-2013 x264 project
+ * Copyright (C) 2012-2014 x264 project
  *
  * Authors: Steve Borho <sborho@multicorewareinc.com>
  *
index e300bbf353bfd477998cc68aa15384fc94956a51..6afc1a40470e474f53381f0d42bc54fc859a3a32 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * slicetype.c: lookahead analysis
  *****************************************************************************
- * Copyright (C) 2005-2013 x264 project
+ * Copyright (C) 2005-2014 x264 project
  *
  * Authors: Fiona Glaser <fiona@x264.com>
  *          Loren Merritt <lorenm@u.washington.edu>
index bf3dad45563429fb35d7f13b519efc534fd85594..1ea888ce54f99d12741be840e2d9744d72566fdf 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * filters.c: common filter functions
  *****************************************************************************
- * Copyright (C) 2010-2013 x264 project
+ * Copyright (C) 2010-2014 x264 project
  *
  * Authors: Diogo Franco <diogomfranco@gmail.com>
  *          Steven Walters <kemuri9@gmail.com>
index b75f3f16a6435483cb59b8eb907b38d493c0a485..1b51b4a0ef505fd7f211a1b945555a4afa4f50ec 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * filters.h: common filter functions
  *****************************************************************************
- * Copyright (C) 2010-2013 x264 project
+ * Copyright (C) 2010-2014 x264 project
  *
  * Authors: Diogo Franco <diogomfranco@gmail.com>
  *          Steven Walters <kemuri9@gmail.com>
index cc2cef0e5226900c237e8b39a5693c3972414d80..6de005ff0890be5cf473bd190220d396f7b46bea 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * cache.c: cache video filter
  *****************************************************************************
- * Copyright (C) 2010-2013 x264 project
+ * Copyright (C) 2010-2014 x264 project
  *
  * Authors: Steven Walters <kemuri9@gmail.com>
  *
index 98faab741f22ee392a106ec411043ce270b2af0f..643c0a4bf621ee716485e376675ff7f8132719af 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * crop.c: crop video filter
  *****************************************************************************
- * Copyright (C) 2010-2013 x264 project
+ * Copyright (C) 2010-2014 x264 project
  *
  * Authors: Steven Walters <kemuri9@gmail.com>
  *          James Darnley <james.darnley@gmail.com>
index a20f3b3f0c3c749915b75c3a921ea153fa1bdc54..5fcbd2074a30191b6f9c434de41302afaca03e17 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * depth.c: bit-depth conversion video filter
  *****************************************************************************
- * Copyright (C) 2010-2013 x264 project
+ * Copyright (C) 2010-2014 x264 project
  *
  * Authors: Oskar Arvidsson <oskar@irock.se>
  *
index 80138f17c6dfba043b7cbcfe75ad6b0c26be55ca..9bf870b40da973befde33f87260eaa15d365703c 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * fix_vfr_pts.c: vfr pts fixing video filter
  *****************************************************************************
- * Copyright (C) 2010-2013 x264 project
+ * Copyright (C) 2010-2014 x264 project
  *
  * Authors: Steven Walters <kemuri9@gmail.com>
  *
index c146064c55f1a943ce64cbb13728167dbebccba8..55fb42e896ed821ad11e13893534d8011dd2d991 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * internal.c: video filter utilities
  *****************************************************************************
- * Copyright (C) 2010-2013 x264 project
+ * Copyright (C) 2010-2014 x264 project
  *
  * Authors: Steven Walters <kemuri9@gmail.com>
  *
index 7d112a0f9984e5d6e052d54ca2ad9acf8188ebc7..f3bb2f42f848c4b9b91b076d6f6a1f1a8a1d60b2 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * internal.h: video filter utilities
  *****************************************************************************
- * Copyright (C) 2010-2013 x264 project
+ * Copyright (C) 2010-2014 x264 project
  *
  * Authors: Steven Walters <kemuri9@gmail.com>
  *
index 5d8a4890e9a14293b08dc1344166ad66ad56d624..7480a149ef2c7b78a5486df5baad6002da088948 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * resize.c: resize video filter
  *****************************************************************************
- * Copyright (C) 2010-2013 x264 project
+ * Copyright (C) 2010-2014 x264 project
  *
  * Authors: Steven Walters <kemuri9@gmail.com>
  *
index e7c70cee8516db74eea0a1e92e8810fbcf998539..38492bf752e13896fc8f98ed7aa01de24d37b462 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * select_every.c: select-every video filter
  *****************************************************************************
- * Copyright (C) 2010-2013 x264 project
+ * Copyright (C) 2010-2014 x264 project
  *
  * Authors: Steven Walters <kemuri9@gmail.com>
  *
index 754b9d0a054f173af119b1e9b2421b07fe03ead4..397bd791b0bddde8979c8acd823e798314fd7043 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * source.c: source video filter
  *****************************************************************************
- * Copyright (C) 2010-2013 x264 project
+ * Copyright (C) 2010-2014 x264 project
  *
  * Authors: Steven Walters <kemuri9@gmail.com>
  *
index c6f9e2244097d44dbf550e2269cf0497a465ff59..b54aec07f1a4f4cdd4e6822e418c6c15de7977bc 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * video.c: video filters
  *****************************************************************************
- * Copyright (C) 2010-2013 x264 project
+ * Copyright (C) 2010-2014 x264 project
  *
  * Authors: Steven Walters <kemuri9@gmail.com>
  *
index 41bf277d7f56f2d483b42fa4fc12c5b515638922..4caf98e1dd77c00d90a9dcefd94923c2cb903800 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * video.h: video filters
  *****************************************************************************
- * Copyright (C) 2010-2013 x264 project
+ * Copyright (C) 2010-2014 x264 project
  *
  * Authors: Steven Walters <kemuri9@gmail.com>
  *
index 3c1f23b22d5edba7b075a8ef32689c44584958f6..918978f38ff287d585b301c9a347c37df0f35af9 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * avs.c: avisynth input
  *****************************************************************************
- * Copyright (C) 2009-2013 x264 project
+ * Copyright (C) 2009-2014 x264 project
  *
  * Authors: Steven Walters <kemuri9@gmail.com>
  *
index c52ed03f2d4d533e641bafa47777b0f6418e40bf..d9cb5f34c5c906e0254522609efd44e497361b41 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * ffms.c: ffmpegsource input
  *****************************************************************************
- * Copyright (C) 2009-2013 x264 project
+ * Copyright (C) 2009-2014 x264 project
  *
  * Authors: Mike Gurlitz <mike.gurlitz@gmail.com>
  *          Steven Walters <kemuri9@gmail.com>
index 5cb277cf000438338f58997f0fc0a73b6d6ad978..9a99fa36d7943f5726e2b3dac0445fb6e3ca7d79 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * input.c: common input functions
  *****************************************************************************
- * Copyright (C) 2010-2013 x264 project
+ * Copyright (C) 2010-2014 x264 project
  *
  * Authors: Steven Walters <kemuri9@gmail.com>
  *
index a33d22a937b982436c7e5681d11c38cf42409fb8..919c52c4f490991964c3ada760b35dd285bf30e5 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * input.h: file input
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *          Loren Merritt <lorenm@u.washington.edu>
index 1cc592a24fb5ba6a89b95c07b6d0453604039c7d..27a61d90760c93c901289eff1297cdbb8f17b454 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * lavf.c: libavformat input
  *****************************************************************************
- * Copyright (C) 2009-2013 x264 project
+ * Copyright (C) 2009-2014 x264 project
  *
  * Authors: Mike Gurlitz <mike.gurlitz@gmail.com>
  *          Steven Walters <kemuri9@gmail.com>
index 9d21c5965a63c8f4115cf8fbd542fffd24f276e2..0caf6f023b045970f1052e46766487d261ba153a 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * raw.c: raw input
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *          Loren Merritt <lorenm@u.washington.edu>
index 9cb422a149254856cac5b2803ea482212901ec55..be6302cab0175b0697a884a24065d2de72d8e8ca 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * thread.c: threaded input
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *          Loren Merritt <lorenm@u.washington.edu>
index 7653f837fb8a5606b5481cc3b8ce29d49135b558..1a0b320463b4839fb1f03894135947592a5ce620 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * timecode.c: timecode file input
  *****************************************************************************
- * Copyright (C) 2010-2013 x264 project
+ * Copyright (C) 2010-2014 x264 project
  *
  * Authors: Yusuke Nakamura <muken.the.vfrmaniac@gmail.com>
  *
index bf62e8376991ed92f4837dbd24b8d15afc077876..5597c4348418ea4e3f47b07310cdc01a998b6ca7 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * y4m.c: y4m input
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *          Loren Merritt <lorenm@u.washington.edu>
index 46e46b369ddbfcfc9df85e5759233cca23326ab4..bb02f585aa400cb1773a0084f591efb61941e473 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * flv.c: flv muxer
  *****************************************************************************
- * Copyright (C) 2009-2013 x264 project
+ * Copyright (C) 2009-2014 x264 project
  *
  * Authors: Kieran Kunhya <kieran@kunhya.com>
  *
index b6c29a2aefe880ffab59d68ced0145005258ce23..2e7e861534b890e6d155f51d06b5018ae5b88ebd 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * flv_bytestream.c: flv muxer utilities
  *****************************************************************************
- * Copyright (C) 2009-2013 x264 project
+ * Copyright (C) 2009-2014 x264 project
  *
  * Authors: Kieran Kunhya <kieran@kunhya.com>
  *
index 325abb61270d8ff659919aeeb393e518c63006c8..7f351c099ce21cf05a1f404e59ce43e98897f0b9 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * flv_bytestream.h: flv muxer utilities
  *****************************************************************************
- * Copyright (C) 2009-2013 x264 project
+ * Copyright (C) 2009-2014 x264 project
  *
  * Authors: Kieran Kunhya <kieran@kunhya.com>
  *
index 00a13f56a993c2c643a84c9c39cc8dfabf2e5b5d..baa0f1ca793a4bbe1946be7c112c0285ac564869 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * matroska.c: matroska muxer
  *****************************************************************************
- * Copyright (C) 2005-2013 x264 project
+ * Copyright (C) 2005-2014 x264 project
  *
  * Authors: Mike Matsnev <mike@haali.su>
  *
index 943c65ee6dcc22b109e635e435246256678c10b7..55c1cc376741299f4bee0d7efb855f06c8acd621 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * matroska_ebml.c: matroska muxer utilities
  *****************************************************************************
- * Copyright (C) 2005-2013 x264 project
+ * Copyright (C) 2005-2014 x264 project
  *
  * Authors: Mike Matsnev <mike@haali.su>
  *
index fa61eded5ce65f7de07be9f2fc0e69dff2dc2da0..1c6cad7ac34a1505b6625d30410371f534393be8 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * matroska_ebml.h: matroska muxer utilities
  *****************************************************************************
- * Copyright (C) 2005-2013 x264 project
+ * Copyright (C) 2005-2014 x264 project
  *
  * Authors: Mike Matsnev <mike@haali.su>
  *
index 8093b2b7c43eff8d7ae24cf74bbb9390230d37b3..6d353def1934ebcbd39aec7a481d4c774dfd6fac 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * mp4.c: mp4 muxer
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *          Loren Merritt <lorenm@u.washington.edu>
index 9513506d4dcd5889d4e6acea0932a8fc6bb76d5b..b4ed31c28222c9f6d4b9324c86469afe2a4fd4c9 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * mp4_lsmash.c: mp4 muxer using L-SMASH
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *          Loren Merritt <lorenm@u.washington.edu>
index e32dbbead416e65ede2455554db81aebf066cc2f..26ec7059033418ea8680bb8e840fd63a5b2682a6 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * output.h: x264 file output modules
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *          Loren Merritt <lorenm@u.washington.edu>
index 4bfb7895919a5bc3953c3ba93170fe82e5b43546..2876e26a5e1ab3fd5b2b2ef93dc42e94f3e28e30 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * raw.c: raw muxer
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *          Loren Merritt <lorenm@u.washington.edu>
index 722d746b8814517497c041fec3e1991e312ce260..c27c723167a41f6ab15e0258591c13405e464ffd 100644 (file)
@@ -1,7 +1,7 @@
 ;*****************************************************************************
 ;* checkasm-a.asm: assembly check tool
 ;*****************************************************************************
-;* Copyright (C) 2008-2013 x264 project
+;* Copyright (C) 2008-2014 x264 project
 ;*
 ;* Authors: Loren Merritt <lorenm@u.washington.edu>
 ;*          Henrik Gramner <henrik@gramner.com>
index 8cfebeb99cbd08cbe72edab9934ac375c4b55ab6..4239605cadac19d97e28fbf8a192ba38eb7e623a 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * checkasm.c: assembly check tool
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Loren Merritt <lorenm@u.washington.edu>
  *          Laurent Aimar <fenrir@via.ecp.fr>
index 371a1bd608615aa282acf3531a91bc186a68f04f..a90e6a94dfc38cd15f404d470f0564c807b5cbf3 100644 (file)
@@ -1,6 +1,6 @@
 # Perl script used for compiling OpenCL src into x264 binary
 #
-# Copyright (C) 2013 x264 project
+# Copyright (C) 2013-2014 x264 project
 # Authors: Steve Borho <sborho@multicorewareinc.com>
 
 use Digest::MD5 qw(md5_hex);
diff --git a/x264.c b/x264.c
index d782ae05dd9805c7c3dba39434aec21e1b8c1496..a32e43d94aba4d00263117a46e709211296e5b9c 100644 (file)
--- a/x264.c
+++ b/x264.c
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * x264: top-level x264cli functions
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Loren Merritt <lorenm@u.washington.edu>
  *          Laurent Aimar <fenrir@via.ecp.fr>
diff --git a/x264.h b/x264.h
index 8175c35d82bd18f292dfb162eccd9637183b14b4..796fb530c045fdb3fc7bee6fa80a5add1a4d098c 100644 (file)
--- a/x264.h
+++ b/x264.h
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * x264.h: x264 public header
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *          Loren Merritt <lorenm@u.washington.edu>
index 1794992a7271e4bfcaa430638ea6d5cf409e4187..d92d4969b563209bc7ff999079119804e156d959 100644 (file)
--- a/x264cli.h
+++ b/x264cli.h
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * x264cli.h: x264cli common
  *****************************************************************************
- * Copyright (C) 2003-2013 x264 project
+ * Copyright (C) 2003-2014 x264 project
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *          Loren Merritt <lorenm@u.washington.edu>
index ae4a81ac418c9f9f9f065b3a17b445364de353cc..e1ca13cf2f7a4c1765b8198e53d53c3c635602ca 100644 (file)
--- a/x264dll.c
+++ b/x264dll.c
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * x264dll: x264 DLLMain for win32
  *****************************************************************************
- * Copyright (C) 2009-2013 x264 project
+ * Copyright (C) 2009-2014 x264 project
  *
  * Authors: Anton Mitrofanov <BugMaster@narod.ru>
  *
index d25c810897caa8ec3d5e650719b2c6b0a7367b40..33b59f7844e7c7cd188d3dea99ce11ca426f8c96 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * x264res.rc: windows resource file
  *****************************************************************************
- * Copyright (C) 2012-2013 x264 project
+ * Copyright (C) 2012-2014 x264 project
  *
  * Authors: Henrik Gramner <henrik@gramner.com>
  *
@@ -60,7 +60,7 @@ BEGIN
 #endif
             VALUE "FileVersion",      X264_POINTVER
             VALUE "InternalName",     "x264"
-            VALUE "LegalCopyright",   "Copyright (C) 2003-2013 x264 project"
+            VALUE "LegalCopyright",   "Copyright (C) 2003-2014 x264 project"
 #ifdef DLL
             VALUE "OriginalFilename", "libx264-" xstr(X264_BUILD) ".dll"
 #else