Re-organize

This commit is contained in:
Johannes Schriewer 2024-03-06 21:55:32 +01:00
parent 17f1f0f4f0
commit 78fe3a7c61
29 changed files with 932 additions and 85 deletions

File diff suppressed because it is too large Load diff

View file

@ -5,10 +5,30 @@
<key>SchemeUserState</key>
<dict>
<key>AudioLib.xcscheme_^#shared#^_</key>
<dict>
<key>orderHint</key>
<integer>1</integer>
</dict>
<key>audio.xcscheme_^#shared#^_</key>
<dict>
<key>orderHint</key>
<integer>4</integer>
</dict>
<key>faad2.xcscheme_^#shared#^_</key>
<dict>
<key>orderHint</key>
<integer>3</integer>
</dict>
<key>libmad.xcscheme_^#shared#^_</key>
<dict>
<key>orderHint</key>
<integer>0</integer>
</dict>
<key>speexresampler.xcscheme_^#shared#^_</key>
<dict>
<key>orderHint</key>
<integer>2</integer>
</dict>
</dict>
</dict>
</plist>

View file

@ -8,7 +8,7 @@
* Creates a demuxer element for MP3 files
*
* This demuxer just searches for MP3 sync markers, decodes the header to calculate frame length
* and then will forward the MP3 data to the next element in the chain in packets of 10 frames.
* and then will forward the MP3 data to the next element in the chain frame by frame.
* The maximum size of data buffered before calling the decoder is around 14 kB.
* The theoretical maximum decoded data from this packet is 11520 samples which could be
* up to 45kB of data and between 0.96 and 1.44 seconds of audio playback time.

View file

@ -12,3 +12,4 @@
AudioPipelineElement *audio_sink_file(char *filename);
#endif /* AUDIOPIPELINE_AUDIO_SINK_FILE_H__INCLUDED */