[xiph-commits] r12857 - in trunk/theora/lib: . dec dec/x86 enc/x86_32 enc/x86_64

j at svn.xiph.org j at svn.xiph.org
Thu Apr 12 14:49:45 PDT 2007


Author: j
Date: 2007-04-12 14:49:43 -0700 (Thu, 12 Apr 2007)
New Revision: 12857

Modified:
   trunk/theora/lib/cpu.c
   trunk/theora/lib/cpu.h
   trunk/theora/lib/dec/apiwrapper.c
   trunk/theora/lib/dec/dct.h
   trunk/theora/lib/dec/decinfo.c
   trunk/theora/lib/dec/decint.h
   trunk/theora/lib/dec/decode.c
   trunk/theora/lib/dec/dequant.c
   trunk/theora/lib/dec/dequant.h
   trunk/theora/lib/dec/enquant.h
   trunk/theora/lib/dec/fragment.c
   trunk/theora/lib/dec/huffdec.c
   trunk/theora/lib/dec/huffdec.h
   trunk/theora/lib/dec/huffman.h
   trunk/theora/lib/dec/idct.c
   trunk/theora/lib/dec/idct.h
   trunk/theora/lib/dec/info.c
   trunk/theora/lib/dec/internal.c
   trunk/theora/lib/dec/ocintrin.h
   trunk/theora/lib/dec/quant.c
   trunk/theora/lib/dec/quant.h
   trunk/theora/lib/dec/state.c
   trunk/theora/lib/dec/x86/mmxfrag.c
   trunk/theora/lib/dec/x86/mmxidct.c
   trunk/theora/lib/dec/x86/mmxstate.c
   trunk/theora/lib/dec/x86/x86int.h
   trunk/theora/lib/dec/x86/x86state.c
   trunk/theora/lib/enc/x86_32/dct_decode_mmx.c
   trunk/theora/lib/enc/x86_32/fdct_mmx.c
   trunk/theora/lib/enc/x86_32/idct_mmx.c
   trunk/theora/lib/enc/x86_64/dct_decode_mmx.c
   trunk/theora/lib/enc/x86_64/idct_mmx.c
   trunk/theora/lib/internal.h
Log:
more copyright headers and set Id property


Property changes on: trunk/theora/lib/cpu.c
___________________________________________________________________
Name: svn:keywords
   + Id


Property changes on: trunk/theora/lib/cpu.h
___________________________________________________________________
Name: svn:keywords
   + Id


Property changes on: trunk/theora/lib/dec/apiwrapper.c
___________________________________________________________________
Name: svn:keywords
   + Id


Property changes on: trunk/theora/lib/dec/dct.h
___________________________________________________________________
Name: svn:keywords
   + Id


Property changes on: trunk/theora/lib/dec/decinfo.c
___________________________________________________________________
Name: svn:keywords
   + Id


Property changes on: trunk/theora/lib/dec/decint.h
___________________________________________________________________
Name: svn:keywords
   + Id


Property changes on: trunk/theora/lib/dec/decode.c
___________________________________________________________________
Name: svn:keywords
   + Id


Property changes on: trunk/theora/lib/dec/dequant.c
___________________________________________________________________
Name: svn:keywords
   + Id


Property changes on: trunk/theora/lib/dec/dequant.h
___________________________________________________________________
Name: svn:keywords
   + Id


Property changes on: trunk/theora/lib/dec/enquant.h
___________________________________________________________________
Name: svn:keywords
   + Id


Property changes on: trunk/theora/lib/dec/fragment.c
___________________________________________________________________
Name: svn:keywords
   + Id


Property changes on: trunk/theora/lib/dec/huffdec.c
___________________________________________________________________
Name: svn:keywords
   + Id


Property changes on: trunk/theora/lib/dec/huffdec.h
___________________________________________________________________
Name: svn:keywords
   + Id


Property changes on: trunk/theora/lib/dec/huffman.h
___________________________________________________________________
Name: svn:keywords
   + Id


Property changes on: trunk/theora/lib/dec/idct.c
___________________________________________________________________
Name: svn:keywords
   + Id


Property changes on: trunk/theora/lib/dec/idct.h
___________________________________________________________________
Name: svn:keywords
   + Id


Property changes on: trunk/theora/lib/dec/info.c
___________________________________________________________________
Name: svn:keywords
   + Id


Property changes on: trunk/theora/lib/dec/internal.c
___________________________________________________________________
Name: svn:keywords
   + Id


Property changes on: trunk/theora/lib/dec/ocintrin.h
___________________________________________________________________
Name: svn:keywords
   + Id


Property changes on: trunk/theora/lib/dec/quant.c
___________________________________________________________________
Name: svn:keywords
   + Id


Property changes on: trunk/theora/lib/dec/quant.h
___________________________________________________________________
Name: svn:keywords
   + Id


