[xiph-commits] r7300 - in trunk/oggdsf: src/tools/OOOggCommentDump
illiminable at dactyl.lonelymoon.com
illiminable
Fri Jul 23 22:18:02 PDT 2004
website
Message-ID: <20040724051802.3D3C79AAAB at dactyl.lonelymoon.com>
Author: illiminable
Date: Fri Jul 23 22:18:02 2004
New Revision: 7300
Modified:
trunk/oggdsf/src/tools/OOOggCommentDump/OOOggCommentDump.cpp
trunk/oggdsf/website/index.html
Log:
* Update to the comment dump utility so it grabs theora comments too.
Modified: trunk/oggdsf/src/tools/OOOggCommentDump/OOOggCommentDump.cpp
===================================================================
--- trunk/oggdsf/src/tools/OOOggCommentDump/OOOggCommentDump.cpp 2004-07-24 02:33:47 UTC (rev 7299)
+++ trunk/oggdsf/src/tools/OOOggCommentDump/OOOggCommentDump.cpp 2004-07-24 05:17:59 UTC (rev 7300)
@@ -56,7 +56,13 @@
//Comment Packet
bool locIsOK = gComments.parseOggPacket(locPacket, 7);
+ cout<<"Vorbis Comments"<<endl;
cout<<gComments.toString();
+ } else if ((strncmp((char*)locPacket->packetData(), "\201theora", 7)) == 0) {
+ bool locIsOK = gComments.parseOggPacket(locPacket, 7);
+ cout<<"Theora Comments"<<endl;
+ cout<<gComments.toString();
+
}
}
Modified: trunk/oggdsf/website/index.html
===================================================================
--- trunk/oggdsf/website/index.html 2004-07-24 02:33:47 UTC (rev 7299)
+++ trunk/oggdsf/website/index.html 2004-07-24 05:17:59 UTC (rev 7300)
@@ -65,6 +65,7 @@
<br>
<b><u>Known issues.</u></b><br>
+ <li>Seeking very close to the end of speex or vorbis files, causes all audio to cease, requiring stop/play to resolve. Particularly noticable in small files, seems roughly 5 secs from end where this occurs.</li>
<li>There is no way to alter the audio encoding parameters, vorbis defaults to quality 0.3</li>
<li>Seeking in theora occasionally seg faults</li>
<li>Duration is wrong for all files except speex, vorbis and theora... doesn't affect playback</li>
More information about the commits
mailing list