diff --git a/gst/replaygain/gstrganalysis.c b/gst/replaygain/gstrganalysis.c index f8c350091a..1f013caa8d 100644 --- a/gst/replaygain/gstrganalysis.c +++ b/gst/replaygain/gstrganalysis.c @@ -26,7 +26,7 @@ * @see_also: #GstRgVolume * * This element analyzes raw audio sample data in accordance with the proposed - * ReplayGain standard for + * [ReplayGain standard](https://wiki.hydrogenaud.io/index.php?title=ReplayGain) for * calculating the ideal replay gain for music tracks and albums. The element * is designed as a pass-through filter that never modifies any data. As it * receives an EOS event, it finalizes the ongoing analysis and generates a tag @@ -63,9 +63,8 @@ * * ## Acknowledgements * - * This element is based on code used in the vorbisgain program and many - * others. The relevant parts are copyrighted by David Robinson, Glen Sawyer + * This element is based on code used in the [vorbisgain](https://sjeng.org/vorbisgain.html) + * program and many others. The relevant parts are copyrighted by David Robinson, Glen Sawyer * and Frank Klemm. * */ @@ -230,10 +229,8 @@ gst_rg_analysis_class_init (GstRgAnalysisClass * klass) * ReplayGain, set this property to 83. * * Almost all software uses 89 dB as a reference however, and this value has - * become the new official value. That is to say, while the change has been - * acclaimed by the author of the ReplayGain proposal, the webpage is still outdated at the time - * of this writing. + * become the new official value, and that change has been acclaimed by the + * original author of the ReplayGain proposal. * * The value was changed because the original proposal recommends a default * pre-amp value of +6 dB for playback. This seemed a bit odd, as it means diff --git a/gst/replaygain/gstrglimiter.c b/gst/replaygain/gstrglimiter.c index 95c83a1209..0fea9cba10 100644 --- a/gst/replaygain/gstrglimiter.c +++ b/gst/replaygain/gstrglimiter.c @@ -27,8 +27,8 @@ * * This element applies signal compression/limiting to raw audio data. It * performs strict hard limiting with soft-knee characteristics, using a - * threshold of -6 dB. This type of filter is mentioned in the proposed ReplayGain standard. + * threshold of -6 dB. This type of filter is mentioned in the proposed + * [ReplayGain standard](https://wiki.hydrogenaud.io/index.php?title=ReplayGain). * * ## Example launch line * |[ diff --git a/gst/replaygain/gstrgvolume.c b/gst/replaygain/gstrgvolume.c index fe75b60dd8..9b3b48424c 100644 --- a/gst/replaygain/gstrgvolume.c +++ b/gst/replaygain/gstrgvolume.c @@ -26,10 +26,11 @@ * @see_also: #GstRgLimiter, #GstRgAnalysis * * This element applies volume changes to streams as lined out in the proposed - * ReplayGain standard. It - * interprets the ReplayGain meta data tags and carries out the adjustment (by - * using a volume element internally). The relevant tags are: + * [ReplayGain standard](https://wiki.hydrogenaud.io/index.php?title=ReplayGain). + * It interprets the ReplayGain meta data tags and carries out the adjustment + * (by using a volume element internally). * + * The relevant tags are: * * #GST_TAG_TRACK_GAIN * * #GST_TAG_TRACK_PEAK * * #GST_TAG_ALBUM_GAIN @@ -197,9 +198,7 @@ gst_rg_volume_class_init (GstRgVolumeClass * klass) * range. * * Note that the default value is 0 dB because the ReplayGain reference value - * was adjusted by +6 dB (from 83 to 89 dB). At the time of this writing, the - * webpage is still outdated and - * does not reflect this change however. Where the original proposal states + * was adjusted by +6 dB (from 83 to 89 dB). The original proposal stated * that a proper default pre-amp value is +6 dB, this translates to the used 0 * dB. */