[xiph-commits] r14933 - in trunk/vorbis-tools: . oggenc

ivo at svn.xiph.org ivo at svn.xiph.org
Tue May 20 07:35:22 PDT 2008


Author: ivo
Date: 2008-05-20 07:35:21 -0700 (Tue, 20 May 2008)
New Revision: 14933

Modified:
   trunk/vorbis-tools/CHANGES
   trunk/vorbis-tools/oggenc/oggenc.c
Log:
Fixed a typo that managed to get through in oggenc's Skeleton handling routine.  Thanks ogg.k.ogg.k.

Modified: trunk/vorbis-tools/CHANGES
===================================================================
--- trunk/vorbis-tools/CHANGES	2008-05-20 11:37:04 UTC (rev 14932)
+++ trunk/vorbis-tools/CHANGES	2008-05-20 14:35:21 UTC (rev 14933)
@@ -4,12 +4,13 @@
 * Corrected problems in the Visual Studio project files
 * ogg123: backported fix from libfishsound to patch the Speex decoder (#1347)
 * oggenc: fixed a core dump while resampling from FLAC (#1316)
+* oggenc: fixed a typo in the Skeleton handling routine
 * ogginfo: support for information in Kate streams (#1360)
 
 vorbis-tools 1.2.0 -- 2008-02-21
 
  * FLAC support now relies on libFLAC
- * Support for large files
+ * Support for large files (#879)
  * Fixed acinclude.m4 to properly support --no switches
  * ogg123: added remote control support (#1109)
  * ogg123: fixed a bug in esd when pressing CTRL + C (#715)

Modified: trunk/vorbis-tools/oggenc/oggenc.c
===================================================================
--- trunk/vorbis-tools/oggenc/oggenc.c	2008-05-20 11:37:04 UTC (rev 14932)
+++ trunk/vorbis-tools/oggenc/oggenc.c	2008-05-20 14:35:21 UTC (rev 14933)
@@ -607,7 +607,7 @@
         switch(ret)
         {
             case 0:
-                if(!strcmp(long_options[option_index].name, "skleton")) {
+                if(!strcmp(long_options[option_index].name, "skeleton")) {
                     opt->with_skeleton = 1;
                 }
                 else if(!strcmp(long_options[option_index].name, "managed")) {



More information about the commits mailing list