Property changes on: trunk/theora/lib/dec/state.c
___________________________________________________________________
Name: svn:keywords
   + Id

Modified: trunk/theora/lib/dec/x86/mmxfrag.c
===================================================================
--- trunk/theora/lib/dec/x86/mmxfrag.c	2007-04-12 19:27:43 UTC (rev 12856)
+++ trunk/theora/lib/dec/x86/mmxfrag.c	2007-04-12 21:49:43 UTC (rev 12857)
@@ -9,7 +9,12 @@
  * by the Xiph.Org Foundation http://www.xiph.org/                  *
  *                                                                  *
  ********************************************************************
-*/
+
+  function:
+    last mod: $Id$
+
+ ********************************************************************/
+
 /*MMX acceleration of fragment reconstruction for motion compensation.
   Originally written by Rudolf Marek.*/
 #include "x86int.h"


Property changes on: trunk/theora/lib/dec/x86/mmxfrag.c
___________________________________________________________________
Name: svn:keywords
   + Id

Modified: trunk/theora/lib/dec/x86/mmxidct.c
===================================================================
--- trunk/theora/lib/dec/x86/mmxidct.c	2007-04-12 19:27:43 UTC (rev 12856)
+++ trunk/theora/lib/dec/x86/mmxidct.c	2007-04-12 21:49:43 UTC (rev 12857)
@@ -1,3 +1,20 @@
+/********************************************************************
+ *                                                                  *
+ * THIS FILE IS PART OF THE OggTheora SOFTWARE CODEC SOURCE CODE.   *
+ * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS     *
+ * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
+ * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING.       *
+ *                                                                  *
+ * THE Theora SOURCE CODE IS COPYRIGHT (C) 2002-2003                *
+ * by the Xiph.Org Foundation http://www.xiph.org/                  *
+ *                                                                  *
+ ********************************************************************
+
+  function:
+    last mod: $Id$
+
+ ********************************************************************/
+
 /*MMX acceleration of Theora's iDCT.
   Originally written by Rudolf Marek, based on code from On2's VP3.*/
 #include <ogg/ogg.h>


Property changes on: trunk/theora/lib/dec/x86/mmxidct.c
___________________________________________________________________
Name: svn:keywords
   + Id

Modified: trunk/theora/lib/dec/x86/mmxstate.c
===================================================================
--- trunk/theora/lib/dec/x86/mmxstate.c	2007-04-12 19:27:43 UTC (rev 12856)
+++ trunk/theora/lib/dec/x86/mmxstate.c	2007-04-12 21:49:43 UTC (rev 12857)
@@ -9,7 +9,12 @@
  * by the Xiph.Org Foundation http://www.xiph.org/                  *
  *                                                                  *
  ********************************************************************
-*/
+
+  function:
+    last mod: $Id$
+
+ ********************************************************************/
+
 /*MMX acceleration of complete fragment reconstruction algorithm.
   Originally written by Rudolf Marek.*/
 #include "x86int.h"


Property changes on: trunk/theora/lib/dec/x86/mmxstate.c
___________________________________________________________________
Name: svn:keywords
   + Id

Modified: trunk/theora/lib/dec/x86/x86int.h
===================================================================
--- trunk/theora/lib/dec/x86/x86int.h	2007-04-12 19:27:43 UTC (rev 12856)
+++ trunk/theora/lib/dec/x86/x86int.h	2007-04-12 21:49:43 UTC (rev 12857)
@@ -1,3 +1,20 @@
+/********************************************************************
+ *                                                                  *
+ * THIS FILE IS PART OF THE OggTheora SOFTWARE CODEC SOURCE CODE.   *
+ * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS     *
+ * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
+ * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING.       *
+ *                                                                  *
+ * THE Theora SOURCE CODE IS COPYRIGHT (C) 2002-2003                *
+ * by the Xiph.Org Foundation http://www.xiph.org/                  *
+ *                                                                  *
+ ********************************************************************
+
+  function:
+    last mod: $Id$
+
+ ********************************************************************/
+
 #if !defined(_x86_x86int_H)
 # define _x86_x86int_H (1)
 # include "internal.h"


Property changes on: trunk/theora/lib/dec/x86/x86int.h
___________________________________________________________________
Name: svn:keywords
   + Id

Modified: trunk/theora/lib/dec/x86/x86state.c
===================================================================
--- trunk/theora/lib/dec/x86/x86state.c	2007-04-12 19:27:43 UTC (rev 12856)
+++ trunk/theora/lib/dec/x86/x86state.c	2007-04-12 21:49:43 UTC (rev 12857)
@@ -1,3 +1,20 @@
+/********************************************************************
+ *                                                                  *
+ * THIS FILE IS PART OF THE OggTheora SOFTWARE CODEC SOURCE CODE.   *
+ * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS     *
+ * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
+ * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING.       *
+ *                                                                  *
+ * THE Theora SOURCE CODE IS COPYRIGHT (C) 2002-2003                *
+ * by the Xiph.Org Foundation http://www.xiph.org/                  *
+ *                                                                  *
+ ********************************************************************
+
+  function:
+    last mod: $Id$
+
+ ********************************************************************/
+
 #include "x86int.h"
 
 #if defined(USE_ASM)


