summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>2015-12-31 15:34:57 -0800
committerReynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>2015-12-31 15:34:57 -0800
commit5234c7c2bd6d984a09cf2abaab099014451f50a9 (patch)
tree6459079b7174ac5012595774328248692c95374b
parent5f4317843c8e1abb6a26a084fa3f0871728b94de (diff)
downloadgstreamer-plugins-good-5234c7c2bd6d984a09cf2abaab099014451f50a9.tar.gz
flacparse: update URLs on pointers to online spec
-rw-r--r--gst/audioparsers/gstflacparse.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gst/audioparsers/gstflacparse.c b/gst/audioparsers/gstflacparse.c
index ae91a2ac9..e644a5d53 100644
--- a/gst/audioparsers/gstflacparse.c
+++ b/gst/audioparsers/gstflacparse.c
@@ -1015,12 +1015,12 @@ gst_flac_parse_handle_cuesheet (GstFlacParse * flacparse, GstBuffer * buffer)
toc = gst_toc_new (GST_TOC_SCOPE_GLOBAL);
/* skip 4 bytes METADATA_BLOCK_HEADER */
- /* http://flac.sourceforge.net/format.html#metadata_block_header */
+ /* https://xiph.org/flac/format.html#metadata_block_header */
if (!gst_byte_reader_skip (&reader, 4))
goto error;
/* skip 395 bytes from METADATA_BLOCK_CUESHEET */
- /* http://flac.sourceforge.net/format.html#metadata_block_cuesheet */
+ /* https://xiph.org/flac/format.html#metadata_block_cuesheet */
if (!gst_byte_reader_skip (&reader, 395))
goto error;
@@ -1028,7 +1028,7 @@ gst_flac_parse_handle_cuesheet (GstFlacParse * flacparse, GstBuffer * buffer)
goto error;
/* CUESHEET_TRACK */
- /* http://flac.sourceforge.net/format.html#cuesheet_track */
+ /* https://xiph.org/flac/format.html#cuesheet_track */
for (i = 0; i < n_tracks; i++) {
if (!gst_byte_reader_get_uint64_be (&reader, &offset))
goto error;
@@ -1075,7 +1075,7 @@ gst_flac_parse_handle_cuesheet (GstFlacParse * flacparse, GstBuffer * buffer)
}
gst_toc_append_entry (toc, cur_entry);
/* CUESHEET_TRACK_INDEX */
- /* http://flac.sourceforge.net/format.html#cuesheet_track_index */
+ /* https://xiph.org/flac/format.html#cuesheet_track_index */
for (j = 0; j < index; j++) {
if (!gst_byte_reader_skip (&reader, 12))
goto error;