| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2010 The WebM project authors. All Rights Reserved. | 2 * Copyright (c) 2010 The WebM project authors. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 #ifndef VP9_COMMON_DEFAULT_COEF_PROBS_H_ |
| 11 #define VP9_COMMON_DEFAULT_COEF_PROBS_H_ |
| 10 | 12 |
| 11 /*Generated file, included by vp9_entropy.c*/ | 13 /*Generated file, included by vp9_entropy.c*/ |
| 12 static const vp9_coeff_probs_model default_coef_probs_4x4[BLOCK_TYPES] = { | 14 static const vp9_coeff_probs_model default_coef_probs_4x4[BLOCK_TYPES] = { |
| 13 { /* block Type 0 */ | 15 { /* block Type 0 */ |
| 14 { /* Intra */ | 16 { /* Intra */ |
| 15 { /* Coeff Band 0 */ | 17 { /* Coeff Band 0 */ |
| 16 { 195, 29, 183 }, | 18 { 195, 29, 183 }, |
| 17 { 84, 49, 136 }, | 19 { 84, 49, 136 }, |
| 18 { 8, 42, 71 } | 20 { 8, 42, 71 } |
| 19 }, { /* Coeff Band 1 */ | 21 }, { /* Coeff Band 1 */ |
| (...skipping 667 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 687 { 8, 180, 217 }, | 689 { 8, 180, 217 }, |
| 688 { 1, 115, 166 }, | 690 { 1, 115, 166 }, |
| 689 { 1, 84, 121 }, | 691 { 1, 84, 121 }, |
| 690 { 1, 51, 67 }, | 692 { 1, 51, 67 }, |
| 691 { 1, 16, 6 } | 693 { 1, 16, 6 } |
| 692 } | 694 } |
| 693 } | 695 } |
| 694 } | 696 } |
| 695 }; | 697 }; |
| 696 | 698 |
| 699 #endif // VP9_COMMON_DEFAULT_COEF_PROBS_H_ |
| OLD | NEW |