Update URLs as nedeed.

Sourceforge.net links updated as nedeed with some of them
being changed to point to xiph.org/flac.

Patch-from: lvqcl <lvqcl.mail@gmail.com>
This commit is contained in:
Erik de Castro Lopo
2014-06-28 09:12:06 +10:00
parent 987f74ae7a
commit 46bedb58d3
13 changed files with 16 additions and 16 deletions

View File

@@ -22,7 +22,7 @@
* file. It only supports 16-bit stereo files. * file. It only supports 16-bit stereo files.
* *
* Complete API documentation can be found at: * Complete API documentation can be found at:
* http://flac.sourceforge.net/api/ * http://xiph.org/flac/api/
*/ */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H

View File

@@ -22,7 +22,7 @@
* file. It only supports 16-bit stereo files in canonical WAVE format. * file. It only supports 16-bit stereo files in canonical WAVE format.
* *
* Complete API documentation can be found at: * Complete API documentation can be found at:
* http://flac.sourceforge.net/api/ * http://xiph.org/flac/api/
*/ */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H

View File

@@ -22,7 +22,7 @@
* file. It only supports 16-bit stereo files. * file. It only supports 16-bit stereo files.
* *
* Complete API documentation can be found at: * Complete API documentation can be found at:
* http://flac.sourceforge.net/api/ * http://xiph.org/flac/api/
*/ */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H

View File

@@ -22,7 +22,7 @@
* file. It only supports 16-bit stereo files in canonical WAVE format. * file. It only supports 16-bit stereo files in canonical WAVE format.
* *
* Complete API documentation can be found at: * Complete API documentation can be found at:
* http://flac.sourceforge.net/api/ * http://xiph.org/flac/api/
*/ */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H

View File

@@ -500,7 +500,7 @@ FLAC_API FLAC__MetadataType FLAC__metadata_simple_iterator_get_block_type(const
* \retval unsigned * \retval unsigned
* The length of the metadata block at the current iterator position. * The length of the metadata block at the current iterator position.
* The is same length as that in the * The is same length as that in the
* <a href="http://flac.sourceforge.net/format.html#metadata_block_header">metadata block header</a>, * <a href="http://xiph.org/flac/format.html#metadata_block_header">metadata block header</a>,
* i.e. the length of the metadata body that follows the header. * i.e. the length of the metadata body that follows the header.
*/ */
FLAC_API unsigned FLAC__metadata_simple_iterator_get_block_length(const FLAC__Metadata_SimpleIterator *iterator); FLAC_API unsigned FLAC__metadata_simple_iterator_get_block_length(const FLAC__Metadata_SimpleIterator *iterator);

View File

@@ -6,7 +6,7 @@
of code with the ELIDE_CODE #define is not accurate enough on systems of code with the ELIDE_CODE #define is not accurate enough on systems
that are POSIX but not glibc. If someone has a patch that works on that are POSIX but not glibc. If someone has a patch that works on
GNU/Linux, Darwin, AND Solaris please submit it on the project page: GNU/Linux, Darwin, AND Solaris please submit it on the project page:
http://sourceforge.net/projects/flac https://sourceforge.net/p/flac/patches/
In the meantime I have munged the global symbols and removed gates In the meantime I have munged the global symbols and removed gates
around code, while at the same time trying to touch the original as around code, while at the same time trying to touch the original as

View File

@@ -1418,7 +1418,7 @@ void print_error_with_state(const DecoderSession *d, const char *message)
"not able to decode the file. If the version number is not, the file\n" "not able to decode the file. If the version number is not, the file\n"
"may be corrupted, or you may have found a bug. In this case please\n" "may be corrupted, or you may have found a bug. In this case please\n"
"submit a bug report to\n" "submit a bug report to\n"
" http://sourceforge.net/bugs/?func=addbug&group_id=13478\n" " https://sourceforge.net/p/flac/bugs/\n"
"Make sure to use the \"Monitor\" feature to monitor the bug status.\n", "Make sure to use the \"Monitor\" feature to monitor the bug status.\n",
d->inbasefilename, FLAC__VERSION_STRING d->inbasefilename, FLAC__VERSION_STRING
); );

View File

@@ -2691,7 +2691,7 @@ void print_error_with_init_status(const EncoderSession *e, const char *message,
"The encoding parameters specified do not conform to the FLAC Subset and may not\n" "The encoding parameters specified do not conform to the FLAC Subset and may not\n"
"be streamable or playable in hardware devices. If you really understand the\n" "be streamable or playable in hardware devices. If you really understand the\n"
"consequences, you can add --lax to the command-line options to encode with\n" "consequences, you can add --lax to the command-line options to encode with\n"
"these parameters anyway. See http://flac.sourceforge.net/format.html#subset\n" "these parameters anyway. See http://xiph.org/flac/format.html#subset\n"
); );
} }
} }
@@ -2734,10 +2734,10 @@ void print_verify_error(EncoderSession *e)
flac__utils_printf(stderr, 1, " and repeat the flac command exactly as before. If it does not give a\n"); flac__utils_printf(stderr, 1, " and repeat the flac command exactly as before. If it does not give a\n");
flac__utils_printf(stderr, 1, " verify error in the exact same place each time you try it, then there is\n"); flac__utils_printf(stderr, 1, " verify error in the exact same place each time you try it, then there is\n");
flac__utils_printf(stderr, 1, " a problem with your hardware; please see the FAQ:\n"); flac__utils_printf(stderr, 1, " a problem with your hardware; please see the FAQ:\n");
flac__utils_printf(stderr, 1, " http://flac.sourceforge.net/faq.html#tools__hardware_prob\n"); flac__utils_printf(stderr, 1, " http://xiph.org/flac/faq.html#tools__hardware_prob\n");
flac__utils_printf(stderr, 1, " If it does fail in the exact same place every time, keep\n"); flac__utils_printf(stderr, 1, " If it does fail in the exact same place every time, keep\n");
flac__utils_printf(stderr, 1, " %s and submit a bug report to:\n", e->outfilename); flac__utils_printf(stderr, 1, " %s and submit a bug report to:\n", e->outfilename);
flac__utils_printf(stderr, 1, " https://sourceforge.net/bugs/?func=addbug&group_id=13478\n"); flac__utils_printf(stderr, 1, " https://sourceforge.net/p/flac/bugs/\n");
flac__utils_printf(stderr, 1, " Make sure to upload the FLAC file and use the \"Monitor\" feature to\n"); flac__utils_printf(stderr, 1, " Make sure to upload the FLAC file and use the \"Monitor\" feature to\n");
flac__utils_printf(stderr, 1, " monitor the bug status.\n"); flac__utils_printf(stderr, 1, " monitor the bug status.\n");
flac__utils_printf(stderr, 1, "Verify FAILED! Do not trust %s\n", e->outfilename); flac__utils_printf(stderr, 1, "Verify FAILED! Do not trust %s\n", e->outfilename);

