]> git.sesse.net Git - x264/commitdiff
Update file headers throughout x264
authorFiona Glaser <fiona@x264.com>
Fri, 4 Jul 2008 02:05:00 +0000 (20:05 -0600)
committerFiona Glaser <fiona@x264.com>
Fri, 4 Jul 2008 02:07:00 +0000 (20:07 -0600)
Update "Authors" lists based on actual authorship; highest is most important
Update copyright notices and remove old CVS tags from file headers
Add file headers to GTK and other sections missing them
Update FSF address
Other header-related cosmetics

122 files changed:
common/bs.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/display-x11.c
common/display.h
common/frame.c
common/frame.h
common/macroblock.c
common/macroblock.h
common/mc.c
common/mc.h
common/mdate.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/set.c
common/set.h
common/sparc/pixel.asm
common/sparc/pixel.h
common/visualize.c
common/visualize.h
common/vlc.h
common/x86/cabac-a.asm
common/x86/cpu-32.asm
common/x86/cpu-64.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/util.h
common/x86/x86inc-32.asm
common/x86/x86inc-64.asm
common/x86/x86inc.asm
encoder/analyse.c
encoder/analyse.h
encoder/cabac.c
encoder/cavlc.c
encoder/encoder.c
encoder/eval.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.c
extras/getopt.c
extras/getopt.h
gtk/test.c
gtk/x264_gtk.c
gtk/x264_gtk.h
gtk/x264_gtk_bitrate.c
gtk/x264_gtk_bitrate.h
gtk/x264_gtk_cqm.c
gtk/x264_gtk_cqm.h
gtk/x264_gtk_demuxers.h
gtk/x264_gtk_encode.c
gtk/x264_gtk_encode_encode.c
gtk/x264_gtk_encode_encode.h
gtk/x264_gtk_encode_main_window.c
gtk/x264_gtk_encode_main_window.h
gtk/x264_gtk_encode_private.h
gtk/x264_gtk_encode_status_window.c
gtk/x264_gtk_encode_status_window.h
gtk/x264_gtk_enum.h
gtk/x264_gtk_i18n.h
gtk/x264_gtk_mb.c
gtk/x264_gtk_mb.h
gtk/x264_gtk_more.c
gtk/x264_gtk_more.h
gtk/x264_gtk_private.h
gtk/x264_gtk_rc.c
gtk/x264_gtk_rc.h
matroska.c
matroska.h
muxers.c
muxers.h
tools/avc2avi.c
tools/checkasm-a.asm
tools/checkasm.c
tools/xyuv.c
x264.c
x264.h

