jsvpx
Version:
Javascript implementation of libvpx
21 lines (20 loc) • 520 B
JavaScript
;
/*
var vp8_mode_contexts =
[
new Uint8Array([7, 1, 1, 143]),
new Uint8Array([14, 18, 14, 107]),
new Uint8Array([135, 64, 57, 68]),
new Uint8Array([60, 56, 128, 65]),
new Uint8Array([159, 134, 128, 34]),
new Uint8Array([234, 188, 128, 28])
];
*/
var vp8_mode_contexts = new Uint8Array(
[7, 1, 1, 143,
14, 18, 14, 107,
135, 64, 57, 68,
60, 56, 128, 65,
159, 134, 128, 34,
234, 188, 128, 28]);
module.exports = vp8_mode_contexts;