Property changes on: trunk/theora/lib/dec/x86/x86state.c
___________________________________________________________________
Name: svn:keywords
   + Id

Modified: trunk/theora/lib/enc/x86_32/dct_decode_mmx.c
===================================================================
--- trunk/theora/lib/enc/x86_32/dct_decode_mmx.c	2007-04-12 19:27:43 UTC (rev 12856)
+++ trunk/theora/lib/enc/x86_32/dct_decode_mmx.c	2007-04-12 21:49:43 UTC (rev 12857)
@@ -11,7 +11,7 @@
  ********************************************************************
 
   function:
-  last mod: $Id: dct_decode_mmx.c 12440 2007-02-06 16:36:26Z j $
+  last mod: $Id$
 
  ********************************************************************/
 


Property changes on: trunk/theora/lib/enc/x86_32/dct_decode_mmx.c
___________________________________________________________________
Name: svn:keywords
   + Id

Modified: trunk/theora/lib/enc/x86_32/fdct_mmx.c
===================================================================
--- trunk/theora/lib/enc/x86_32/fdct_mmx.c	2007-04-12 19:27:43 UTC (rev 12856)
+++ trunk/theora/lib/enc/x86_32/fdct_mmx.c	2007-04-12 21:49:43 UTC (rev 12857)
@@ -5,13 +5,17 @@
  * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
  * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING.       *
  *                                                                  *
- * THE Theora SOURCE CODE IS COPYRIGHT (C) 1999-2001                *
+ * THE Theora SOURCE CODE IS COPYRIGHT (C) 2002-2003                *
  * by the Xiph.Org Foundation http://www.xiph.org/                  *
  *                                                                  *
+ ********************************************************************
+
+  function:
+    last mod: $Id$
+
  ********************************************************************/
 
 /* mmx fdct implementation */
-/* $Id$ */
 
 #include "theora/theora.h"
 #include "codec_internal.h"

Modified: trunk/theora/lib/enc/x86_32/idct_mmx.c
===================================================================
--- trunk/theora/lib/enc/x86_32/idct_mmx.c	2007-04-12 19:27:43 UTC (rev 12856)
+++ trunk/theora/lib/enc/x86_32/idct_mmx.c	2007-04-12 21:49:43 UTC (rev 12857)
@@ -11,7 +11,7 @@
  ********************************************************************
 
   function:
-  last mod: $Id: dsp_mmx.c 12440 2007-02-06 16:36:26Z j $
+  last mod: $Id$
 
  ********************************************************************/
 


Property changes on: trunk/theora/lib/enc/x86_32/idct_mmx.c
___________________________________________________________________
Name: svn:keywords
   + Id

Modified: trunk/theora/lib/enc/x86_64/dct_decode_mmx.c
===================================================================
--- trunk/theora/lib/enc/x86_64/dct_decode_mmx.c	2007-04-12 19:27:43 UTC (rev 12856)
+++ trunk/theora/lib/enc/x86_64/dct_decode_mmx.c	2007-04-12 21:49:43 UTC (rev 12857)
@@ -11,7 +11,7 @@
  ********************************************************************
 
   function:
-  last mod: $Id: dsp_mmx.c 12440 2007-02-06 16:36:26Z j $
+  last mod: $Id$
 
  ********************************************************************/
 


Property changes on: trunk/theora/lib/enc/x86_64/dct_decode_mmx.c
___________________________________________________________________
Name: svn:keywords
   + Id

Modified: trunk/theora/lib/enc/x86_64/idct_mmx.c
===================================================================
--- trunk/theora/lib/enc/x86_64/idct_mmx.c	2007-04-12 19:27:43 UTC (rev 12856)
+++ trunk/theora/lib/enc/x86_64/idct_mmx.c	2007-04-12 21:49:43 UTC (rev 12857)
@@ -11,7 +11,7 @@
  ********************************************************************
 
   function:
-  last mod: $Id: dsp_mmx.c 12440 2007-02-06 16:36:26Z j $
+  last mod: $Id$
 
  ********************************************************************/
 


Property changes on: trunk/theora/lib/enc/x86_64/idct_mmx.c
___________________________________________________________________
Name: svn:keywords
   + Id


Property changes on: trunk/theora/lib/internal.h
___________________________________________________________________
Name: svn:keywords
   + Id



More information about the commits mailing list