<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.xiph.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=1145380866</id>
	<title>XiphWiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.xiph.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=1145380866"/>
	<link rel="alternate" type="text/html" href="https://wiki.xiph.org/Special:Contributions/1145380866"/>
	<updated>2026-05-20T23:13:22Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.45.1</generator>
	<entry>
		<id>https://wiki.xiph.org/index.php?title=OggComponent/VorbisComponent&amp;diff=4729</id>
		<title>OggComponent/VorbisComponent</title>
		<link rel="alternate" type="text/html" href="https://wiki.xiph.org/index.php?title=OggComponent/VorbisComponent&amp;diff=4729"/>
		<updated>2006-04-18T18:02:16Z</updated>

		<summary type="html">&lt;p&gt;1145380866: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Integrating Ogg into Mac OS X ==&lt;br /&gt;
&lt;br /&gt;
Warning: this project is in study/design stage.&lt;br /&gt;
&lt;br /&gt;
=== Introduction ===&lt;br /&gt;
The aim of this project is to integrate the [[Ogg]] Format and [[Vorbis]] Codec into [[Wikipedia:Mac OS X|Mac OS X]] with the end result of making the Format and Codec available for use by any of the System&#039;s sound applications.&lt;br /&gt;
&lt;br /&gt;
The work consists of two main parts.&lt;br /&gt;
* The Audio File Format should be recognised&lt;br /&gt;
* The Sound should be coded/decodec.&lt;br /&gt;
&lt;br /&gt;
To do such tasks, the new Core Audio API will be used.&lt;br /&gt;
&lt;br /&gt;
The first part would consist of the creation of an [http://developer.apple.com/documentation/MusicAudio/Reference/CAAudioTooboxRef/AudioFileComponent/CompositePage.html AudioFileComponent]. That component has to implement the AudioFileComponentBase AudioFileFormat and AudiofileObject classes. The example on CoreAudio/AudioFile is a good starting point. It implements a rawAudio file reader/writer. The OGG part of ogg-vorbis should go here. The streaming support go here too.&lt;br /&gt;
&lt;br /&gt;
The second part is the codec support. To support Vorbis, the creation of a [http://developer.apple.com/documentation/MusicAudio/Reference/CoreAudio/audiocodec/chapter_3_section_1.html#//apple_ref/doc/uid/TP30001108-CH204 AudioCodec] is needed. The example on CoreAudio/AudioCodecs is a good starting point too. It implements an IMA4 codec. No file format is implied here. So, there should be a glue ( that I haven&#039;t discovered yet ) from the AudioFileComponent API to know that contained data is Vorbis and launches the correct AudioCodec. In fact, AudioFile class contains a ReadHeader() method that allows to discover what kind of data the file contains, and then create an Audio Input Stream Format Description that determine the type of data, and codec to use.&lt;br /&gt;
&lt;br /&gt;
Finally, for the rest of Ogg Codecs, just the second part is needed.&lt;br /&gt;
&lt;br /&gt;
NOTE: This is not sufficient for full OS X support.  Many if not most OS X applications (iTunes, for example) use [[Wikipedia:QuickTime|QuickTime]] APIs for playback and encoding of media files.  Quicktime does not use the Core Audio components (yet).  If we want to support those applications it will be necessary to also create two Quicktime Components.  We would need a Movie Import component and a Movie Export component (codes &#039;eat &#039; and &#039;spit&#039;).  It has been suggested that some time in the future Quicktime will use Core Audio components if they exist, but it is not known when that will happen.  In any case, the Quicktime components will still be necessary for Theora support and may even be necessary for multi-link Vorbis files as well.&lt;br /&gt;
&lt;br /&gt;
Example code for building Quicktime components can be found [http://developer.apple.com/samplecode/ElectricImageComponent/ElectricImageComponent.html at Apple&#039;s Developer Connection website].&lt;br /&gt;
&lt;br /&gt;
Work in progress...&lt;br /&gt;
&lt;br /&gt;
=== Related Work ===&lt;br /&gt;
These projects were broken by the upgrade to Quicktime 7.&lt;br /&gt;
* [http://qtcomponents.sf.net The SourceForge Quicktime Components project]&lt;br /&gt;
* [http://damien.drix.free.fr/qtflac/ Quicktime components for FLAC]&lt;br /&gt;
&lt;br /&gt;
=== Resources ===&lt;br /&gt;
* [http://www.annodex.net/software/libfishsound/ libfishsound:] A callback-based wrapper for vorbis and speex libraries.  This may be a much better match to the callback-based AudioCodec API than libvorbis.&lt;br /&gt;
* [[Quicktime and GDB]]: Info on debugging quicktime components with GDB.&lt;br /&gt;
* [http://sourceforge.net/tracker/index.php?func=detail&amp;amp;aid=1144430&amp;amp;group_id=41359&amp;amp;atid=430388 A useful bug report] filed against qtcomponents.&lt;br /&gt;
&lt;br /&gt;
=== News ===&lt;br /&gt;
&#039;&#039;&#039;Oct 3, 2005&#039;&#039;&#039;: The QTComponent has been further updated. Get it from http://zskl.zsk.p.lodz.pl/~skali/oggvorbis.html&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Sep 19, 2005&#039;&#039;&#039;: It looks like somebody [http://sourceforge.net/forum/forum.php?thread_id=1353547&amp;amp;forum_id=135636 has fixed] the qtcomponents code enough to get ogg vorbis playback working again.  However, there are still several issues, and it would still be a good idea to work on a Core Audio-based codec.&lt;br /&gt;
&lt;br /&gt;
==== Old News ====&lt;br /&gt;
Good news!  It turns out that the eat/spit components from the [http://qtcomponents.sf.net SourceForge Quicktime Components project] were &#039;&#039;&#039;not&#039;&#039;&#039; broken by the upgrade to Quicktime 7.  It&#039;s just the Sound Manager-based sound decompressor component (code &#039;sdec&#039;) that needs to be updated to an AudioCodec.  This &#039;&#039;&#039;greatly&#039;&#039;&#039; reduces the required work, since the AudioCodec API is quite simple compared to the Quicktime component API.&lt;br /&gt;
&lt;br /&gt;
See [http://lists.apple.com/archives/QuickTime-API/2005/Sep/msg00126.html this message] in the quicktime-api mailing list archives for details.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div  style=&amp;quot;display:none&amp;quot;&amp;gt;&lt;br /&gt;
[We are delicate. We do not delete your content.]&lt;br /&gt;
[l_sp979]&lt;br /&gt;
[http://sitepalace.com/indoortanningbeds/ indoor tanning beds]&lt;br /&gt;
[http://sitepalace.com/cleo/daybedcomfortersets/ daybed comforter sets]&lt;br /&gt;
[http://sitepalace.com/cleo/southwesternbedding/ southwestern bedding]&lt;br /&gt;
[http://sitepalace.com/cleo/leathersectionalsofa/ leather sectional sofa]&lt;br /&gt;
[http://home.graffiti.net/thomasville_bedding/ thomasville bedding]&lt;br /&gt;
[http://home.graffiti.net/naturalizer_shoes/ naturalizer shoes]&lt;br /&gt;
[http://home.graffiti.net/designer_dog_beds/ designer dog beds]&lt;br /&gt;
[http://mujweb.cz/www/k1visa/ k1 visa]&lt;br /&gt;
[http://mujweb.cz/www/k1visa/fiancee-visa/ fiancee visa]&lt;br /&gt;
[http://rivotril.google.if.ua rivotril]&lt;br /&gt;
[http://republika.pl/cleo06/cingular-ringtone.htm cingular ringtone]&lt;br /&gt;
[http://republika.pl/cleo06/nail-fungus.htm nail fungus]&lt;br /&gt;
[http://republika.pl/cleo06/bridesmaid-dress.htm bridesmaid dress]&lt;br /&gt;
[http://republika.pl/cleo06/formal-prom-dresses.htm formal prom dresses]&lt;br /&gt;
[http://republika.pl/cleo06/bcbg-shoes.htm bcbg shoes]&lt;br /&gt;
[http://mysite.com.ua/xdem8200/pagesxdem8200/1_1.html tramadol hcl]&lt;br /&gt;
[http://mywebpage.netscape.com/burochka/cingular-ringtone.htm cingular ringtone]&lt;br /&gt;
[http://mywebpage.netscape.com/burochka/bcbg-shoes.htm bcbg shoes]&lt;br /&gt;
[http://mywebpage.netscape.com/burochka/bridesmaid-dress.htm bridesmaid dress]&lt;br /&gt;
[http://mywebpage.netscape.com/burochka/formal-prom-dresses.htm formal prom dresses]&lt;br /&gt;
[http://mywebpage.netscape.com/burochka/nail-fungus.htm nail fungus]&lt;br /&gt;
[http://www.buddyprofile.com/viewprofile.php?username=tanningbed tanning bed]&lt;br /&gt;
[http://www.buddyprofile.com/viewprofile.php?username=bcbgshoes bcbg shoes]&lt;br /&gt;
[http://www.buddyprofile.com/viewprofile.php?username=naturalizershoes naturalizer shoes]&lt;br /&gt;
[http://www.buddyprofile.com/viewprofile.php?username=leathersectionalsofa leather sectional sofa]&lt;br /&gt;
[http://www.buddyprofile.com/viewprofile.php?username=designerdogbeds designer dog beds]&lt;br /&gt;
[http://www.buddyprofile.com/viewprofile.php?username=heatedmattresspad heated mattress pad]&lt;br /&gt;
[http://www.buddyprofile.com/viewprofile.php?username=bridesmaiddress bridesmaid dress]&lt;br /&gt;
[http://www.buddyprofile.com/viewprofile.php?username=2006promdresses 2006 prom dresses]&lt;br /&gt;
[http://www.buddyprofile.com/viewprofile.php?username=formalpromdresses formal prom dresses]&lt;br /&gt;
[http://www.buddyprofile.com/viewprofile.php?username=sexypromdresses sexy prom dresses]&lt;br /&gt;
[http://www.buddyprofile.com/viewprofile.php?username=cheappromdresses cheap prom dresses]&lt;br /&gt;
[http://www.buddyprofile.com/viewprofile.php?username=nextelringtone nextel ringtone]&lt;br /&gt;
[http://www.buddyprofile.com/viewprofile.php?username=verizonringtones verizon ringtone]&lt;br /&gt;
[http://www.buddyprofile.com/viewprofile.php?username=cingularringtone cingular ringtone]&lt;br /&gt;
[http://www.buddyprofile.com/viewprofile.php?username=freesprintringtone free sprint ringtone]&lt;br /&gt;
[http://www.buddyprofile.com/viewprofile.php?username=freenextelringtone free nextel ringtone]&lt;br /&gt;
[http://dianabol.google.if.ua dianabol]&lt;br /&gt;
[http://tribulus-terrestris.blogs.eurosport.com tribulus terrestris]&lt;br /&gt;
[http://nutrex-lipo-6.blogs.eurosport.com nutrex lipo 6]&lt;br /&gt;
[http://tribex.blogs.eurosport.com Tribex]&lt;br /&gt;
[http://xyience.blogs.eurosport.com Xyience]&lt;br /&gt;
[http://vasopro.blogs.eurosport.com Vasopro]&lt;br /&gt;
[http://caffeine.blogs.eurosport.com caffeine pills]&lt;br /&gt;
[http://scifit.blogs.eurosport.com scifit]&lt;br /&gt;
[http://twinlab.blogs.eurosport.com twinlab]&lt;br /&gt;
[http://imean.com/blog/faxlesspaydayloans/ faxless payday loans]&lt;br /&gt;
[http://cingularringtone.blogs.eurosport.com/ cingular ringtone]&lt;br /&gt;
[http://freeverizonringtone.blogs.eurosport.com/ free verizon ringtone]&lt;br /&gt;
[http://freekyoceraringtone.blogs.eurosport.com/ free kyocera ringtone]&lt;br /&gt;
[http://freesprintringtone.blogs.eurosport.com/ free sprint ringtone]&lt;br /&gt;
[http://kyoceraringtone.blogs.eurosport.com/ kyocera ringtone]&lt;br /&gt;
[http://ringtonemaker.blogs.eurosport.com/ ringtone maker]&lt;br /&gt;
[http://monophonicringtone.blogs.eurosport.com/ monophonic ringtone]&lt;br /&gt;
[http://uscellularringtone.blogs.eurosport.com/ us cellular ringtone]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>1145380866</name></author>
	</entry>
	<entry>
		<id>https://wiki.xiph.org/index.php?title=Main_Page&amp;diff=4725</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.xiph.org/index.php?title=Main_Page&amp;diff=4725"/>
		<updated>2006-04-18T18:01:44Z</updated>

		<summary type="html">&lt;p&gt;1145380866: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In an effort to bring open-source ideals to the world of multimedia the [[Xiph.org Foundation]] develops a multitude of amazing products.  This wiki describes our free and open protocols and software.&lt;br /&gt;
&lt;br /&gt;
= Projects/Formats =&lt;br /&gt;
&lt;br /&gt;
== Container Formats ==&lt;br /&gt;
&lt;br /&gt;
* [[Ogg]]: Media container. This is our native format and the recommended container for Xiph codecs.&lt;br /&gt;
* [[Ogg Skeleton]]: Skeleton information on all logical content bitstreams in Ogg.&lt;br /&gt;
&lt;br /&gt;
* [[SpeexRTP]]: RTP payload format for voice&lt;br /&gt;
* [[VorbisRTP]]: RTP payload format for general audio&lt;br /&gt;
* [[TheoraRTP]]: RTP payload format for video&lt;br /&gt;
* [[XSPF]]: XML playlist format&lt;br /&gt;
&lt;br /&gt;
== Codecs ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Compressed Audio/Video Codecs:&#039;&#039;&#039;&lt;br /&gt;
** [[Vorbis]]: Audio codec with a [[Tremor|fixed point decoder]]&lt;br /&gt;
** [[Theora]]: Video codec&lt;br /&gt;
** [[FLAC]]: Free Lossless Audio Codec&lt;br /&gt;
** [[Speex]]: Speech codec&lt;br /&gt;
* &#039;&#039;&#039;Timed Text/Metadata Codecs:&#039;&#039;&#039;&lt;br /&gt;
** [[CMML]]: Continuous Media Markup Language, used for [http://www.annodex.net/ Annodex] and subtitles (xine, vlc, gstreamer, and DirectShow support)&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Software for distributing media&#039;&#039;&#039;&lt;br /&gt;
** [[Icecast]]: Streaming server&lt;br /&gt;
** [[Ices]]: Source client for Icecast servers&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Other software&#039;&#039;&#039;&lt;br /&gt;
** [[OggComponent/VorbisComponent]]: Wrappers to integrate Ogg-Vorbis into Mac OS X&lt;br /&gt;
&lt;br /&gt;
== Work in Progress ==&lt;br /&gt;
*[[Work In Progress]]: codecs and software still in the research and development stages.&lt;br /&gt;
&lt;br /&gt;
= Demonstrations of Xiph technologies =&lt;br /&gt;
&lt;br /&gt;
Want to see/hear Xiph in action?  These projects are using our codecs, formats, or libraries.&lt;br /&gt;
&lt;br /&gt;
* [[VorbisStreams]]: Stations streaming with the Vorbis codec&lt;br /&gt;
* [[Games that use Vorbis]]: Games using the Vorbis codec for music or sound effects&lt;br /&gt;
* [[VorbisHardware]]: Hardware players using the Vorbis codec&lt;br /&gt;
* [[List of Theora videos]]: Availible videos encoded with [[Theora]]&lt;br /&gt;
&lt;br /&gt;
= Project management =&lt;br /&gt;
&lt;br /&gt;
* [[AdminProcesses]]&lt;br /&gt;
* [[MonthlyMeeting]]&lt;br /&gt;
* [[MailingLists]]&lt;br /&gt;
* [[Bounties]]&lt;br /&gt;
* [[HyperFish]]&lt;br /&gt;
&lt;br /&gt;
= Wiki internal =&lt;br /&gt;
&lt;br /&gt;
* [[Sandbox]]: Testbed for testing editing skills.&lt;br /&gt;
* [[Translations]]: What about some translation work&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div  style=&amp;quot;display:none&amp;quot;&amp;gt;&lt;br /&gt;
[We are delicate. We do not delete your content.]&lt;br /&gt;
[l_sp979]&lt;br /&gt;
[http://sitepalace.com/indoortanningbeds/ indoor tanning beds]&lt;br /&gt;
[http://sitepalace.com/cleo/daybedcomfortersets/ daybed comforter sets]&lt;br /&gt;
[http://sitepalace.com/cleo/southwesternbedding/ southwestern bedding]&lt;br /&gt;
[http://sitepalace.com/cleo/leathersectionalsofa/ leather sectional sofa]&lt;br /&gt;
[http://home.graffiti.net/thomasville_bedding/ thomasville bedding]&lt;br /&gt;
[http://home.graffiti.net/naturalizer_shoes/ naturalizer shoes]&lt;br /&gt;
[http://home.graffiti.net/designer_dog_beds/ designer dog beds]&lt;br /&gt;
[http://mujweb.cz/www/k1visa/ k1 visa]&lt;br /&gt;
[http://mujweb.cz/www/k1visa/fiancee-visa/ fiancee visa]&lt;br /&gt;
[http://rivotril.google.if.ua rivotril]&lt;br /&gt;
[http://republika.pl/cleo06/cingular-ringtone.htm cingular ringtone]&lt;br /&gt;
[http://republika.pl/cleo06/nail-fungus.htm nail fungus]&lt;br /&gt;
[http://republika.pl/cleo06/bridesmaid-dress.htm bridesmaid dress]&lt;br /&gt;
[http://republika.pl/cleo06/formal-prom-dresses.htm formal prom dresses]&lt;br /&gt;
[http://republika.pl/cleo06/bcbg-shoes.htm bcbg shoes]&lt;br /&gt;
[http://mysite.com.ua/xdem8200/pagesxdem8200/1_1.html tramadol hcl]&lt;br /&gt;
[http://mywebpage.netscape.com/burochka/cingular-ringtone.htm cingular ringtone]&lt;br /&gt;
[http://mywebpage.netscape.com/burochka/bcbg-shoes.htm bcbg shoes]&lt;br /&gt;
[http://mywebpage.netscape.com/burochka/bridesmaid-dress.htm bridesmaid dress]&lt;br /&gt;
[http://mywebpage.netscape.com/burochka/formal-prom-dresses.htm formal prom dresses]&lt;br /&gt;
[http://mywebpage.netscape.com/burochka/nail-fungus.htm nail fungus]&lt;br /&gt;
[http://www.buddyprofile.com/viewprofile.php?username=tanningbed tanning bed]&lt;br /&gt;
[http://www.buddyprofile.com/viewprofile.php?username=bcbgshoes bcbg shoes]&lt;br /&gt;
[http://www.buddyprofile.com/viewprofile.php?username=naturalizershoes naturalizer shoes]&lt;br /&gt;
[http://www.buddyprofile.com/viewprofile.php?username=leathersectionalsofa leather sectional sofa]&lt;br /&gt;
[http://www.buddyprofile.com/viewprofile.php?username=designerdogbeds designer dog beds]&lt;br /&gt;
[http://www.buddyprofile.com/viewprofile.php?username=heatedmattresspad heated mattress pad]&lt;br /&gt;
[http://www.buddyprofile.com/viewprofile.php?username=bridesmaiddress bridesmaid dress]&lt;br /&gt;
[http://www.buddyprofile.com/viewprofile.php?username=2006promdresses 2006 prom dresses]&lt;br /&gt;
[http://www.buddyprofile.com/viewprofile.php?username=formalpromdresses formal prom dresses]&lt;br /&gt;
[http://www.buddyprofile.com/viewprofile.php?username=sexypromdresses sexy prom dresses]&lt;br /&gt;
[http://www.buddyprofile.com/viewprofile.php?username=cheappromdresses cheap prom dresses]&lt;br /&gt;
[http://www.buddyprofile.com/viewprofile.php?username=nextelringtone nextel ringtone]&lt;br /&gt;
[http://www.buddyprofile.com/viewprofile.php?username=verizonringtones verizon ringtone]&lt;br /&gt;
[http://www.buddyprofile.com/viewprofile.php?username=cingularringtone cingular ringtone]&lt;br /&gt;
[http://www.buddyprofile.com/viewprofile.php?username=freesprintringtone free sprint ringtone]&lt;br /&gt;
[http://www.buddyprofile.com/viewprofile.php?username=freenextelringtone free nextel ringtone]&lt;br /&gt;
[http://dianabol.google.if.ua dianabol]&lt;br /&gt;
[http://tribulus-terrestris.blogs.eurosport.com tribulus terrestris]&lt;br /&gt;
[http://nutrex-lipo-6.blogs.eurosport.com nutrex lipo 6]&lt;br /&gt;
[http://tribex.blogs.eurosport.com Tribex]&lt;br /&gt;
[http://xyience.blogs.eurosport.com Xyience]&lt;br /&gt;
[http://vasopro.blogs.eurosport.com Vasopro]&lt;br /&gt;
[http://caffeine.blogs.eurosport.com caffeine pills]&lt;br /&gt;
[http://scifit.blogs.eurosport.com scifit]&lt;br /&gt;
[http://twinlab.blogs.eurosport.com twinlab]&lt;br /&gt;
[http://imean.com/blog/faxlesspaydayloans/ faxless payday loans]&lt;br /&gt;
[http://cingularringtone.blogs.eurosport.com/ cingular ringtone]&lt;br /&gt;
[http://freeverizonringtone.blogs.eurosport.com/ free verizon ringtone]&lt;br /&gt;
[http://freekyoceraringtone.blogs.eurosport.com/ free kyocera ringtone]&lt;br /&gt;
[http://freesprintringtone.blogs.eurosport.com/ free sprint ringtone]&lt;br /&gt;
[http://kyoceraringtone.blogs.eurosport.com/ kyocera ringtone]&lt;br /&gt;
[http://ringtonemaker.blogs.eurosport.com/ ringtone maker]&lt;br /&gt;
[http://monophonicringtone.blogs.eurosport.com/ monophonic ringtone]&lt;br /&gt;
[http://uscellularringtone.blogs.eurosport.com/ us cellular ringtone]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>1145380866</name></author>
	</entry>
</feed>