[xiph-commits] r18298 - trunk/spectrum

xiphmont at svn.xiph.org xiphmont at svn.xiph.org
Sun May 20 22:25:19 PDT 2012


Author: xiphmont
Date: 2012-05-20 22:25:19 -0700 (Sun, 20 May 2012)
New Revision: 18298

Modified:
   trunk/spectrum/analyzer.h
   trunk/spectrum/io.c
   trunk/spectrum/io.h
   trunk/spectrum/spec_panel.c
   trunk/spectrum/spec_plot.c
   trunk/spectrum/spec_plot.h
   trunk/spectrum/spec_process.c
   trunk/spectrum/spectrum.c
   trunk/spectrum/wave_panel.c
   trunk/spectrum/wave_plot.c
   trunk/spectrum/wave_plot.h
   trunk/spectrum/wave_process.c
   trunk/spectrum/waveform.c
   trunk/spectrum/waveform.h
Log:
Update copyrights



Modified: trunk/spectrum/analyzer.h
===================================================================
--- trunk/spectrum/analyzer.h	2012-05-18 17:33:17 UTC (rev 18297)
+++ trunk/spectrum/analyzer.h	2012-05-21 05:25:19 UTC (rev 18298)
@@ -2,7 +2,7 @@
  *
  *  gtk2 spectrum analyzer
  *    
- *      Copyright (C) 2004 Monty
+ *      Copyright \(C\) 2004-2012 Monty
  *
  *  This analyzer is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by

Modified: trunk/spectrum/io.c
===================================================================
--- trunk/spectrum/io.c	2012-05-18 17:33:17 UTC (rev 18297)
+++ trunk/spectrum/io.c	2012-05-21 05:25:19 UTC (rev 18298)
@@ -2,7 +2,7 @@
  *
  *  gtk2 spectrum analyzer
  *    
- *      Copyright (C) 2004 Monty
+ *      Copyright \(C\) 2004-2012 Monty
  *
  *  This analyzer is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by

Modified: trunk/spectrum/io.h
===================================================================
--- trunk/spectrum/io.h	2012-05-18 17:33:17 UTC (rev 18297)
+++ trunk/spectrum/io.h	2012-05-21 05:25:19 UTC (rev 18298)
@@ -2,7 +2,7 @@
  *
  *  gtk2 spectrum analyzer
  *    
- *      Copyright (C) 2004 Monty
+ *      Copyright \(C\) 2004-2012 Monty
  *
  *  This analyzer is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by

