Update URLs

This commit is contained in:
Mark Harris 2016-07-06 14:17:51 -07:00
parent b15172a34e
commit 58dbcf23f3
5 changed files with 8 additions and 8 deletions

View file

@ -74,7 +74,7 @@ int log2_frac(opus_uint32 val, int frac)
/*Although derived separately, the pulse vector coding scheme is equivalent to /*Although derived separately, the pulse vector coding scheme is equivalent to
a Pyramid Vector Quantizer \cite{Fis86}. a Pyramid Vector Quantizer \cite{Fis86}.
Some additional notes about an early version appear at Some additional notes about an early version appear at
http://people.xiph.org/~tterribe/notes/cwrs.html, but the codebook ordering https://people.xiph.org/~tterribe/notes/cwrs.html, but the codebook ordering
and the definitions of some terms have evolved since that was written. and the definitions of some terms have evolved since that was written.
The conversion from a pulse vector to an integer index (encoding) and back The conversion from a pulse vector to an integer index (encoding) and back

View file

@ -27,7 +27,7 @@
/* This is meant to be a simple example of encoding and decoding audio /* This is meant to be a simple example of encoding and decoding audio
using Opus. It should make it easy to understand how the Opus API using Opus. It should make it easy to understand how the Opus API
works. For more information, see the full API documentation at: works. For more information, see the full API documentation at:
http://www.opus-codec.org/docs/ */ https://www.opus-codec.org/docs/ */
#include <stdlib.h> #include <stdlib.h>
#include <errno.h> #include <errno.h>

View file

@ -110,10 +110,10 @@ extern "C" {
* packets produced by the encoder. Some basic information, such as packet * packets produced by the encoder. Some basic information, such as packet
* duration, can be computed without any special negotiation. * duration, can be computed without any special negotiation.
* *
* The format for multistream Opus packets is defined in the * The format for multistream Opus packets is defined in
* <a href="https://tools.ietf.org/html/draft-ietf-codec-oggopus">Ogg * <a href="https://tools.ietf.org/html/rfc7845">RFC 7845</a>
* encapsulation specification</a> and is based on the self-delimited Opus * and is based on the self-delimited Opus framing described in Appendix B of
* framing described in Appendix B of <a href="https://tools.ietf.org/html/rfc6716">RFC 6716</a>. * <a href="https://tools.ietf.org/html/rfc6716">RFC 6716</a>.
* Normal Opus packets are just a degenerate case of multistream Opus packets, * Normal Opus packets are just a degenerate case of multistream Opus packets,
* and can be encoded or decoded with the multistream API by setting * and can be encoded or decoded with the multistream API by setting
* <code>streams</code> to <code>1</code> when initializing the encoder or * <code>streams</code> to <code>1</code> when initializing the encoder or

View file

@ -7,7 +7,7 @@ includedir=@includedir@
Name: Opus Name: Opus
Description: Opus IETF audio codec (@PC_BUILD@ build) Description: Opus IETF audio codec (@PC_BUILD@ build)
URL: http://opus-codec.org/ URL: https://opus-codec.org/
Version: @VERSION@ Version: @VERSION@
Requires: Requires:
Conflicts: Conflicts:

View file

@ -33,7 +33,7 @@ POSSIBILITY OF SUCH DAMAGE.
/* Best case: O(n) for an already sorted array */ /* Best case: O(n) for an already sorted array */
/* Worst case: O(n^2) for an inversely sorted array */ /* Worst case: O(n^2) for an inversely sorted array */
/* */ /* */
/* Shell short: http://en.wikipedia.org/wiki/Shell_sort */ /* Shell short: https://en.wikipedia.org/wiki/Shell_sort */
#include "SigProc_FIX.h" #include "SigProc_FIX.h"