Displaying 1 result from an estimated 1 matches for "get_scale".
Did you mean:
set_scale
2006 Oct 24
2
oggdec.exe not using album gain stdout option
...e || radio)
{
fprintf(stderr, audiophile
? " Running in Album/Audiophile mode\n\n"
: " Running in Track/Radio mode\n\n");
/* We are using ReplayGain tags, so get the scale for gain
adjustment. */
scale = get_scale(file_names[i], audiophile, radio);
}
else
scale = 1.0;
It seems to me from looking at that code that it shouldn't do either track
or album gain when stdout is selected, but that contradicts the actual
results that I've obtained. Perhaps I don't fully grasp t...