index a06b822ab78957605b19d1094e5c7fff1c255d34..88d41f03ba7ab2eb66ac9e4e6fc1a5285fa9ba7c 100644 (file)
@@ -1,10 +1,7 @@
 /*****************************************************************************
  * bs.h :
  *****************************************************************************
- * Copyright (C) 2003 Laurent Aimar
- * $Id: bs.h,v 1.1 2004/06/03 19:27:06 fenrir Exp $
- *
- * Authors: Laurent Aimar <fenrir@via.ecp.fr>
+ * Copyright (C) 2003 Laurent Aimar <fenrir@via.ecp.fr>
  *
  * 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
@@ -18,7 +15,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #ifndef X264_BS_H
index c6c2bd3883d92564944d0be26693c24f76d9b0b3..722451bd42bb88b75854cf1e04ed85b7f71bf402 100644 (file)
@@ -1,10 +1,10 @@
 /*****************************************************************************
  * cabac.c: h264 encoder library
  *****************************************************************************
- * Copyright (C) 2003 Laurent Aimar
- * $Id: cabac.c,v 1.1 2004/06/03 19:27:06 fenrir Exp $
+ * Copyright (C) 2003-2008 x264 project
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
+ *          Loren Merritt <lorenm@u.washington.edu>
  *
  * 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
@@ -18,7 +18,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #include "common.h"
index 8289d2b09fd827371bf7bb42dea10e07a926b702..f5efa248aa46f0c2117501e659cea5146732bef8 100644 (file)
@@ -1,10 +1,10 @@
 /*****************************************************************************
  * cabac.h: h264 encoder library
  *****************************************************************************
- * Copyright (C) 2003 Laurent Aimar
- * $Id: cabac.h,v 1.1 2004/06/03 19:27:06 fenrir Exp $
+ * Copyright (C) 2003-2008 x264 project
  *
- * Authors: Laurent Aimar <fenrir@via.ecp.fr>
+ * Authors: Loren Merritt <lorenm@u.washington.edu>
+ *          Laurent Aimar <fenrir@via.ecp.fr>
  *
  * 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
@@ -18,7 +18,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #ifndef X264_CABAC_H
index 8a8f66008f00a1bc86557198256776a4a31def35..71a29b1aa04912e869ff1ed465b443a27d9b32a0 100644 (file)
@@ -1,10 +1,10 @@
 /*****************************************************************************
  * common.c: h264 library
  *****************************************************************************
- * Copyright (C) 2003 Laurent Aimar
- * $Id: common.c,v 1.1 2004/06/03 19:27:06 fenrir Exp $
+ * Copyright (C) 2003-2008 x264 project
  *
- * Authors: Laurent Aimar <fenrir@via.ecp.fr>
+ * Authors: Loren Merritt <lorenm@u.washington.edu>
+ *          Laurent Aimar <fenrir@via.ecp.fr>
  *
  * 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
@@ -18,7 +18,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #include <stdarg.h>
index f46aee522253887d479cd53d3281c83442bfbd3d..376ec1e9416aa853254c074cc0d8049a4aa50e5f 100644 (file)
@@ -1,10 +1,10 @@
 /*****************************************************************************
  * common.h: h264 encoder
  *****************************************************************************
- * Copyright (C) 2003 Laurent Aimar
- * $Id: common.h,v 1.1 2004/06/03 19:27:06 fenrir Exp $
+ * Copyright (C) 2003-2008 x264 project
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
+ *          Loren Merritt <lorenm@u.washington.edu>
  *
  * 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
@@ -18,7 +18,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #ifndef X264_COMMON_H
index f2b5f037d451eb7a3712a89c749f87a8dabed817..307a0ee178b5740a11f20d3f02a98ee64a9265ef 100644 (file)
@@ -1,10 +1,10 @@
 /*****************************************************************************
  * cpu.c: h264 encoder library
  *****************************************************************************
- * Copyright (C) 2003 Laurent Aimar
- * $Id: cpu.c,v 1.1 2004/06/03 19:27:06 fenrir Exp $
+ * Copyright (C) 2003-2008 x264 project
  *
- * Authors: Laurent Aimar <fenrir@via.ecp.fr>
+ * Authors: Loren Merritt <lorenm@u.washington.edu>
+ *          Laurent Aimar <fenrir@via.ecp.fr>
  *
  * 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
@@ -18,7 +18,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #if defined(HAVE_PTHREAD) && defined(SYS_LINUX)
index 30e966ab29c1b1a19fdb14d292438100600ceffb..91b43f936e7cffc3daecf8f911b306a20a6f95da 100644 (file)
@@ -1,10 +1,7 @@
 /*****************************************************************************
  * cpu.h: h264 encoder library
  *****************************************************************************
- * Copyright (C) 2003 Laurent Aimar
- * $Id: cpu.h,v 1.1 2004/06/03 19:27:06 fenrir Exp $
- *
- * Authors: Laurent Aimar <fenrir@via.ecp.fr>
+ * Copyright (C) 2004-2008 Loren Merritt <lorenm@u.washington.edu>
  *
  * 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
@@ -18,7 +15,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #ifndef X264_CPU_H
index 1815fc3db281b13c6b0e708b6fda3ce6b9c2a4eb..5e6f798ca65b11e9f775088020bbd96a5a479eac 100644 (file)
@@ -1,10 +1,10 @@
 /*****************************************************************************
  * dct.c: h264 encoder library
  *****************************************************************************
- * Copyright (C) 2003 Laurent Aimar
- * $Id: dct.c,v 1.1 2004/06/03 19:27:06 fenrir Exp $
+ * Copyright (C) 2003-2008 x264 project
  *
- * Authors: Laurent Aimar <fenrir@via.ecp.fr>
+ * Authors: Loren Merritt <lorenm@u.washington.edu>
+ *          Laurent Aimar <fenrir@via.ecp.fr>
  *
  * 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
@@ -18,7 +18,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #include "common.h"
index ee9d7d1ec38189b60ea11bd2e6e29b1fcc8ae207..1078023d0e2ec0cb704c1d6f85f7f611731d7d83 100644 (file)
@@ -1,10 +1,7 @@
 /*****************************************************************************
  * dct.h: h264 encoder library
  *****************************************************************************
- * Copyright (C) 2003 Laurent Aimar
- * $Id: dct.h,v 1.1 2004/06/03 19:27:06 fenrir Exp $
- *
- * Authors: Laurent Aimar <fenrir@via.ecp.fr>
+ * Copyright (C) 2004-2008 Loren Merritt <lorenm@u.washington.edu>
  *
  * 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
@@ -18,7 +15,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #ifndef X264_DCT_H
index f16db8b749da7f0b1daecc18a067e6928de622a3..d659426583429f3dce6f92d2f5a116e6ddf60698 100644 (file)
@@ -1,9 +1,7 @@
 /*****************************************************************************
  * x264: h264 encoder
  *****************************************************************************
- * Copyright (C) 2005 x264 project
- *
- * Author: Tuukka Toivonen <tuukkat@ee.oulu.fi>
+ * Copyright (C) 2005 Tuukka Toivonen <tuukkat@ee.oulu.fi>
  *
  * 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
@@ -17,7 +15,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #include <X11/Xlib.h>
index 31dcc28987406d30c48db91da9ad4c36b4c0c359..544d5576327adf34f4fcd72b03dbf355eabab2ab 100644 (file)
@@ -1,9 +1,7 @@
 /*****************************************************************************
  * x264: h264 encoder
  *****************************************************************************
- * Copyright (C) 2005 x264 project
- *
- * Author: Tuukka Toivonen <tuukkat@ee.oulu.fi>
+ * Copyright (C) 2005 Tuukka Toivonen <tuukkat@ee.oulu.fi>
  *
  * 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
@@ -17,7 +15,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #ifndef X264_DISPLAY_H
index 5d6de2393a49eaad1d8db53b0a933aa77ca36b82..dd77c8973d11c92e23fd87d0ff1b9451691ace18 100644 (file)
@@ -1,10 +1,10 @@
 /*****************************************************************************
  * frame.c: h264 encoder library
  *****************************************************************************
- * Copyright (C) 2003 Laurent Aimar
- * $Id: frame.c,v 1.1 2004/06/03 19:27:06 fenrir Exp $
+ * Copyright (C) 2003-2008 x264 project
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
+ *          Loren Merritt <lorenm@u.washington.edu>
  *
  * 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
@@ -18,7 +18,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #include "common.h"
index 1cd7b645a0c0941d9c964ab429bc44e53e6bdee9..6da740ab264995048f2e8400a9d35f2c346d1c7f 100644 (file)
@@ -1,10 +1,10 @@
 /*****************************************************************************
  * frame.h: h264 encoder library
  *****************************************************************************
- * Copyright (C) 2003 Laurent Aimar
- * $Id: frame.h,v 1.1 2004/06/03 19:27:06 fenrir Exp $
+ * Copyright (C) 2003-2008 x264 project
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
+ *          Loren Merritt <lorenm@u.washington.edu>
  *
  * 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
@@ -18,7 +18,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #ifndef X264_FRAME_H
index b08d4303bb6bd2d4ec9c5b8032fd57e29a4a160e..88a7f454d1c84d51a522e592451b1950d85a35e3 100644 (file)
@@ -1,10 +1,11 @@
 /*****************************************************************************
  * macroblock.c: h264 encoder library
  *****************************************************************************
- * Copyright (C) 2003 Laurent Aimar
- * $Id: macroblock.c,v 1.1 2004/06/03 19:27:06 fenrir Exp $
+ * Copyright (C) 2003-2008 x264 project
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
+ *          Loren Merritt <lorenm@u.washington.edu>
+ *          Fiona Glaser <fiona@x264.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
@@ -18,7 +19,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #include "common.h"
index a59b4f76ce58c1180e237bfc9dae3ff528e09484..14741fc2f5bbabe1185d3a1c505e427cef213b39 100644 (file)
@@ -1,10 +1,11 @@
 /*****************************************************************************
  * macroblock.h: h264 encoder library
  *****************************************************************************
- * Copyright (C) 2003 Laurent Aimar
- * $Id: macroblock.h,v 1.1 2004/06/03 19:27:07 fenrir Exp $
+ * Copyright (C) 2005-2008 x264 project
  *
- * Authors: Laurent Aimar <fenrir@via.ecp.fr>
+ * Authors: Loren Merritt <lorenm@u.washington.edu>
+ *          Laurent Aimar <fenrir@via.ecp.fr>
+ *          Fiona Glaser <fiona@x264.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
@@ -18,7 +19,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #ifndef X264_MACROBLOCK_H
index 2178f08e1a4b42c5f6c5f88ffa4c0b0cde40b41e..671f3968f99cccfb86a354a42c8573287bb32311 100644 (file)
@@ -1,10 +1,10 @@
 /*****************************************************************************
  * mc.c: h264 encoder library (Motion Compensation)
  *****************************************************************************
- * Copyright (C) 2003 Laurent Aimar
- * $Id: mc.c,v 1.1 2004/06/03 19:27:07 fenrir Exp $
+ * Copyright (C) 2003-2008 x264 project
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
+ *          Loren Merritt <lorenm@u.washington.edu>
  *
  * 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
@@ -18,7 +18,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #include "common.h"
index 08331b81eac11965d127120d6b56f3e9357e0fde..f682b85507bdc9c8445c683b6a9e38cfa8b5f982 100644 (file)
@@ -1,10 +1,7 @@
 /*****************************************************************************
  * mc.h: h264 encoder library (Motion Compensation)
  *****************************************************************************
- * Copyright (C) 2003 Laurent Aimar
- * $Id: mc.h,v 1.1 2004/06/03 19:27:07 fenrir Exp $
- *
- * Authors: Laurent Aimar <fenrir@via.ecp.fr>
+ * Copyright (C) 2004-2008 Loren Merritt <lorenm@u.washington.edu>
  *
  * 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
@@ -18,7 +15,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #ifndef X264_MC_H
index a856ac1028e5f02e151a5a8948161e308508559d..cd962edc5687b77c884ea20406434152adb10123 100644 (file)
@@ -1,10 +1,7 @@
 /*****************************************************************************
  * mdate.c: h264 encoder
  *****************************************************************************
- * Copyright (C) 2003 Laurent Aimar
- * $Id: mdate.c,v 1.1 2004/06/03 19:27:07 fenrir Exp $
- *
- * Authors: Laurent Aimar <fenrir@via.ecp.fr>
+ * Copyright (C) 2003 Laurent Aimar <fenrir@via.ecp.fr>
  *
  * 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
@@ -18,7 +15,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #if !(defined(_MSC_VER) || defined(__MINGW32__))
index 36685bec5e2f28ee106cb0fdc042562e10be5568..7b8dacb211a896cceafbc4ba0a147b76a363a25b 100644 (file)
@@ -1,7 +1,10 @@
 /*****************************************************************************
  * osdep.h: h264 encoder
  *****************************************************************************
- * Copyright (C) 2007 x264 project
+ * Copyright (C) 2007-2008 x264 project
+ *
+ * Authors: Loren Merritt <lorenm@u.washington.edu>
+ *          Laurent Aimar <fenrir@via.ecp.fr>
  *
  * 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
@@ -15,7 +18,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #ifndef X264_OSDEP_H
index 64a410eb7d8a096a4eac9ddc8779ae11d005bee7..afbf309eb81881957e7b6757bd8e36be9cd78521 100644 (file)
@@ -1,10 +1,10 @@
 /*****************************************************************************
  * pixel.c: h264 encoder
  *****************************************************************************
- * Copyright (C) 2003 Laurent Aimar
- * $Id: pixel.c,v 1.1 2004/06/03 19:27:07 fenrir Exp $
+ * Copyright (C) 2003-2008 x264 project
  *
- * Authors: Laurent Aimar <fenrir@via.ecp.fr>
+ * Authors: Loren Merritt <lorenm@u.washington.edu>
+ *          Laurent Aimar <fenrir@via.ecp.fr>
  *
  * 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
@@ -18,7 +18,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #include "common.h"
index c95a304660d690a761076675c9c034256b6eb821..3d94bf00c8fbaa57118b93bfd54408a990411e7e 100644 (file)
@@ -1,10 +1,7 @@
 /*****************************************************************************
  * pixel.h: h264 encoder library
  *****************************************************************************
- * Copyright (C) 2003 Laurent Aimar
- * $Id: pixel.h,v 1.1 2004/06/03 19:27:07 fenrir Exp $
- *
- * Authors: Laurent Aimar <fenrir@via.ecp.fr>
+ * Copyright (C) 2004-2008 Loren Merritt <lorenm@u.washington.edu>
  *
  * 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
@@ -18,7 +15,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #ifndef X264_PIXEL_H
index 5ba2264a858058b0031448ba3a172a9c853c68e4..8861214307f389d2d9955fe6483439b60cba3ae5 100644 (file)
@@ -1,11 +1,10 @@
 /*****************************************************************************
  * dct.c: h264 encoder library
  *****************************************************************************
- * Copyright (C) 2003 Laurent Aimar
- * $Id$
+ * Copyright (C) 2003-2008 x264 project
  *
- * Authors: Eric Petit <titer@m0k.org>
- *          Guillaume Poirier <gpoirier@mplayerhq.hu>
+ * Authors: Guillaume Poirier <gpoirier@mplayerhq.hu>
+ *          Eric Petit <titer@m0k.org>
  *
  * 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
@@ -19,7 +18,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #ifdef SYS_LINUX
index 859e4ea808a10f0f1e0cdf614b621c46e2ea7521..ddb459aaa53aaa2958a8eb54573c858be3d53193 100644 (file)
@@ -1,8 +1,7 @@
 /*****************************************************************************
  * dct.h: h264 encoder library
  *****************************************************************************
- * Copyright (C) 2003 Laurent Aimar
- * $Id$
+ * Copyright (C) 2003-2008 x264 project
  *
  * Authors: Eric Petit <titer@m0k.org>
  *          Guillaume Poirier <gpoirier@mplayerhq.hu>
@@ -19,7 +18,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #ifndef X264_PPC_DCT_H
index 33b653c05fee1784c8898ddad1f808f4e20e83b8..f127cec886c65fc4345241290c163d7efc2c4b0b 100644 (file)
@@ -1,10 +1,7 @@
 /*****************************************************************************
 * deblock.c: Altivec-accelerated deblocking for h264 encoder
 *****************************************************************************
-* Copyright (C) 2007 x264 project
-*
-* Authors: Guillaume Poirier <gpoirier CHEZ mplayerhq POINT hu>
-*          (based on code written by Graham Booker for FFmpeg)
+* Copyright (C) 2007-2008 Guillaume Poirier <gpoirier@mplayerhq.hu>
 *
 * 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
@@ -18,7 +15,7 @@
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
-* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
 *****************************************************************************/
 
 #if defined SYS_LINUX