View File

@@ -1191,7 +1191,7 @@ static void usage_summary(void)
printf("Analyzing: flac -a [<general-options>] [<analysis-options>] [FLACFILE [...]]\n"); printf("Analyzing: flac -a [<general-options>] [<analysis-options>] [FLACFILE [...]]\n");
printf("\n"); printf("\n");
printf("Be sure to read the list of known bugs at:\n"); printf("Be sure to read the list of known bugs at:\n");
printf("http://flac.sourceforge.net/documentation_bugs.html\n"); printf("http://xiph.org/flac/documentation_bugs.html\n");
printf("\n"); printf("\n");
} }
@@ -1203,7 +1203,7 @@ void short_usage(void)
printf("instructions use 'flac --explain'\n"); printf("instructions use 'flac --explain'\n");
printf("\n"); printf("\n");
printf("Be sure to read the list of known bugs at:\n"); printf("Be sure to read the list of known bugs at:\n");
printf("http://flac.sourceforge.net/documentation_bugs.html\n"); printf("http://xiph.org/flac/documentation_bugs.html\n");
printf("\n"); printf("\n");
printf("To encode:\n"); printf("To encode:\n");
printf(" flac [-#] [INPUTFILE [...]]\n"); printf(" flac [-#] [INPUTFILE [...]]\n");

View File

@@ -156,7 +156,7 @@ void FLAC__lpc_compute_lp_coefficients(const FLAC__real autoc[], unsigned *max_o
lp_coeff[i][j] = (FLAC__real)(-lpc[j]); /* negate FIR filter coeff to get predictor coeff */ lp_coeff[i][j] = (FLAC__real)(-lpc[j]); /* negate FIR filter coeff to get predictor coeff */
error[i] = err; error[i] = err;
/* see SF bug #1601812 http://sourceforge.net/tracker/index.php?func=detail&aid=1601812&group_id=13478&atid=113478 */ /* see SF bug https://sourceforge.net/p/flac/bugs/234/ */
if(err == 0.0) { if(err == 0.0) {
*max_order = i+1; *max_order = i+1;
return; return;

View File

@@ -800,7 +800,7 @@ void FLAC_XMMS__aboutbox(void)
"......\n" "......\n"
"and\n" "and\n"
"Daisuke Shimamura\n" "Daisuke Shimamura\n"
"Visit http://flac.sourceforge.net/"), "Visit http://xiph.org/flac/"),
_("Ok"), FALSE, NULL, NULL); _("Ok"), FALSE, NULL, NULL);
gtk_signal_connect(GTK_OBJECT(about_window), "destroy", gtk_signal_connect(GTK_OBJECT(about_window), "destroy",
GTK_SIGNAL_FUNC(gtk_widget_destroyed), GTK_SIGNAL_FUNC(gtk_widget_destroyed),

View File

@@ -6,7 +6,7 @@
of code with the ELIDE_CODE #define is not accurate enough on systems of code with the ELIDE_CODE #define is not accurate enough on systems
that are POSIX but not glibc. If someone has a patch that works on that are POSIX but not glibc. If someone has a patch that works on
GNU/Linux, Darwin, AND Solaris please submit it on the project page: GNU/Linux, Darwin, AND Solaris please submit it on the project page:
http://sourceforge.net/projects/flac https://sourceforge.net/p/flac/patches/
In the meantime I have munged the global symbols and removed gates In the meantime I have munged the global symbols and removed gates
around code, while at the same time trying to touch the original as around code, while at the same time trying to touch the original as

View File

@@ -6,7 +6,7 @@
of code with the ELIDE_CODE #define is not accurate enough on systems of code with the ELIDE_CODE #define is not accurate enough on systems
that are POSIX but not glibc. If someone has a patch that works on that are POSIX but not glibc. If someone has a patch that works on
GNU/Linux, Darwin, AND Solaris please submit it on the project page: GNU/Linux, Darwin, AND Solaris please submit it on the project page:
http://sourceforge.net/projects/flac https://sourceforge.net/p/flac/patches/
In the meantime I have munged the global symbols and removed gates In the meantime I have munged the global symbols and removed gates
around code, while at the same time trying to touch the original as around code, while at the same time trying to touch the original as