michael@0: /* michael@0: * Copyright (c) 2010 The WebM project authors. All Rights Reserved. michael@0: * michael@0: * Use of this source code is governed by a BSD-style license michael@0: * that can be found in the LICENSE file in the root of the source michael@0: * tree. An additional intellectual property rights grant can be found michael@0: * in the file PATENTS. All contributing project authors may michael@0: * be found in the AUTHORS file in the root of the source tree. michael@0: */ michael@0: michael@0: michael@0: #include "entropy.h" michael@0: michael@0: const int vp8_mode_contexts[6][4] = michael@0: { michael@0: { michael@0: /* 0 */ michael@0: 7, 1, 1, 143, michael@0: }, michael@0: { michael@0: /* 1 */ michael@0: 14, 18, 14, 107, michael@0: }, michael@0: { michael@0: /* 2 */ michael@0: 135, 64, 57, 68, michael@0: }, michael@0: { michael@0: /* 3 */ michael@0: 60, 56, 128, 65, michael@0: }, michael@0: { michael@0: /* 4 */ michael@0: 159, 134, 128, 34, michael@0: }, michael@0: { michael@0: /* 5 */ michael@0: 234, 188, 128, 28, michael@0: }, michael@0: };