index c99cd31e610fecd0b66bbe7dc5187ef068a4df9a..b1ae2c6a258e60dfc8de3cfd20fab6fc82fbfb90 100644 (file)
@@ -1,10 +1,10 @@
 /*****************************************************************************
  * mc.c: h264 encoder library (Motion Compensation)
  *****************************************************************************
- * Copyright (C) 2003 Laurent Aimar
- * $Id: mc.c,v 1.1 2004/06/03 19:27:07 fenrir Exp $
+ * Copyright (C) 2003-2008 x264 project
  *
  * Authors: Eric Petit <titer@m0k.org>
+ *          Guillaume Poirier <gpoirier@mplayerhq.hu>
  *
  * 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
@@ -18,7 +18,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #include <stdlib.h>
index a15e614ddbebd463b16198724b0f8f384e5aca0a..1626cadd5c70ff3b2c799a5d84e51067476ee269 100644 (file)
@@ -1,10 +1,7 @@
 /*****************************************************************************
  * mc.h: h264 encoder library
  *****************************************************************************
- * Copyright (C) 2003 Laurent Aimar
- * $Id: mc.h,v 1.1 2004/06/03 19:27:07 fenrir Exp $
- *
- * Authors: Eric Petit <titer@m0k.org>
+ * Copyright (C) 2003-2008 Eric Petit <titer@m0k.org>
  *
  * 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
@@ -18,7 +15,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #ifndef X264_PPC_MC_H
index e964cbe073b9921bc779ac1ddda99e521e2182d6..1dae5ef136a6425ce7138b579f47764bd9dda2b0 100644 (file)
@@ -1,8 +1,7 @@
 /*****************************************************************************
  * pixel.c: h264 encoder
  *****************************************************************************
- * Copyright (C) 2003 Laurent Aimar
- * $Id: pixel.c,v 1.1 2004/06/03 19:27:07 fenrir Exp $
+ * Copyright (C) 2003-2008 x264 project
  *
  * Authors: Eric Petit <titer@m0k.org>
  *          Guillaume Poirier <gpoirier@mplayerhq.hu>
@@ -19,7 +18,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #ifdef SYS_LINUX
index e1925b3b09581d561ca139841ba8b42f723dbfa6..9eaef1c0e670354fed7e3ded46548081e961caa9 100644 (file)
@@ -1,10 +1,7 @@
 /*****************************************************************************
  * pixel.h: h264 encoder library
  *****************************************************************************
- * Copyright (C) 2003 Laurent Aimar
- * $Id: pixel.h,v 1.1 2004/06/03 19:27:07 fenrir Exp $
- *
- * Authors: Eric Petit <titer@m0k.org>
+ * Copyright (C) 2003-2004 Eric Petit <titer@m0k.org>
  *
  * 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
@@ -18,7 +15,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #ifndef X264_PPC_PIXEL_H
index d3c691b90b5e87f423e9095c591eb8109cb39fa2..72e8a308c98592f85c159e1098836e8d85f7ec1e 100644 (file)
@@ -1,10 +1,7 @@
 /*****************************************************************************
  * ppccommon.h: h264 encoder
  *****************************************************************************
- * Copyright (C) 2003 Laurent Aimar
- * $Id: ppccommon.h,v 1.1 2004/06/03 19:27:07 fenrir Exp $
- *
- * Authors: Eric Petit <titer@m0k.org>
+ * Copyright (C) 2003 Eric Petit <titer@m0k.org>
  *
  * 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
@@ -18,7 +15,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 /***********************************************************************
index 61912205ab0e15bda916dbd572926b426aaddb48..a85683fd86dabb46fea3d10586cf5efc058b1e3e 100644 (file)
@@ -1,9 +1,7 @@
 /*****************************************************************************
  * predict.c: h264 encoder
  *****************************************************************************
- * Copyright (C) 2007 Guillaume POIRIER
- *
- * Authors: Guillaume POIRIER <gpoirier CHEZ mplayerhq POIS hu>
+ * Copyright (C) 2007-2008 Guillaume Poirier <gpoirier@mplayerhq.hu>
  *
  * 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
@@ -17,7 +15,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #ifdef SYS_LINUX
index 2855a71fc514f5526c1d65be7d3f2574212b2f2a..90863b81d39da34e09801e41d8eb47c54d5abc9f 100644 (file)
@@ -1,9 +1,7 @@
 /*****************************************************************************
  * predict.h: h264 encoder library
  *****************************************************************************
- * Copyright (C) 2007 Guillaume POIRIER
- *
- * Authors: Guillaume POIRIER <gpoirier CHEZ mplayerhq POIS hu>
+ * Copyright (C) 2007 Guillaume Poirier <gpoirier@mplayerhq.hu>
  *
  * 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
@@ -17,7 +15,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #ifndef X264_PPC_PREDICT_H
index 72608afdfa683b3165205d4fee6192487d86f411..cc8da64ccbcc7db3177a6d14264729d413eff84b 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
 * quant.c: h264 encoder
 *****************************************************************************
-* Authors: Guillaume Poirier <poirierg@gmail.com>
+* Copyright (C) 2007 Guillaume Poirier <gpoirier@mplayerhq.hu>
 *
 * 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
@@ -15,7 +15,7 @@
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
-* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
 *****************************************************************************/
 
 #if defined SYS_LINUX
index 1ec534c770d2e4731f957f208539ee20b1d85521..0504900384561fdd70a5881450f2222ba6b89d2d 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
 * quant.h: h264 encoder library
 *****************************************************************************
-* Authors: Guillaume Poirier <poirierg@gmail.com>
+* Copyright (C) 2007 Guillaume Poirier <gpoirier@mplayerhq.hu>
 *
 * 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
@@ -15,7 +15,7 @@
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
-* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
 *****************************************************************************/
 
 #ifndef X264_PPC_QUANT_H
