Huffbuild was writing the wrong copyright notice
authorMonty <xiphmont@xiph.org>
Mon, 17 Dec 2001 00:19:25 +0000 (00:19 +0000)
committerMonty <xiphmont@xiph.org>
Mon, 17 Dec 2001 00:19:25 +0000 (00:19 +0000)
svn path=/trunk/vorbis/; revision=2624

vq/huffbuild.c

index 28e106d..480bd99 100644 (file)
@@ -11,7 +11,7 @@
  ********************************************************************
 
  function: hufftree builder
- last mod: $Id: huffbuild.c,v 1.10 2001/06/04 05:50:12 xiphmont Exp $
+ last mod: $Id: huffbuild.c,v 1.11 2001/12/17 00:19:25 xiphmont Exp $
 
  ********************************************************************/
 
@@ -161,18 +161,17 @@ int main(int argc, char *argv[]){
     }
     
     fprintf(file,
- "/********************************************************************\n"
- " *                                                                  *\n"
- " * THIS FILE IS PART OF THE Ogg Vorbis SOFTWARE CODEC SOURCE CODE.  *\n"
- " * USE, DISTRIBUTION AND REPRODUCTION OF THIS SOURCE IS GOVERNED BY *\n"
- " * THE GNU PUBLIC LICENSE 2, WHICH IS INCLUDED WITH THIS SOURCE.    *\n"
- " * PLEASE READ THESE TERMS DISTRIBUTING.                            *\n"
- " *                                                                  *\n"
- " * THE OggSQUISH SOURCE CODE IS (C) COPYRIGHT 1994-1999             *\n"
- " * by 1999 Monty <monty@xiph.org> and The XIPHOPHORUS Company       *\n"
- " * http://www.xiph.org/                                             *\n"
- " *                                                                  *\n"
- " ********************************************************************\n"
+  "/********************************************************************\n"
+  " *                                                                  *\n"
+  " * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE.   *\n"
+  " * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS     *\n"
+  " * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *\n"
+  " * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING.       *\n"
+  " *                                                                  *\n"
+  " * THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2001             *\n"
+  " * by the XIPHOPHORUS Company http://www.xiph.org/                  *\n"
+  " *                                                                  *\n"
+  " ********************************************************************\n"
  "\n"
  " function: static codebook autogenerated by huff/huffbuld\n"
  "\n"
@@ -198,6 +197,8 @@ int main(int argc, char *argv[]){
     fprintf(file,"\t_huff_lengthlist_%s,\n",base);
     fprintf(file,"\t0, 0, 0, 0, 0,\n");
     fprintf(file,"\tNULL,\n");
+
+    fprintf(file,"\tNULL,\n");
     fprintf(file,"\tNULL,\n");
     fprintf(file,"\tNULL,\n");
     fprintf(file,"\t0\n};\n\n");
@@ -210,3 +211,12 @@ int main(int argc, char *argv[]){
 }
 
 
+
+
+
+
+
+
+
+
+