Difference between revisions of "Noise normalization"

From Hydrogenaudio Knowledgebase
Jump to: navigation, search
m (minor fix.)
 
(23 intermediate revisions by 5 users not shown)
Line 1: Line 1:
'''Noise normalization''' is special type of coding technique (somewhat comparable  [[PNS]] used in [[AAC]], but not the same) used by [[Ogg Vorbis]] psychoacoustics model to '''compensate''' for loss of energy in certain frquency bands due to quantization (usually because of a low [[SNR]]). The algorithm uses an apsort function to determine where the energy lost in each frequency band is the greatest and compensates the band with the greatest energy lost ''(see psy.c in source)''. This is main cause of most ''metallic artifacts'' in MP3. It is '''one factor''' that gives Vorbis it's ''noise-like'' sound characteristics when the bitrate is too low to encode without susceptible artifacts. In the reference encoder it's used on all quality values less than 7.
+
'''Noise normalization''' is a special type of coding technique (somewhat comparable to [[PNS]] used in [[AAC]], but not the same) used by [[Ogg Vorbis]] psychoacoustics model to '''compensate''' for loss of energy in certain frequency bands due to quantization (usually because of a low [[SNR]]). The algorithm uses an apsort function to determine where the energy lost in each frequency band is the greatest and compensates the band with the greatest energy lost by '''reviving the residue''' (noise error) ''(see [https://trac.xiph.org/browser/trunk/vorbis/lib/psy.c psy.c] in source, '''_vp_noise_normalize_sort''' function, line 1050)''. This is main cause of most ''metallic artifacts'' in MP3. It is '''one factor''' that gives Vorbis its '''noise-like''' sound characteristics, when the bitrate is too low to encode without susceptible artifacts. In the reference encoder it's used on all quality values less than 4.
 +
 
 +
==References==
 +
* [http://www.hydrogenaudio.org/forums/index.php?showtopic=20132 Noise Normalization and 'HF boost' problem] - The solution that ultimately lead to AoTuV tunings.
 +
 
 +
[[Category:Algorithms]]

Latest revision as of 10:54, 23 November 2017

Noise normalization is a special type of coding technique (somewhat comparable to PNS used in AAC, but not the same) used by Ogg Vorbis psychoacoustics model to compensate for loss of energy in certain frequency bands due to quantization (usually because of a low SNR). The algorithm uses an apsort function to determine where the energy lost in each frequency band is the greatest and compensates the band with the greatest energy lost by reviving the residue (noise error) (see psy.c in source, _vp_noise_normalize_sort function, line 1050). This is main cause of most metallic artifacts in MP3. It is one factor that gives Vorbis its noise-like sound characteristics, when the bitrate is too low to encode without susceptible artifacts. In the reference encoder it's used on all quality values less than 4.

References