index 7f7a5f6830bfcea68174af1469b2fa479ee4950e..2c4e83b5cc2002d42c76e3bdc23c0f8f9e9d23c5 100644 (file)
@@ -1,11 +1,11 @@
 /*****************************************************************************
  * predict.c: h264 encoder
  *****************************************************************************
- * Copyright (C) 2003 Laurent Aimar
- * $Id: predict.c,v 1.1 2004/06/03 19:27:07 fenrir Exp $
+ * Copyright (C) 2003-2008 x264 project
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *          Loren Merritt <lorenm@u.washington.edu>
+ *          Fiona Glaser <fiona@x264.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
@@ -19,7 +19,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 /* predict4x4 are inspired from ffmpeg h264 decoder */
index b9221680fc107d05aa701c07e654a0869bb83b1c..65912190b4178402476dd23770430a3155e64739 100644 (file)
@@ -1,10 +1,10 @@
 /*****************************************************************************
  * predict.h: h264 encoder library
  *****************************************************************************
- * Copyright (C) 2003 Laurent Aimar
- * $Id: predict.h,v 1.1 2004/06/03 19:27:07 fenrir Exp $
+ * Copyright (C) 2003-2008 x264 project
  *
- * Authors: Laurent Aimar <fenrir@via.ecp.fr>
+ * Authors: Loren Merritt <lorenm@u.washington.edu>
+ *          Laurent Aimar <fenrir@via.ecp.fr>
  *
  * 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
@@ -18,7 +18,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #ifndef X264_PREDICT_H
index 80ae71124a4990413f7cb342083b055c50e80a04..deeaf6c4f7897a28face72871ad720c3d74059d9 100644 (file)
@@ -1,9 +1,10 @@
 /*****************************************************************************
  * quant.c: h264 encoder library
  *****************************************************************************
- * Copyright (C) 2005 x264 project
+ * Copyright (C) 2005-2008 x264 project
  *
- * Authors: Christian Heine <sennindemokrit@gmx.net>
+ * Authors: Loren Merritt <lorenm@u.washington.edu>
+ *          Christian Heine <sennindemokrit@gmx.net>
  *
  * 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
@@ -17,7 +18,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #include "common.h"
index 58518f79257e65c847ee6d7eefba2282d7bd5bff..0d41927b20290945ecb995e681afe517e8056dcd 100644 (file)
@@ -1,9 +1,9 @@
 /*****************************************************************************
  * quant.h: h264 encoder library
  *****************************************************************************
- * Copyright (C) 2005 x264 project
+ * Copyright (C) 2005-2008 x264 project
  *
- * Authors: Christian Heine <sennindemokrit@gmx.net>
+ * Authors: Loren Merritt <lorenm@u.washington.edu>
  *
  * 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
@@ -17,7 +17,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #ifndef X264_QUANT_H
index c08bceee007234fc2d9e971d7a4b23cd76657aec..df1c2de964e83fb6dd1c3afd7dbeaaf2fafe4ac4 100644 (file)
@@ -1,9 +1,7 @@
 /*****************************************************************************
  * set.c: h264 encoder library
  *****************************************************************************
- * Copyright (C) 2005 x264 project
- *
- * Authors: Loren Merritt <lorenm@u.washington.edu>
+ * Copyright (C) 2005-2008 Loren Merritt <lorenm@u.washington.edu>
  *
  * 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
@@ -17,7 +15,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #include "common.h"
index e6173b0bd9969da3e4a90b44035421031f2fe401..2d535119fb694b27bcbd1d592010f901be804d34 100644 (file)
@@ -1,10 +1,10 @@
 /*****************************************************************************
  * set.h: h264 encoder
  *****************************************************************************
- * Copyright (C) 2003 Laurent Aimar
- * $Id: set.h,v 1.1 2004/06/03 19:27:07 fenrir Exp $
+ * Copyright (C) 2003-2008 x264 project
  *
- * Authors: Laurent Aimar <fenrir@via.ecp.fr>
+ * Authors: Loren Merritt <lorenm@u.washington.edu>
+ *          Laurent Aimar <fenrir@via.ecp.fr>
  *
  * 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
@@ -18,7 +18,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #ifndef X264_SET_H
index 4bd9aa5505cbca509d06b2b8a5717932b7ac07a6..6eb52c73e13dfba2edd7f6b5efa1fadec9ddc087 100644 (file)
@@ -1,10 +1,7 @@
 /*****************************************************************************
  * pixel.asm: h264 encoder library
  *****************************************************************************
- * Copyright (C) 2005 x264 project
- * $Id: $
- *
- * Authors: Phil Jensen <philj@csufresno.edu>
+ * Copyright (C) 2005 Phil Jensen <philj@csufresno.edu>
  *
  * 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
@@ -18,7 +15,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 ! VIS optimized SAD for UltraSPARC
index 07af6843c69ef21acd19c8cedb6eca78823969c7..e38503f03dd7d774be507522953cc31bfb8838bd 100644 (file)
@@ -1,10 +1,7 @@
 /*****************************************************************************
  * pixel.h: h264 encoder library
  *****************************************************************************
- * Copyright (C) 2005 x264 project
- * $Id: pixel.h,v 1.1 2004/06/03 19:27:07 fenrir Exp $
- *
- * Authors: Phil Jensen <philj@csufresno.edu>
+ * Copyright (C) 2005 Phil Jensen <philj@csufresno.edu>
  *
  * 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
@@ -18,7 +15,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #ifndef X264_SPARC_PIXEL_H
index a5f90290ef78db064d82699989f19d20b9abcb04..f7100f00b67c016733f5f98e82359c23a40e6c20 100644 (file)
@@ -1,9 +1,7 @@
 /*****************************************************************************
  * x264: h264 encoder
  *****************************************************************************
- * Copyright (C) 2005 x264 project
- *
- * Author: Tuukka Toivonen <tuukkat@ee.oulu.fi>
+ * Copyright (C) 2005 Tuukka Toivonen <tuukkat@ee.oulu.fi>
  *
  * 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
@@ -17,7 +15,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 /*
index 34adccac6e6b8305de995eed6d19863d2034f49d..b611f6cb70ebe629e1ee44b6530e23381edd182b 100644 (file)
@@ -1,9 +1,7 @@
 /*****************************************************************************
  * x264: h264 encoder
  *****************************************************************************
- * Copyright (C) 2005 x264 project
- *
- * Author: Tuukka Toivonen <tuukkat@ee.oulu.fi>
+ * Copyright (C) 2005 Tuukka Toivonen <tuukkat@ee.oulu.fi>
  *
  * 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
@@ -17,7 +15,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #ifndef X264_VISUALIZE_H
index 18a83704075d0e3439cdc3f8d078ad00ea771540..7d0b8e064be8f3bbbb6ae7dc87c5be870f20cdce 100644 (file)
@@ -1,10 +1,7 @@
 /*****************************************************************************
  * vlc.h : vlc table
  *****************************************************************************
- * Copyright (C) 2003 Laurent Aimar
- * $Id: vlc.h,v 1.1 2004/06/03 19:27:07 fenrir Exp $
- *
- * Authors: Laurent Aimar <fenrir@via.ecp.fr>
+ * Copyright (C) 2003 Laurent Aimar <fenrir@via.ecp.fr>
  *
  * 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
@@ -18,7 +15,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 typedef struct
index 183164f0b9af01caa60c95554eeb990e60b95820..4c884a6cd2854df5c2c611e7f93ec99d668f1fbb 100644 (file)
@@ -4,6 +4,7 @@
 ;* Copyright (C) 2008 x264 project
 ;*
 ;* Author: Loren Merritt <lorenm@u.washington.edu>
+;*         Fiona Glaser <fiona@x264.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
@@ -17,7 +18,7 @@
 ;*
 ;* You should have received a copy of the GNU General Public License
 ;* along with this program; if not, write to the Free Software
-;* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
 ;*****************************************************************************
 
 %include "x86inc.asm"
index 9c5f7c8c38babebde458adecbd0cb524e7c79b19..090b9483aadeb351467f0b74b54851824fed3554 100644 (file)
@@ -4,6 +4,7 @@
 ;* Copyright (C) 2003-2008 x264 project
 ;*
 ;* Authors: Laurent Aimar <fenrir@via.ecp.fr>
+;*          Loren Merritt <lorenm@u.washington.edu>
 ;*
 ;* 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
@@ -17,7 +18,7 @@
 ;*
 ;* You should have received a copy of the GNU General Public License
 ;* along with this program; if not, write to the Free Software
-;* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
 ;*****************************************************************************
 
 %include "x86inc.asm"
index 99007a5f3402e32ef7333bf3e84e0abdf831928c..8f8a838384c1045fb5373a591faa12169dc9babe 100644 (file)
@@ -4,6 +4,7 @@
 ;* Copyright (C) 2003-2008 x264 project
 ;*
 ;* Authors: Laurent Aimar <fenrir@via.ecp.fr>
+;*          Loren Merritt <lorenm@u.washington.edu>
 ;*
 ;* 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
@@ -17,7 +18,7 @@
 ;*
 ;* You should have received a copy of the GNU General Public License
 ;* along with this program; if not, write to the Free Software
-;* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
 ;*****************************************************************************
 
 %include "x86inc.asm"
index 5e45afb6048e32ddc7c44c300ed0818ad42e2c51..3c6df968121f46b4f49657261aebf5037a5fac6e 100644 (file)
@@ -4,9 +4,9 @@
 ;* Copyright (C) 2003-2008 x264 project
 ;*
 ;* Authors: Laurent Aimar <fenrir@via.ecp.fr> (initial version)
+;*          Loren Merritt <lorenm@u.washington.edu> (misc)
 ;*          Min Chen <chenm001.163.com> (converted to nasm)
 ;*          Christian Heine <sennindemokrit@gmx.net> (dct8/idct8 functions)
-;*          Loren Merritt <lorenm@u.washington.edu> (misc)
 ;*
 ;* 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
@@ -20,7 +20,7 @@
 ;*
 ;* You should have received a copy of the GNU General Public License
 ;* along with this program; if not, write to the Free Software
-;* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
 ;*****************************************************************************
 
 %include "x86inc.asm"
index 875c6b0bf7e471969a4d5383a307e4f47659eadd..a6d753e8f7f2156e1eb96dea16fd254b36060875 100644 (file)
@@ -4,8 +4,8 @@
 ;* Copyright (C) 2003-2008 x264 project
 ;*
 ;* Authors: Laurent Aimar <fenrir@via.ecp.fr> (initial version)
+;*          Loren Merritt <lorenm@u.washington.edu> (dct8, misc)
 ;*          Min Chen <chenm001.163.com> (converted to nasm)
-;*          Loren Merritt <lorenm@u.washington.edu> (dct8)
 ;*
 ;* 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
@@ -19,7 +19,7 @@
 ;*
 ;* You should have received a copy of the GNU General Public License
 ;* along with this program; if not, write to the Free Software
-;* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
 ;*****************************************************************************
 
 %include "x86inc.asm"
index 525f94a342ad62b6a87c9da1d3e048955ed1a083..8026cec0006cf5205f97392a1c5a55af6417f19e 100644 (file)
@@ -4,8 +4,8 @@
 ;* Copyright (C) 2003-2008 x264 project
 ;*
 ;* Authors: Laurent Aimar <fenrir@via.ecp.fr>
-;*          Min Chen <chenm001.163.com>
 ;*          Loren Merritt <lorenm@u.washington.edu>
+;*          Min Chen <chenm001.163.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
@@ -19,7 +19,7 @@
 ;*
 ;* You should have received a copy of the GNU General Public License
 ;* along with this program; if not, write to the Free Software
-;* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
 ;*****************************************************************************
 
 %include "x86inc.asm"
index 859937c4f47f684dcd1ef63c91b405b14e7e6ad7..b7370d6dda0c5326e37c59283a0cecb037c0554d 100644 (file)
@@ -1,9 +1,10 @@
 /*****************************************************************************
  * dct.h: h264 encoder library
  *****************************************************************************
- * Copyright (C) 2003 Laurent Aimar
+ * Copyright (C) 2003-2008 x264 project
  *
- * Authors: Laurent Aimar <fenrir@via.ecp.fr>
+ * Authors: Loren Merritt <lorenm@u.washington.edu>
+ *          Laurent Aimar <fenrir@via.ecp.fr>
  *
  * 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
@@ -17,7 +18,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #ifndef X264_I386_DCT_H
index 2513014c7c406d751554d2ab2fd5ebfcd2d4d331..066e4b640d49adc4e5018d18e3845444daeea1da 100644 (file)
@@ -17,7 +17,7 @@
 ;*
 ;* You should have received a copy of the GNU General Public License
 ;* along with this program; if not, write to the Free Software
-;* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
 ;*****************************************************************************
 
 %include "x86inc.asm"
index 35d2d76f4d2f4096c2ca79446fff3c8fa2f891f2..50c660002de2e872143afb533e93f7377c167a93 100644 (file)
@@ -5,6 +5,7 @@
 ;*
 ;* Authors: Loren Merritt <lorenm@u.washington.edu>
 ;*          Laurent Aimar <fenrir@via.ecp.fr>
+;*          Fiona Glaser <fiona@x264.com>
 ;*          Min Chen <chenm001.163.com>
 ;*
 ;* This program is free software; you can redistribute it and/or modify
@@ -19,7 +20,7 @@
 ;*
 ;* You should have received a copy of the GNU General Public License
 ;* along with this program; if not, write to the Free Software
-;* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
 ;*****************************************************************************
 
 %include "x86inc.asm"
index 6f108cd475c8b3056256cde041d75a2026312992..47da6a29c996cb6e7b25612f2c1c4d459ea74426 100644 (file)
@@ -4,6 +4,7 @@
 ;* Copyright (C) 2005-2008 x264 project
 ;*
 ;* Authors: Loren Merritt <lorenm@u.washington.edu>
+;*          Fiona Glaser <fiona@x264.com>
 ;*          Mathieu Monnier <manao@melix.net>
 ;*
 ;* This program is free software; you can redistribute it and/or modify
@@ -18,7 +19,7 @@
 ;*
 ;* You should have received a copy of the GNU General Public License
 ;* along with this program; if not, write to the Free Software
-;* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
 ;*****************************************************************************
 
 %include "x86inc.asm"
index fb0815aa50e955d29c38fb533f189409d8d222a9..9bdd78f0a61705e424f76861294fa5abf88c8586 100644 (file)
@@ -5,6 +5,7 @@
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *          Loren Merritt <lorenm@u.washington.edu>
+ *          Fiona Glaser <fiona@x264.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
@@ -18,7 +19,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #include <stdlib.h>
index c5d186591c1135860b3f9df5ad6fe09f8e39f5cf..4271faf28b41740a4f3549610aae1a8fcd57a7e5 100644 (file)
@@ -1,9 +1,10 @@
 /*****************************************************************************
  * mc.h: h264 encoder library
  *****************************************************************************
- * Copyright (C) 2003 Laurent Aimar
+ * Copyright (C) 2003-2008 x264 project
  *
- * Authors: Laurent Aimar <fenrir@via.ecp.fr>
+ * Authors: Loren Merritt <lorenm@u.washington.edu>
+ *          Laurent Aimar <fenrir@via.ecp.fr>
  *
  * 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
@@ -17,7 +18,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #ifndef X264_I386_MC_H
index 44d27adafb840507a17d162172b5a50132a80398..08432b057dcdcd19d1a3f91c5e28a3ac81977fad 100644 (file)
@@ -18,7 +18,7 @@
 ;*
 ;* You should have received a copy of the GNU General Public License
 ;* along with this program; if not, write to the Free Software
-;* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
 ;*****************************************************************************
 
 %include "x86inc.asm"
index 361e2a633edc2414571a82251e63902226e1062f..01a578eb68897d926e4ae1f0848883a010f1726a 100644 (file)
@@ -19,7 +19,7 @@
 ;*
 ;* You should have received a copy of the GNU General Public License
 ;* along with this program; if not, write to the Free Software
-;* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
 ;*****************************************************************************
 
 %include "x86inc.asm"
index 6aa556a8d92595014d6b539de2f241dba215ac8e..491b921a67f598b9d01561dd49f17cf149311aba 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * pixel.h: h264 encoder library
  *****************************************************************************
- * Copyright (C) 2003-2008 Laurent Aimar
+ * Copyright (C) 2003-2008 x264 project
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *          Loren Merritt <lorenm@u.washington.edu>
@@ -18,7 +18,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #ifndef X264_I386_PIXEL_H
index 64a01558296f5b60c869c59588dcb4c3de820e78..0eb1e378aae5122b99d84f8afdadd61f55ae9f88 100644 (file)
@@ -4,6 +4,7 @@
 ;* Copyright (C) 2005-2008 x264 project
 ;*
 ;* Authors: Loren Merritt <lorenm@u.washington.edu>
+;*          Fiona Glaser <fiona@x264.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
@@ -17,7 +18,7 @@
 ;*
 ;* You should have received a copy of the GNU General Public License
 ;* along with this program; if not, write to the Free Software
-;* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
 ;*****************************************************************************
 
 %include "x86inc.asm"
index ce671c3a6a139988fde9d8cae5ef4f2a3a215557..abd4311285382e2dd5256dd6e53278e34143ef81 100644 (file)
@@ -1,10 +1,10 @@
 /*****************************************************************************
  * predict.c: h264 encoder
  *****************************************************************************
- * Copyright (C) 2003 Laurent Aimar
- * $Id: predict.c,v 1.1 2004/06/03 19:27:07 fenrir Exp $
+ * Copyright (C) 2003-2008 x264 project
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
+ *          Loren Merritt <lorenm@u.washington.edu>
  *
  * 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
@@ -18,7 +18,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #include "common/common.h"
index 761aa58a705a1121d80f148ddbfc4ec04738c1f7..398f3076ef0a60a0eeaacc5a2633d93cd36d9b9f 100644 (file)
@@ -1,9 +1,10 @@
 /*****************************************************************************
  * predict.h: h264 encoder library
  *****************************************************************************
- * Copyright (C) 2003 Laurent Aimar
+ * Copyright (C) 2003-2008 x264 project
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
+ *          Loren Merritt <lorenm@u.washington.edu>
  *
  * 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
@@ -17,7 +18,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #ifndef X264_I386_PREDICT_H
index 20db71eb212d6eca31715a4d820a7f3c777f0ddc..2eda4988e4a99658d7db035261df4ed86a26317d 100644 (file)
@@ -18,7 +18,7 @@
 ;*
 ;* You should have received a copy of the GNU General Public License
 ;* along with this program; if not, write to the Free Software
-;* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
 ;*****************************************************************************
 
 %include "x86inc.asm"
index c7a560d75c6afd348cb5e41d924118889a7f364d..5b31febb7dedfda57d19c7918d80abb1b5c00862 100644 (file)
@@ -1,9 +1,10 @@
 /*****************************************************************************
  * quant.h: h264 encoder library
  *****************************************************************************
- * Copyright (C) 2005 x264 project
+ * Copyright (C) 2005-2008 x264 project
  *
  * Authors: Christian Heine <sennindemokrit@gmx.net>
+ *          Loren Merritt <lorenm@u.washington.edu>
  *
  * 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
@@ -17,7 +18,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #ifndef X264_I386_QUANT_H
index 3709e28c04af6dd01f58815573615bdb2807c7ac..42e48892661a4123295dc4bd725af58ffa2a337c 100644 (file)
@@ -19,7 +19,7 @@
 ;*
 ;* You should have received a copy of the GNU General Public License
 ;* along with this program; if not, write to the Free Software
-;* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
 ;*****************************************************************************
 
 %include "x86inc.asm"
index e100a4e4d3e10e8b4d9565659566f8628a4c6e94..2158c3738fded9618b967540055eeaf3c75c3cb7 100644 (file)
@@ -1,7 +1,10 @@
 /*****************************************************************************
  * mc.h: h264 encoder library
  *****************************************************************************
- * Copyright (C) 2008 Loren Merritt
+ * Copyright (C) 2008 x264 Project
+ *
+ * Authors: Fiona Glaser <fiona@x264.com>
+ *          Loren Merritt <lorenm@u.washington.edu>
  *
  * 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
@@ -15,7 +18,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #ifndef X264_X86_UTIL_H
index 49895fc7958c612b1f624fea15b1726c36cd9ade..7cf99dc3322c728751a2a4fa5ca49661e7c26dc6 100644 (file)
@@ -3,7 +3,8 @@
 ;*****************************************************************************
 ;* Copyright (C) 2006-2008 x264 project
 ;*
-;* Author: Sam Hocevar <sam@zoy.org>
+;* Authors: Sam Hocevar <sam@zoy.org>
+;*          Loren Merritt <lorenm@u.washington.edu>
 ;*
 ;* 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
@@ -17,7 +18,7 @@
 ;*
 ;* You should have received a copy of the GNU General Public License
 ;* along with this program; if not, write to the Free Software
-;* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
 ;*****************************************************************************
 
 BITS 32
index 5396fd8b54a6d633c37603330d2dec5d0ed7f613..b4d259c650dd065c8667ae170734293d2f50ecdb 100644 (file)
@@ -1,7 +1,7 @@
 ;*****************************************************************************
 ;* x86inc-64.asm: h264 encoder library
 ;*****************************************************************************
-;* Copyright (C) 2005-2008 x264 project
+;* Copyright (C) 2005-2008 Loren Merritt <lorenm@u.washington.edu>
 ;*
 ;* 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
@@ -15,7 +15,7 @@
 ;*
 ;* You should have received a copy of the GNU General Public License
 ;* along with this program; if not, write to the Free Software
-;* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
 ;*****************************************************************************
 
 BITS 64
index fe08b7bcaa6357802164f586d257bbf7f3fa96e1..7962c9323623c303542e08896df702a18544af80 100644 (file)
@@ -15,7 +15,7 @@
 ;*
 ;* You should have received a copy of the GNU General Public License
 ;* along with this program; if not, write to the Free Software
-;* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
 ;*****************************************************************************
 
 %ifdef ARCH_X86_64
index 6e0f9f1216d4a9f8efe54d54b569ef24066bc7be..7afa8531a1d9fde65e5ca08e59046801968f41d9 100644 (file)
@@ -1,8 +1,7 @@
 /*****************************************************************************
  * analyse.c: h264 encoder library
  *****************************************************************************
- * Copyright (C) 2003 x264 project
- * $Id: analyse.c,v 1.1 2004/06/03 19:27:08 fenrir Exp $
+ * Copyright (C) 2003-2008 x264 project
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *          Loren Merritt <lorenm@u.washington.edu>
@@ -19,7 +18,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #include <math.h>
index 119959331220b960e061bcf3e1f1fbafe34fb27c..b8c828f6cbbb664cffe7e9db0f9d62384be6ea4e 100644 (file)
@@ -1,10 +1,10 @@
 /*****************************************************************************
  * analyse.h: h264 encoder library
  *****************************************************************************
- * Copyright (C) 2003 Laurent Aimar
- * $Id: analyse.h,v 1.1 2004/06/03 19:27:08 fenrir Exp $
+ * Copyright (C) 2003-2008 x264 project
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
+ *          Loren Merritt <lorenm@u.washington.edu>
  *
  * 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
@@ -18,7 +18,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #ifndef X264_ANALYSE_H
index d7842b1c2573a9c164955b9d13891bd9d047ff0a..01278528a6cd126a4efcbf6e01f4acd03ecd63ef 100644 (file)
@@ -1,10 +1,10 @@
 /*****************************************************************************
  * cabac.c: h264 encoder library
  *****************************************************************************
- * Copyright (C) 2003 Laurent Aimar
- * $Id: cabac.c,v 1.1 2004/06/03 19:27:08 fenrir Exp $
+ * Copyright (C) 2003-2008 x264 project
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
+ *          Loren Merritt <lorenm@u.washington.edu>
  *
  * 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
@@ -18,7 +18,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #include "common/common.h"
index 7d5bc84c6af4660a867c7e51c761ebe09b24cd5a..ffe16adab8e7d8726543ab8b0eb203f27dc8f2b4 100644 (file)
@@ -1,10 +1,10 @@
 /*****************************************************************************
  * cavlc.c: h264 encoder library
  *****************************************************************************
- * Copyright (C) 2003 Laurent Aimar
- * $Id: cavlc.c,v 1.1 2004/06/03 19:27:08 fenrir Exp $
+ * Copyright (C) 2003-2008 x264 project
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
+ *          Loren Merritt <lorenm@u.washington.edu>
  *
  * 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
@@ -18,7 +18,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #include "common/common.h"
index 43f9f9f763257c63c5632c4a47c2cdd0509875c5..e87105d3d3ac246b0cf9801cb93dbe97ca3081e8 100644 (file)
@@ -1,10 +1,10 @@
 /*****************************************************************************
  * x264: h264 encoder
  *****************************************************************************
- * Copyright (C) 2003 Laurent Aimar
- * $Id: encoder.c,v 1.1 2004/06/03 19:27:08 fenrir Exp $
+ * Copyright (C) 2003-2008 x264 project
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
+ *          Loren Merritt <lorenm@u.washington.edu>
  *
  * 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
@@ -18,7 +18,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #include <math.h>
index eec1cc037486529c125fd619e3950e8cd184dda4..660854848c928c12a542f69b5adc2283b91d9bb7 100644 (file)
@@ -1,6 +1,6 @@
-/*
+/*****************************************************************************
  * simple arithmetic expression evaluator
- *
+ *****************************************************************************
  * Copyright (c) 2002 Michael Niedermayer <michaelni@gmx.at>
  *
  * This library is free software; you can redistribute it and/or
@@ -16,8 +16,7 @@
  * You should have received a copy of the GNU Lesser General Public
  * License along with this library; if not, write to the Free Software
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
- *
- */
+ *****************************************************************************/
 
 /**
  * @file eval.c
index 403b858782fb582e9b50a9731c7521c9ec686762..3eb29ecc575b542c4cebbfb578f322f1b31cefa0 100644 (file)
@@ -1,10 +1,11 @@
 /*****************************************************************************
  * macroblock.c: h264 encoder library
  *****************************************************************************
- * Copyright (C) 2003 Laurent Aimar
- * $Id: macroblock.c,v 1.1 2004/06/03 19:27:08 fenrir Exp $
+ * Copyright (C) 2003-2008 x264 project
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
+ *          Loren Merritt <lorenm@u.washington.edu>
+ *          Fiona Glaser <fiona@x264.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 d17a919ad081adbd4dde6c88e7285e419dd5329f..49d13a25fc7b296b6d2719eab1bbc64b7347f357 100644 (file)
@@ -1,10 +1,10 @@
 /*****************************************************************************
  * macroblock.h: h264 encoder library
  *****************************************************************************
- * Copyright (C) 2003 Laurent Aimar
- * $Id: macroblock.h,v 1.1 2004/06/03 19:27:08 fenrir Exp $
+ * Copyright (C) 2003-2008 x264 project
  *
- * Authors: Laurent Aimar <fenrir@via.ecp.fr>
+ * Authors: Loren Merritt <lorenm@u.washington.edu>
+ *          Laurent Aimar <fenrir@via.ecp.fr>
  *
  * 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
@@ -18,7 +18,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #ifndef X264_ENCODER_MACROBLOCK_H
index 216c909acb675a5d4672735c24f415029a9a2e13..5d1a2e6bd81f0cf4d5229eee93f095d11b44a593 100644 (file)
@@ -1,11 +1,11 @@
 /*****************************************************************************
  * me.c: h264 encoder library (Motion Estimation)
  *****************************************************************************
- * Copyright (C) 2003 Laurent Aimar
- * $Id: me.c,v 1.1 2004/06/03 19:27:08 fenrir Exp $
+ * Copyright (C) 2003-2008 x264 project
  *
- * Authors: Laurent Aimar <fenrir@via.ecp.fr>
- *          Loren Merritt <lorenm@u.washington.edu>
+ * Authors: Loren Merritt <lorenm@u.washington.edu>
+ *          Laurent Aimar <fenrir@via.ecp.fr>
+ *          Fiona Glaser <fiona@x264.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
@@ -19,7 +19,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #include "common/common.h"
index 6775a9751c65af0d6721d72ea90d1ddbfd5a743c..34806e120c0d13c3ff3f91dde1b8e07b4b3538b5 100644 (file)
@@ -1,10 +1,10 @@
 /*****************************************************************************
  * me.h: h264 encoder library (Motion Estimation)
  *****************************************************************************
- * Copyright (C) 2003 Laurent Aimar
- * $Id: me.h,v 1.1 2004/06/03 19:27:08 fenrir Exp $
+ * Copyright (C) 2003-2008 x264 project
  *
- * Authors: Laurent Aimar <fenrir@via.ecp.fr>
+ * Authors: Loren Merritt <lorenm@u.washington.edu>
+ *          Laurent Aimar <fenrir@via.ecp.fr>
  *
  * 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
@@ -18,7 +18,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #ifndef X264_ME_H
index bd33b8869c14e6976ee49f03bdfdc6f87499b2d0..9f31ecfe3661c299579aef5d845e5423c5e07e15 100644 (file)
@@ -1,11 +1,12 @@
 /***************************************************-*- coding: iso-8859-1 -*-
  * ratecontrol.c: h264 encoder library (Rate Control)
  *****************************************************************************
- * Copyright (C) 2005 x264 project
- * $Id: ratecontrol.c,v 1.1 2004/06/03 19:27:08 fenrir Exp $
+ * Copyright (C) 2005-2008 x264 project
  *
  * Authors: Loren Merritt <lorenm@u.washington.edu>
  *          Michael Niedermayer <michaelni@gmx.at>
+ *          Gabriel Bouvigne <gabriel.bouvigne@joost.com>
+ *          Fiona Glaser <fiona@x264.com>
  *          MÃ¥ns RullgÃ¥rd <mru@mru.ath.cx>
  *
  * This program is free software; you can redistribute it and/or modify
@@ -20,7 +21,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #define _ISOC99_SOURCE
index 38f5f232f29aa9b10950f7faf4d347e94fe1f036..c87414c3fc6097ffb571eace00a8380f004b2f20 100644 (file)
@@ -1,10 +1,10 @@
 /*****************************************************************************
  * ratecontrol.h: h264 encoder library (Rate Control)
  *****************************************************************************
- * Copyright (C) 2003 Laurent Aimar
- * $Id: ratecontrol.h,v 1.1 2004/06/03 19:27:08 fenrir Exp $
+ * Copyright (C) 2003-2008 x264 project
  *
- * Authors: Laurent Aimar <fenrir@via.ecp.fr>
+ * Authors: Loren Merritt <lorenm@u.washington.edu>
+ *          Laurent Aimar <fenrir@via.ecp.fr>
  *
  * 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
@@ -18,7 +18,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #ifndef X264_RATECONTROL_H
index 8223efd85066620ec0d7b0f9a1173e16d7a7190d..edc50766eecba987d6c3bbb3b7375153761d6be6 100644 (file)
@@ -1,9 +1,7 @@
 /*****************************************************************************
  * rdo.c: h264 encoder library (rate-distortion optimization)
  *****************************************************************************
- * Copyright (C) 2005 x264 project
- *
- * Authors: Loren Merritt <lorenm@u.washington.edu>
+ * Copyright (C) 2005-2008 Loren Merritt <lorenm@u.washington.edu>
  *
  * 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
@@ -17,7 +15,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 /* duplicate all the writer functions, just calculating bit cost
index 6cf877325b141350025ba14e84f8fc8b44a7269a..c3a065d0ed4c0be1a44a384bf515a7a07cb9db35 100644 (file)
@@ -1,10 +1,10 @@
 /*****************************************************************************
  * set: h264 encoder (SPS and PPS init and write)
  *****************************************************************************
- * Copyright (C) 2003 Laurent Aimar
- * $Id: set.c,v 1.1 2004/06/03 19:27:08 fenrir Exp $
+ * Copyright (C) 2003-2008 x264 project
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
+ *          Loren Merritt <lorenm@u.washington.edu>
  *
  * 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
@@ -18,7 +18,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #include <math.h>
index 6672b44997550759dbbb090e4be7d6a982fa66e8..b4fa6b1f05f4780b61bd50898f4e49f46a7ca028 100644 (file)
@@ -1,10 +1,10 @@
 /*****************************************************************************
  * set.h: h264 encoder
  *****************************************************************************
- * Copyright (C) 2003 Laurent Aimar
- * $Id: set.h,v 1.1 2004/06/03 19:27:08 fenrir Exp $
+ * Copyright (C) 2003-2008 x264 project
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
+ *          Loren Merritt <lorenm@u.washington.edu>
  *
  * 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
@@ -18,7 +18,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #ifndef X264_ENCODER_SET_H
index 27257c6036424c551b0e755fe80bc646af7a703a..1777100bfb46d4bb2ae9ce3c5056b05e48b3882e 100644 (file)
@@ -1,9 +1,7 @@
 /*****************************************************************************
  * slicetype.c: h264 encoder library
  *****************************************************************************
- * Copyright (C) 2005 Loren Merritt
- *
- * Authors: Loren Merritt <lorenm@u.washington.edu>
+ * Copyright (C) 2005-2008 Loren Merritt <lorenm@u.washington.edu>
  *
  * 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
@@ -17,7 +15,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #include <math.h>
index 37c5d21a58c6881c6f20af31db8f3cc2b99578ee..a890fde56ae92d92eb132c3d6c878cfc592fe0fc 100644 (file)
@@ -18,7 +18,7 @@
 
    You should have received a copy of the GNU Lesser General Public
    License along with the GNU C Library; if not, write to the Free
-   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+   Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
    02111-1307 USA.  */
 \f
 /* This tells Alpha OSF/1 not to define a getopt prototype in <stdio.h>.
index 18e102696cafb023e8eaf1c9edb990744ba56b56..e2e40daf78c5b5b0ecf827b4184b3e2e56810828 100644 (file)
@@ -14,7 +14,7 @@
 
    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software Foundation,
-   Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
+   Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1307, USA.  */
 
 #ifndef _GETOPT_H
 
