[xiph-commits] r14333 - trunk/vorbis-tools/ogginfo
j at svn.xiph.org
j at svn.xiph.org
Sun Dec 30 01:18:33 PST 2007
Author: j
Date: 2007-12-30 01:18:31 -0800 (Sun, 30 Dec 2007)
New Revision: 14333
Modified:
trunk/vorbis-tools/ogginfo/ogginfo2.c
Log:
identify skeleton streams
Modified: trunk/vorbis-tools/ogginfo/ogginfo2.c
===================================================================
--- trunk/vorbis-tools/ogginfo/ogginfo2.c 2007-12-30 05:32:09 UTC (rev 14332)
+++ trunk/vorbis-tools/ogginfo/ogginfo2.c 2007-12-30 09:18:31 UTC (rev 14333)
@@ -806,6 +806,8 @@
other_start(stream, "FLAC");
else if(packet.bytes >= 8 && memcmp(packet.packet, "Speex ", 8)==0)
other_start(stream, "speex");
+ else if(packet.bytes >= 8 && memcmp(packet.packet, "fishead\0", 8)==0)
+ other_start(stream, "skeleton");
else
other_start(stream, NULL);
More information about the commits
mailing list