Modified: trunk/spectrum/spec_panel.c
===================================================================
--- trunk/spectrum/spec_panel.c	2012-05-18 17:33:17 UTC (rev 18297)
+++ trunk/spectrum/spec_panel.c	2012-05-21 05:25:19 UTC (rev 18298)
@@ -1,19 +1,19 @@
 /*
  *
  *  gtk2 spectrum analyzer
- *    
- *      Copyright (C) 2004 Monty
  *
+ *      Copyright \(C\) 2004-2012 Monty
+ *
  *  This analyzer 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, or (at your option)
  *  any later version.
- *   
+ *
  *  The analyzer 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 Postfish; see the file COPYING.  If not, write to the
  *  Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
@@ -735,7 +735,7 @@
   /* mode */
   {
     GtkWidget *menu=gtk_combo_box_new_text();
-    char *entries[]={"realtime","maximum","accumulate","average"};
+    char *entries[]={"current frame","maximum","accumulate","average"};
     for(i=0;i<4;i++)
       gtk_combo_box_append_text (GTK_COMBO_BOX (menu), entries[i]);
     gtk_combo_box_set_active(GTK_COMBO_BOX(menu),plot_mode);

Modified: trunk/spectrum/spec_plot.c
===================================================================
--- trunk/spectrum/spec_plot.c	2012-05-18 17:33:17 UTC (rev 18297)
+++ trunk/spectrum/spec_plot.c	2012-05-21 05:25:19 UTC (rev 18298)
@@ -2,7 +2,7 @@
  *
  *  gtk2 spectrum analyzer
  *
- *      Copyright (C) 2004 Monty
+ *      Copyright \(C\) 2004-2012 Monty
  *
  *  This analyzer is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by

Modified: trunk/spectrum/spec_plot.h
===================================================================
--- trunk/spectrum/spec_plot.h	2012-05-18 17:33:17 UTC (rev 18297)
+++ trunk/spectrum/spec_plot.h	2012-05-21 05:25:19 UTC (rev 18298)
@@ -2,7 +2,7 @@
  *
  *  gtk2 spectrum analyzer
  *    
- *      Copyright (C) 2004 Monty
+ *      Copyright \(C\) 2004-2012 Monty
  *
  *  This analyzer is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by

Modified: trunk/spectrum/spec_process.c
===================================================================
--- trunk/spectrum/spec_process.c	2012-05-18 17:33:17 UTC (rev 18297)
+++ trunk/spectrum/spec_process.c	2012-05-21 05:25:19 UTC (rev 18298)
@@ -2,7 +2,7 @@
  *
  *  gtk2 spectrum analyzer
  *    
- *      Copyright (C) 2004 Monty
+ *      Copyright \(C\) 2004-2012 Monty
  *
  *  This analyzer is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by

Modified: trunk/spectrum/spectrum.c
===================================================================
--- trunk/spectrum/spectrum.c	2012-05-18 17:33:17 UTC (rev 18297)
+++ trunk/spectrum/spectrum.c	2012-05-21 05:25:19 UTC (rev 18298)
@@ -2,7 +2,7 @@
  *
  *  gtk2 spectrum analyzer
  *    
- *      Copyright (C) 2004 Monty
+ *      Copyright \(C\) 2004-2012 Monty
  *
  *  This analyzer is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by

Modified: trunk/spectrum/wave_panel.c
===================================================================
--- trunk/spectrum/wave_panel.c	2012-05-18 17:33:17 UTC (rev 18297)
+++ trunk/spectrum/wave_panel.c	2012-05-21 05:25:19 UTC (rev 18298)
@@ -2,7 +2,7 @@
  *
  *  gtk2 waveform viewer
  *    
- *      Copyright (C) 2004 Monty
+ *      Copyright \(C\) 2004-2012 Monty
  *
  *  This analyzer is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by

Modified: trunk/spectrum/wave_plot.c
===================================================================
--- trunk/spectrum/wave_plot.c	2012-05-18 17:33:17 UTC (rev 18297)
+++ trunk/spectrum/wave_plot.c	2012-05-21 05:25:19 UTC (rev 18298)
@@ -2,7 +2,7 @@
  *
  *  gtk2 waveform viewer
  *    
- *      Copyright (C) 2004 Monty
+ *      Copyright \(C\) 2004-2012 Monty
  *
  *  This analyzer is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by

Modified: trunk/spectrum/wave_plot.h
===================================================================
--- trunk/spectrum/wave_plot.h	2012-05-18 17:33:17 UTC (rev 18297)
+++ trunk/spectrum/wave_plot.h	2012-05-21 05:25:19 UTC (rev 18298)
@@ -2,7 +2,7 @@
  *
  *  gtk2 waveform viewer
  *    
- *      Copyright (C) 2004 Monty
+ *      Copyright \(C\) 2004-2012 Monty
  *
  *  This analyzer is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by

Modified: trunk/spectrum/wave_process.c
===================================================================
--- trunk/spectrum/wave_process.c	2012-05-18 17:33:17 UTC (rev 18297)
+++ trunk/spectrum/wave_process.c	2012-05-21 05:25:19 UTC (rev 18298)
@@ -2,7 +2,7 @@
  *
  *  gtk2 waveform viewer
  *    
- *      Copyright (C) 2004 Monty
+ *      Copyright \(C\) 2004-2012 Monty
  *
  *  This analyzer is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by

Modified: trunk/spectrum/waveform.c
===================================================================
--- trunk/spectrum/waveform.c	2012-05-18 17:33:17 UTC (rev 18297)
+++ trunk/spectrum/waveform.c	2012-05-21 05:25:19 UTC (rev 18298)
@@ -2,7 +2,7 @@
  *
  *  gtk2 waveform viewer
  *    
- *      Copyright (C) 2004 Monty
+ *      Copyright \(C\) 2004-2012 Monty
  *
  *  This analyzer is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by

Modified: trunk/spectrum/waveform.h
===================================================================
--- trunk/spectrum/waveform.h	2012-05-18 17:33:17 UTC (rev 18297)
+++ trunk/spectrum/waveform.h	2012-05-21 05:25:19 UTC (rev 18298)
@@ -2,7 +2,7 @@
  *
  *  gtk2 spectrum analyzer
  *    
- *      Copyright (C) 2004 Monty
+ *      Copyright \(C\) 2004-2012 Monty
  *
  *  This analyzer is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by



More information about the commits mailing list