index 81b7e64ce8ec72f99610e8796abe8a44d4a43957..dbb18fd7cf7f2bcd71af9610c5a7292610ffa3f5 100644 (file)
@@ -1,3 +1,23 @@
+/*****************************************************************************
+ * test.c: h264 gtk encoder frontend
+ *****************************************************************************
+ * Copyright (C) 2006 Vincent Torri
+ *
+ * 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
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
+ *****************************************************************************/
+
 #include <stdint.h>
 #include <string.h>
 
index 069f4d2f27b20736a5bb05cfd0f3d8369134eb52..355ae67063d06098214b1acc55c99fe37385df5f 100644 (file)
@@ -1,3 +1,23 @@
+/*****************************************************************************
+ * x264_gtk.c: h264 gtk encoder frontend
+ *****************************************************************************
+ * Copyright (C) 2006 Vincent Torri
+ *
+ * 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
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
+ *****************************************************************************/
+
 #include <string.h>
 #include <sys/types.h>
 #include <sys/stat.h>
index 7174e6a59ed1745fab342936c3dcc0fe88f05775..233a5038d2699aaf696e9b22f721c9c0fed50315 100644 (file)
@@ -1,3 +1,23 @@
+/*****************************************************************************
+ * x264_gtk.h: h264 gtk encoder frontend
+ *****************************************************************************
+ * Copyright (C) 2006 Vincent Torri
+ *
+ * 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
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
+ *****************************************************************************/
+
 #ifndef X264_GTK_H
 #define X264_GTK_H
 
