We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e91d52 commit 98e1872Copy full SHA for 98e1872
src/quantize.rs
@@ -230,7 +230,7 @@ impl QuantizationContext {
230
// to be quite close (+/- 1/256), for both inter and intra,
231
// post-deadzoning.
232
//
233
- // [1] https://people.xiph.org/~jm/notes/theoretical_results.pdf
+ // [1] https://jmvalin.ca/notes/theoretical_results.pdf
234
self.dc_offset = self.dc_quant * (if is_intra { 109 } else { 108 }) / 256;
235
self.ac_offset0 = self.ac_quant * (if is_intra { 98 } else { 97 }) / 256;
236
self.ac_offset1 = self.ac_quant * (if is_intra { 109 } else { 108 }) / 256;
0 commit comments