Skip to content

Commit 4bad2af

Browse files
committed
Update links in opusfile.h.
Replace broken link to jenkins build of the opus api docs with the current release on the website. Fix broken links into the vorbis spec. Update other links to use https.
1 parent dfcf13c commit 4bad2af

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

include/opusfile.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
reference
2929
<tt><a href="https://www.xiph.org/ogg/doc/libogg/reference.html">libogg</a></tt>
3030
and
31-
<tt><a href="https://mf4.xiph.org/jenkins/view/opus/job/opus/ws/doc/html/index.html">libopus</a></tt>
31+
<tt><a href="https://opus-codec.org/docs/opus_api-1.3.1/">libopus</a></tt>
3232
libraries.
3333
3434
<tt>libopusfile</tt> provides several sets of built-in routines for
@@ -58,7 +58,7 @@
5858
it is stored in the header to allow you to resample to it after decoding
5959
(the <tt>libopusfile</tt> API does not currently provide a resampler,
6060
but the
61-
<a href="http://www.speex.org/docs/manual/speex-manual/node7.html#SECTION00760000000000000000">the
61+
<a href="https://www.speex.org/docs/manual/speex-manual/node7.html#SECTION00760000000000000000">the
6262
Speex resampler</a> is a good choice if you need one).
6363
In general, if you are playing back the audio, you should leave it at
6464
48&nbsp;kHz, provided your audio hardware supports it.
@@ -68,7 +68,7 @@
6868
6969
Opus files can contain anywhere from 1 to 255 channels of audio.
7070
The channel mappings for up to 8 channels are the same as the
71-
<a href="http://www.xiph.org/vorbis/doc/Vorbis_I_spec.html#x1-800004.3.9">Vorbis
71+
<a href="https://www.xiph.org/vorbis/doc/Vorbis_I_spec.html#x1-810004.3.9">Vorbis
7272
mappings</a>.
7373
A special stereo API can convert everything to 2 channels, making it simple
7474
to support multichannel files in an application which only has stereo
@@ -284,7 +284,7 @@ struct OpusHead{
284284
A particular tag may occur more than once, and order is significant.
285285
The character set encoding for the strings is always UTF-8, but the tag
286286
names are limited to ASCII, and treated as case-insensitive.
287-
See <a href="http://www.xiph.org/vorbis/doc/v-comment.html">the Vorbis
287+
See <a href="https://www.xiph.org/vorbis/doc/v-comment.html">the Vorbis
288288
comment header specification</a> for details.
289289
290290
In filling in this structure, <tt>libopusfile</tt> will null-terminate the
@@ -1890,7 +1890,7 @@ void op_set_dither_enabled(OggOpusFile *_of,int _enabled) OP_ARG_NONNULL(1);
18901890
signed native-endian 16-bit values at 48&nbsp;kHz
18911891
with a nominal range of <code>[-32768,32767)</code>.
18921892
Multiple channels are interleaved using the
1893-
<a href="http://www.xiph.org/vorbis/doc/Vorbis_I_spec.html#x1-800004.3.9">Vorbis
1893+
<a href="https://www.xiph.org/vorbis/doc/Vorbis_I_spec.html#x1-810004.3.9">Vorbis
18941894
channel ordering</a>.
18951895
This must have room for at least \a _buf_size values.
18961896
\param _buf_size The number of values that can be stored in \a _pcm.
@@ -1972,7 +1972,7 @@ OP_WARN_UNUSED_RESULT int op_read(OggOpusFile *_of,
19721972
signed floats at 48&nbsp;kHz with a nominal range of
19731973
<code>[-1.0,1.0]</code>.
19741974
Multiple channels are interleaved using the
1975-
<a href="http://www.xiph.org/vorbis/doc/Vorbis_I_spec.html#x1-800004.3.9">Vorbis
1975+
<a href="https://www.xiph.org/vorbis/doc/Vorbis_I_spec.html#x1-810004.3.9">Vorbis
19761976
channel ordering</a>.
19771977
This must have room for at least \a _buf_size floats.
19781978
\param _buf_size The number of floats that can be stored in \a _pcm.

0 commit comments

Comments
 (0)