index 34fee1fa0f12f75d2c413af990bba3f3075d0419..fdd8859686ede82a42ae89b98ac2531f7f57e167 100644 (file)
@@ -1,3 +1,23 @@
+/*****************************************************************************
+ * x264_gtk_bitrate.c: h264 gtk encoder frontend
+ *****************************************************************************
+ * Copyright (C) 2006 Vincent Torri
+ *
+ * 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
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
+ *****************************************************************************/
+
 #if defined __FreeBSD__ || defined __OpenBSD__ || defined __NetBSD__ || defined __DragonFly__
 #  include <inttypes.h>
 #else
index 7f8c07d3fc6931c100df542a45713032e5564915..35315f6de5fa49051468f797a6417939df4ed8ee 100644 (file)
@@ -1,3 +1,23 @@
+/*****************************************************************************
+ * x264_gtk_bitrate.h: h264 gtk encoder frontend
+ *****************************************************************************
+ * Copyright (C) 2006 Vincent Torri
+ *
+ * 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
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
+ *****************************************************************************/
+
 #ifndef X264_GTK_BITRATE_H
 #define X264_GTK_BITRATE_H
 
index 28b51ea1914e293fe159b3acb76c0202d29cb551..4312f8e57f04ef5798e03020ef21af7a5e0ad7e8 100644 (file)
@@ -1,3 +1,23 @@
+/*****************************************************************************
+ * x264_gtk_cqm.c: h264 gtk encoder frontend
+ *****************************************************************************
+ * Copyright (C) 2006 Vincent Torri
+ *
+ * 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
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
+ *****************************************************************************/
+
 #if defined __FreeBSD__ || defined __OpenBSD__ || defined __NetBSD__ || defined __DragonFly__
 #  include <inttypes.h>
 #else
