[xiph-commits] r14424 - trunk/vorbis-tools/ogginfo

j at svn.xiph.org j at svn.xiph.org
Tue Jan 22 13:24:15 PST 2008


Author: j
Date: 2008-01-22 13:24:15 -0800 (Tue, 22 Jan 2008)
New Revision: 14424

Modified:
   trunk/vorbis-tools/ogginfo/ogginfo2.c
Log:
get to know Ogg Dirac Streams, KW-DIRAC as per http://wiki.xiph.org/index.php/Dirac

Modified: trunk/vorbis-tools/ogginfo/ogginfo2.c
===================================================================
--- trunk/vorbis-tools/ogginfo/ogginfo2.c	2008-01-21 05:28:06 UTC (rev 14423)
+++ trunk/vorbis-tools/ogginfo/ogginfo2.c	2008-01-22 21:24:15 UTC (rev 14424)
@@ -808,6 +808,8 @@
             other_start(stream, "speex");
         else if(packet.bytes >= 8 && memcmp(packet.packet, "fishead\0", 8)==0) 
             other_start(stream, "skeleton");
+        else if(packet.bytes >= 4 && memcmp(packet.packet, "KW-DIRAC", 8)==0) 
+            other_start(stream, "Dirac");
         else
             other_start(stream, NULL);
 



More information about the commits mailing list