index 30118f5dd33708bb593cb88cca02ac3fb23fad48..0ba3dc39ad7abed695ee4a128d220b737094d414 100644 (file)
@@ -1,3 +1,23 @@
+/*****************************************************************************
+ * x264_gtk_cqm.h: h264 gtk encoder frontend
+ *****************************************************************************
+ * Copyright (C) 2006 Vincent Torri
+ *
+ * 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
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
+ *****************************************************************************/
+
 #ifndef X264_GTK_CQM_H
 #define X264_GTK_CQM_H
 
index de9ab01656a6ff747109ba82260a92df44851ad1..638a7af655ef282cbe360db90d54110b83ad6ade 100644 (file)
@@ -1,3 +1,23 @@
+/*****************************************************************************
+ * x264_gtk_demuxers.h: h264 gtk encoder frontend
+ *****************************************************************************
+ * Copyright (C) 2006 Vincent Torri
+ *
+ * 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
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
+ *****************************************************************************/
+
 #ifndef X264_GTK_MUXERS_H
 #define X264_GTK_MUXERS_H
 
index 8240a516ce8589b7207b20fa8e1c1ee6057b775b..28c8ee3c356286c750d62bf08d88deeb48b2418a 100644 (file)
@@ -1,3 +1,23 @@
+/*****************************************************************************
+ * x264_gtk_encode.c: h264 gtk encoder frontend
+ *****************************************************************************
+ * Copyright (C) 2006 Vincent Torri
+ *
+ * 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
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
+ *****************************************************************************/
+
 #if defined __FreeBSD__ || defined __OpenBSD__ || defined __NetBSD__ || defined __DragonFly__
 #  include <inttypes.h>
 #else
index 869fd4f53c1ba649c90a56d7ed272055c7230b63..f05c0aa18195014e409f02da5ca7c63b2e2ca07a 100644 (file)
@@ -1,3 +1,23 @@
+/*****************************************************************************
+ * x264_gtk_encode_encode.c: h264 gtk encoder frontend
+ *****************************************************************************
+ * Copyright (C) 2006 Vincent Torri
+ *
+ * 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
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
+ *****************************************************************************/
+
 #include <string.h>
 #if defined __FreeBSD__ || defined __OpenBSD__ || defined __NetBSD__ || defined __DragonFly__
 #  include <inttypes.h>
index e1a31b1e8143851f4c70408b4d089ebfb84af42d..5cc61e0bdaf5e24b742e8fc78e17ddcdfbd599c4 100644 (file)
@@ -1,3 +1,23 @@
+/*****************************************************************************
+ * x264_gtk_encode_encode.h: h264 gtk encoder frontend
+ *****************************************************************************
+ * Copyright (C) 2006 Vincent Torri
+ *
+ * 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
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
+ *****************************************************************************/
+
 #ifndef X264_GTK_ENCODE_ENCODE_H
 #define X264_GTK_ENCODE_ENCODE_H
 
index 5dcde21040024e5168dfbc572a850923e0c968d6..fe6ac934017a931ee8436ecb3a62c63d509c1502 100644 (file)
@@ -1,3 +1,23 @@
+/*****************************************************************************
+ * x264_gtk_encode_main_window.c: h264 gtk encoder frontend
+ *****************************************************************************
+ * Copyright (C) 2006 Vincent Torri
+ *
+ * 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
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
+ *****************************************************************************/
+
 #if defined __FreeBSD__ || defined __OpenBSD__ || defined __NetBSD__ || defined __DragonFly__
 #  include <inttypes.h>
 #else
index 6b5ad004c564eed149b28eb567c26a5d79dffd1e..e0a6143e9e07ad307b220b7efbfba4e77115f2de 100644 (file)
@@ -1,3 +1,23 @@
+/*****************************************************************************
+ * x264_gtk_encode_main_window.h: h264 gtk encoder frontend
+ *****************************************************************************
+ * Copyright (C) 2006 Vincent Torri
+ *
+ * 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
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
+ *****************************************************************************/
+
 #ifndef X264_GTK_ENCODE_MAIN_WINDOW_H
 #define X264_GTK_ENCODE_MAIN_WINDOW_H
 
index 47fc9f8819251405487af0e7424b06c52763bdc4..553cc1c31f41218be68d744272356cefcb757ab7 100644 (file)
@@ -1,3 +1,23 @@
+/*****************************************************************************
+ * x264_gtk_encode_private.h: h264 gtk encoder frontend
+ *****************************************************************************
+ * Copyright (C) 2006 Vincent Torri
+ *
+ * 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
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
+ *****************************************************************************/
+
 #ifndef X264_GTK_ENCODE_PRIVATE_H
 #define X264_GTK_ENCODE_PRIVATE_H
 
index e22e1a5ab2fdc11337a14e16038215cb9c7c830a..24e015d8e0109e03566e7f4e4aa356c36cfee671 100644 (file)
@@ -1,3 +1,23 @@
+/*****************************************************************************
+ * x264_encode_status_window.c: h264 gtk encoder frontend
+ *****************************************************************************
+ * Copyright (C) 2006 Vincent Torri
+ *
+ * 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
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
+ *****************************************************************************/
+
 #if defined __FreeBSD__ || defined __OpenBSD__ || defined __NetBSD__ || defined __DragonFly__
 #  include <inttypes.h>
 #else
index ae657e5dc40dd88ec5c2e418c5d144c4310ba3b0..51b03057beae38a003e78bae34494b4e10ae24de 100644 (file)
@@ -1,3 +1,23 @@
+/*****************************************************************************
+ * x264_encode_status_window.h: h264 gtk encoder frontend
+ *****************************************************************************
+ * Copyright (C) 2006 Vincent Torri
+ *
+ * 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
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
+ *****************************************************************************/
+
 #ifndef X264_GTK_ENCODE_STATUS_WINDOW_H
 #define X264_GTK_ENCODE_STATUS_WINDOW_H
 
index 99e0048c2428321b30a57539729fc6bbda60043c..06e57473109db0a1b0b9fb94b2c7bb11aef71043 100644 (file)
@@ -1,3 +1,23 @@
+/*****************************************************************************
+ * x264_gtk_enum.h: h264 gtk encoder frontend
+ *****************************************************************************
+ * Copyright (C) 2006 Vincent Torri
+ *
+ * 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
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
+ *****************************************************************************/
+
 #ifndef X264_GTK_ENUM_H
 #define X264_GTK_ENUM_H
 
index 4c5288364efda82a2018dd091dddd67501562eb3..60a572e1b6035921bf2fe3f3b4986bf11a6b5373 100644 (file)
@@ -1,3 +1,23 @@
+/*****************************************************************************
+ * x264_gtk_i18n.h: h264 gtk encoder frontend
+ *****************************************************************************
+ * Copyright (C) 2006 Vincent Torri
+ *
+ * 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
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
+ *****************************************************************************/
+
 #ifndef X264_GTK_I18N_H
 #define X264_GTK_I18N_H
 
index b86cea165e575b312c2a15e11d0d66ae0f482284..61fda344ed59e2d095248cb347e12d95d346b8ec 100644 (file)
@@ -1,3 +1,23 @@
+/*****************************************************************************
+ * x264_gtk_mb.c: h264 gtk encoder frontend
+ *****************************************************************************
+ * Copyright (C) 2006 Vincent Torri
+ *
+ * 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
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
+ *****************************************************************************/
+
 #include <gtk/gtk.h>
 
 #include "x264_gtk_i18n.h"
index 8fb20b7eb440e4d8f273e175ce72aaba72d1692b..865735e20e7c35a1efaf2d31e3e837d1814083ca 100644 (file)
@@ -1,3 +1,23 @@
+/*****************************************************************************
+ * x264_gtk_mb.h: h264 gtk encoder frontend
+ *****************************************************************************
+ * Copyright (C) 2006 Vincent Torri
+ *
+ * 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
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
+ *****************************************************************************/
+
 #ifndef X264_GTK_MB_H
 #define X264_GTK_MB_H
 
index 2b266970523d9cfb4cb33d89cfd77b04b69ef671..e01adf04c599b22a6349300821cf965680811433 100644 (file)
@@ -1,3 +1,23 @@
+/*****************************************************************************
+ * x264_gtk_more.c: h264 gtk encoder frontend
+ *****************************************************************************
+ * Copyright (C) 2006 Vincent Torri
+ *
+ * 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
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
+ *****************************************************************************/
+
 #include <gtk/gtk.h>
 
 #include "x264_gtk_i18n.h"
index b2401c9b4b162f56ccaebc7b2696e26af3f31c9a..a4ea3b9504009d2544b10b3c678398f51e5b196f 100644 (file)
@@ -1,3 +1,23 @@
+/*****************************************************************************
+ * x264_gtk_more.h: h264 gtk encoder frontend
+ *****************************************************************************
+ * Copyright (C) 2006 Vincent Torri
+ *
+ * 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
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
+ *****************************************************************************/
+
 #ifndef X264_GTK_MORE_H
 #define X264_GTK_MORE_H
 
index aa9d40edc7dc03cfec07bad2b68b8c06fbaf7892..859da04147ce6dfa1110f48072933884a62ab36e 100644 (file)
@@ -1,3 +1,23 @@
+/*****************************************************************************
+ * x264_gtk_private.h: h264 gtk encoder frontend
+ *****************************************************************************
+ * Copyright (C) 2006 Vincent Torri
+ *
+ * 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
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
+ *****************************************************************************/
+
 #ifndef X264_GTK_PRIVATE_H
 #define X264_GTK_PRIVATE_H
 
index 5222e56a1aa66b5090f2acd14088a3cd9be892d6..5f9711beda717fac0c5bdb0fb1768b6632726be6 100644 (file)
@@ -1,3 +1,23 @@
+/*****************************************************************************
+ * x264_gtk_rc.c: h264 gtk encoder frontend
+ *****************************************************************************
+ * Copyright (C) 2006 Vincent Torri
+ *
+ * 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
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
+ *****************************************************************************/
+
 #include <gtk/gtk.h>
 
 #include "x264_gtk_i18n.h"
index 558e08c64820b0fe08fbdf5b5b9526e99f114365..1813fade8aa7e3c33bcbbf0aee699a361f6ede5b 100644 (file)
@@ -1,3 +1,23 @@
+/*****************************************************************************
+ * x264_gtk_rc.h: h264 gtk encoder frontend
+ *****************************************************************************
+ * Copyright (C) 2006 Vincent Torri
+ *
+ * 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
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
+ *****************************************************************************/
+
 #ifndef X264_GTK_RC_H
 #define X264_GTK_RC_H
 
index 6cc7df93fd04fc1c7431e01542228516bffed085..b3029c6d614ea3d07dc8c4ef2d408036e19e4dd4 100644 (file)
@@ -1,10 +1,7 @@
 /*****************************************************************************
  * matroska.c:
  *****************************************************************************
- * Copyright (C) 2005 x264 project
- * $Id: $
- *
- * Authors: Mike Matsnev
+ * Copyright (C) 2005 Mike Matsnev
  *
  * 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
@@ -18,7 +15,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #include <stdlib.h>
index a23c43e628be79f5648e40d4ef09b15df3045755..be6f53005c29d3f5008566c36f038fb4ec5839ec 100644 (file)
@@ -1,10 +1,7 @@
 /*****************************************************************************
  * matroska.h:
  *****************************************************************************
- * Copyright (C) 2005 x264 project
- * $Id: $
- *
- * Authors: Mike Matsnev
+ * Copyright (C) 2005 Mike Matsnev
  *
  * 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
@@ -18,7 +15,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #ifndef X264_MATROSKA_H
index 41b8e7d5e2d426fc331f7995091a3896da5dd1f8..c16b2ffae2e962f4b8cac38df6846ef158b29ccd 100644 (file)
--- a/muxers.c
+++ b/muxers.c
@@ -1,7 +1,10 @@
 /*****************************************************************************
  * muxers.c: h264 file i/o plugins
  *****************************************************************************
- * Copyright (C) 2003-2006 x264 project
+ * Copyright (C) 2003-2008 x264 project
+ *
+ * Authors: Laurent Aimar <fenrir@via.ecp.fr>
+ *          Loren Merritt <lorenm@u.washington.edu>
  *
  * 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
@@ -15,7 +18,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #include "common/common.h"
index 372aa639c5ba60216f140f9ec64d2e0082997487..aaede1c0b7d13adf0160403b29efc70201a01b70 100644 (file)
--- a/muxers.h
+++ b/muxers.h
@@ -1,3 +1,26 @@
+/*****************************************************************************
+ * muxers.c: h264 file i/o plugins
+ *****************************************************************************
+ * Copyright (C) 2003-2008 x264 project
+ *
+ * Authors: Laurent Aimar <fenrir@via.ecp.fr>
+ *          Loren Merritt <lorenm@u.washington.edu>
+ *
+ * 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
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
+ *****************************************************************************/
+
 #ifndef X264_MUXERS_H
 #define X264_MUXERS_H
 
index df1c11e5e749dfb0f8d08c5e673a0b0824c0d9e6..09a3e4ae9905d6929a9ea570cceaf2552df0fb44 100644 (file)
@@ -1,10 +1,10 @@
 /*****************************************************************************
  * avc2avi.c: raw h264 -> AVI
  *****************************************************************************
- * Copyright (C) 2004 Laurent Aimar
- * $Id: avc2avi.c,v 1.1 2004/06/03 19:27:08 fenrir Exp $
+ * Copyright (C) 2004-2006 x264 project
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
+ *          Loren Merritt <lorenm@u.washington.edu>
  *
  * 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
@@ -18,7 +18,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #include <stdlib.h>
index e67ad824e4fc2b9fc194375eeab0a501929cf7e2..eee303273275943db36c41d07a832b89ebb9dc5c 100644 (file)
@@ -1,5 +1,5 @@
 ;*****************************************************************************
-;* checkasm-32.asm
+;* checkasm-a.asm
 ;*****************************************************************************
 ;* Copyright (C) 2008 Loren Merritt <lorenm@u.washington.edu>
 ;*
@@ -15,7 +15,7 @@
 ;*
 ;* You should have received a copy of the GNU General Public License
 ;* along with this program; if not, write to the Free Software
-;* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
 ;*****************************************************************************
 
 %include "x86inc.asm"
index 85fce259b182837dd5599f4760bd5905b73b3e2f..bf56c6892b3cc0cb6657a0ac26ce7fd9649ef55c 100644 (file)
@@ -1,3 +1,27 @@
+/*****************************************************************************
+ * checkasm.c: assembly check tool
+ *****************************************************************************
+ * Copyright (C) 2003-2008 x264 project
+ *
+ * Authors: Loren Merritt <lorenm@u.washington.edu>
+ *          Laurent Aimar <fenrir@via.ecp.fr>
+ *          Fiona Glaser <fiona@x264.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
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
+ *****************************************************************************/
+
 #include <ctype.h>
 #include <stdlib.h>
 #include <limits.h>
index 9e84be99c8a3b70944dadf41441a0dd0b8f52b80..8e8063271f8cdba5a5b6caba2887399f5dfd4b06 100644 (file)
@@ -1,10 +1,7 @@
 /*****************************************************************************
  * xyuv.c: a SDL yuv 420 planer viewer.
  *****************************************************************************
- * Copyright (C) 2004 Laurent Aimar
- * $Id: xyuv.c,v 1.1 2004/06/03 19:27:08 fenrir Exp $
- *
- * Authors: Laurent Aimar <fenrir@via.ecp.fr>
+ * Copyright (C) 2004 Laurent Aimar <fenrir@via.ecp.fr>
  *
  * 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
@@ -18,7 +15,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #include <stdlib.h>
diff --git a/x264.c b/x264.c
index d78461f36bc21df2f233c439288e7667e51b3ecc..14466e50ec9bebaaa48fca81b122a33072211cc4 100644 (file)
--- a/x264.c
+++ b/x264.c
@@ -1,10 +1,10 @@
 /*****************************************************************************
  * x264: h264 encoder testing program.
  *****************************************************************************
- * Copyright (C) 2003 Laurent Aimar
- * $Id: x264.c,v 1.1 2004/06/03 19:24:12 fenrir Exp $
+ * Copyright (C) 2003-2008 x264 project
  *
- * Authors: Laurent Aimar <fenrir@via.ecp.fr>
+ * Authors: Loren Merritt <lorenm@u.washington.edu>
+ *          Laurent Aimar <fenrir@via.ecp.fr>
  *
  * 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
@@ -18,7 +18,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #include <stdlib.h>
diff --git a/x264.h b/x264.h
index 838d57267bf86d68a626485b6c740586b926fc3f..3b678dc7a7f929fe774e720275b9d1a2cb003546 100644 (file)
--- a/x264.h
+++ b/x264.h
@@ -1,10 +1,10 @@
 /*****************************************************************************
  * x264.h: h264 encoder library
  *****************************************************************************
- * Copyright (C) 2003 Laurent Aimar
- * $Id: x264.h,v 1.1 2004/06/03 19:24:12 fenrir Exp $
+ * Copyright (C) 2003-2008 x264 Project
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
+ *          Loren Merritt <lorenm@u.washington.edu>
  *
  * 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
@@ -18,7 +18,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  *****************************************************************************/
 
 #ifndef X264_X264_H