[Libva] [libva-intel-driver PATCH 05/10] VP9 HWDEC:add vp9 table file
Zhao Yakui
yakui.zhao at intel.com
Thu Dec 3 16:28:45 PST 2015
On 12/04/2015 02:13 AM, Xiang, Haihao wrote:
> From: Sirisha Muppavarapu<sirisha.muppavarapu at intel.com>
>
> Signed-off-by: Pengfei Qu<Pengfei.Qu at intel.com>
> Signed-off-by: Sirisha Muppavarapu<sirisha.muppavarapu at intel.com>
> Signed-off-by: peng.chen<peng.c.chen at intel.com>
This looks good to me.
> ---
> src/Makefile.am | 1 +
> src/vp9_probs.h | 640 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
> 2 files changed, 641 insertions(+)
> create mode 100644 src/vp9_probs.h
>
> diff --git a/src/Makefile.am b/src/Makefile.am
> index f6db887..ad96102 100755
> --- a/src/Makefile.am
> +++ b/src/Makefile.am
> @@ -139,6 +139,7 @@ source_h = \
> intel_version.h \
> object_heap.h \
> vp8_probs.h \
> + vp9_probs.h \
> sysdeps.h \
> va_backend_compat.h \
> i965_fourcc.h \
> diff --git a/src/vp9_probs.h b/src/vp9_probs.h
> new file mode 100644
> index 0000000..757969f
> --- /dev/null
> +++ b/src/vp9_probs.h
> @@ -0,0 +1,640 @@
> +/*
> + * Copyright © 2015 Intel Corporation
> + *
> + * Permission is hereby granted, free of charge, to any person obtaining a
> + * copy of this software and associated documentation files (the
> + * "Software"), to deal in the Software without restriction, including
> + * without limitation the rights to use, copy, modify, merge, publish,
> + * distribute, sub license, and/or sell copies of the Software, and to
> + * permit persons to whom the Software is furnished to do so, subject to
> + * the following conditions:
> + *
> + * The above copyright notice and this permission notice (including the
> + * next paragraph) shall be included in all copies or substantial portions
> + * of the Software.
> + *
> + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
> + * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
> + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
> + * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR
> + * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
> + * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
> + * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
> + *
> + */
> +/*
> + * This file defines some vp9 probability tables, and
> + * they are ported from libvpx (https://github.com/webmproject/libvpx/).
> + * The original copyright and licence statement as below.
> + */
> +
> +/*
> + * Copyright (c) 2010 The WebM project authors. All Rights Reserved.
> + *
> + * Use of this source code is governed by a BSD-style license
> + * that can be found in the LICENSE file in the root of the source
> + * tree. An additional intellectual property rights grant can be found
> + * in the file PATENTS. All contributing project authors may
> + * be found in the AUTHORS file in the root of the source tree.
> + */
> +
> +#ifndef VP9_PROBS_H
> +#define VP9_PROBS_H
> +
> +#define TX_SIZE_CONTEXTS 2
> +#define TX_SIZES 4
> +#define PLANE_TYPES 2
> +#define SKIP_CONTEXTS 3
> +#define INTER_MODE_CONTEXTS 7
> +#define INTER_MODES 4
> +#define SWITCHABLE_FILTERS 3
> +#define SWITCHABLE_FILTER_CONTEXTS (SWITCHABLE_FILTERS + 1)
> +#define MAX_SEGMENTS 8
> +#define PREDICTION_PROBS 3
> +#define SEG_TREE_PROBS (MAX_SEGMENTS-1)
> +#define MV_JOINTS 4
> +#define INTRA_INTER_CONTEXTS 4
> +#define COMP_INTER_CONTEXTS 5
> +#define REF_CONTEXTS 5
> +#define BLOCK_SIZE_GROUPS 4
> +#define INTRA_MODES 10
> +#define PARTITION_PLOFFSET 4 // number of probability models per block size
> +#define PARTITION_CONTEXTS (4 * PARTITION_PLOFFSET)
> +#define PARTITION_TYPES 4
> +#define REF_TYPES 2 // intra=0, inter=1
> +#define COEF_BANDS 6
> +#define COEFF_CONTEXTS 6
> +#define UNCONSTRAINED_NODES 3
> +#define MV_CLASSES 11
> +#define CLASS0_BITS 1 /* bits at integer precision for class 0 */
> +#define CLASS0_SIZE (1<< CLASS0_BITS)
> +#define MV_OFFSET_BITS (MV_CLASSES + CLASS0_BITS - 2)
> +#define MV_MAX_BITS (MV_CLASSES + CLASS0_BITS + 2)
> +#define MV_FP_SIZE 4
> +#define FRAME_CONTEXTS_LOG2 2
> +#define FRAME_CONTEXTS (1<< FRAME_CONTEXTS_LOG2)
> +
> +#define COEFF_PROB_SIZE 132
> +#define COEFF_PROB_NUM 3
> +
> +#define TX_PROBS_IDX 0
> +#define COEFF_PROBS_IDX 64
> +#define INTRA_PROBS_IDX 1603
> +#define SEG_PROBS_IDX 2010
> +
> +typedef uint8_t vp9_prob;
> +
> +#define vpx_memset memset
> +#define vpx_memcpy memcpy
> +
> +#define vp9_zero(dest) memset(&dest, 0, sizeof(dest))
> +
> +#define vp9_copy(dest, src) { \
> + assert(sizeof(dest) == sizeof(src)); \
> + vpx_memcpy(dest, src, sizeof(src)); \
> +}
> +
> +struct tx_probs {
> + vp9_prob p8x8[TX_SIZE_CONTEXTS][TX_SIZES - 3];
> + vp9_prob p16x16[TX_SIZE_CONTEXTS][TX_SIZES - 2];
> + vp9_prob p32x32[TX_SIZE_CONTEXTS][TX_SIZES - 1];
> +};
> +
> +struct tx_counts {
> + unsigned int p32x32[TX_SIZE_CONTEXTS][TX_SIZES];
> + unsigned int p16x16[TX_SIZE_CONTEXTS][TX_SIZES - 1];
> + unsigned int p8x8[TX_SIZE_CONTEXTS][TX_SIZES - 2];
> + unsigned int tx_totals[TX_SIZES];
> +};
> +
> +typedef struct {
> + vp9_prob sign;
> + vp9_prob classes[MV_CLASSES - 1];
> + vp9_prob class0[CLASS0_SIZE - 1];
> + vp9_prob bits[MV_OFFSET_BITS];
> +} nmv_component;
> +
> +//Modified the nmv_context from libvpx to suit our HW needs
> +typedef struct {
> + vp9_prob joints[MV_JOINTS-1];
> + nmv_component comps[2];
> + vp9_prob class0_fp0[CLASS0_SIZE][MV_FP_SIZE - 1];
> + vp9_prob fp0[MV_FP_SIZE - 1];
> + vp9_prob class0_fp1[CLASS0_SIZE][MV_FP_SIZE - 1];
> + vp9_prob fp1[MV_FP_SIZE - 1];
> + vp9_prob class0_hp[2];
> + vp9_prob hp[2];
> +} nmv_context;
> +
> +//Modified the FRAME_CONTEXT from libvpx to suit our HW needs
> +typedef struct frame_contexts {
> + struct tx_probs tx_probs;
> + vp9_prob dummy1[52];
> + vp9_prob coeff_probs4x4[COEFF_PROB_SIZE][COEFF_PROB_NUM];
> + vp9_prob coeff_probs8x8[COEFF_PROB_SIZE][COEFF_PROB_NUM];
> + vp9_prob coeff_probs16x16[COEFF_PROB_SIZE][COEFF_PROB_NUM];
> + vp9_prob coeff_probs32x32[COEFF_PROB_SIZE][COEFF_PROB_NUM];
> + vp9_prob dummy2[16];
> + vp9_prob skip_probs[SKIP_CONTEXTS];
> + vp9_prob inter_mode_probs[INTER_MODE_CONTEXTS][INTER_MODES - 1];
> + vp9_prob switchable_interp_prob[SWITCHABLE_FILTER_CONTEXTS]
> + [SWITCHABLE_FILTERS - 1];
> + vp9_prob intra_inter_prob[INTRA_INTER_CONTEXTS];
> + vp9_prob comp_inter_prob[COMP_INTER_CONTEXTS];
> + vp9_prob single_ref_prob[REF_CONTEXTS][2];
> + vp9_prob comp_ref_prob[REF_CONTEXTS];
> + vp9_prob y_mode_prob[BLOCK_SIZE_GROUPS][INTRA_MODES - 1];
> + vp9_prob partition_prob[PARTITION_CONTEXTS][PARTITION_TYPES - 1];
> + nmv_context nmvc;
> + vp9_prob dummy3[47];
> + vp9_prob uv_mode_prob[INTRA_MODES][INTRA_MODES - 1];
> + vp9_prob seg_tree_probs[SEG_TREE_PROBS];
> + vp9_prob seg_pred_probs[PREDICTION_PROBS];
> + vp9_prob dummy4[28];
> + int initialized;
> +} FRAME_CONTEXT;
> +
> +
> +static const struct tx_probs default_tx_probs = {
> + { { 100 },
> + { 66 } },
> +
> + { { 20, 152 },
> + { 15, 101 } },
> +
> + { { 3, 136, 37 },
> + { 5, 52, 13 } },
> +};
> +
> +static const vp9_prob default_skip_probs[SKIP_CONTEXTS] = {
> + 192, 128, 64
> +};
> +
> +static const vp9_prob default_inter_mode_probs[INTER_MODE_CONTEXTS]
> + [INTER_MODES - 1] = {
> + {2, 173, 34}, // 0 = both zero mv
> + {7, 145, 85}, // 1 = one zero mv + one a predicted mv
> + {7, 166, 63}, // 2 = two predicted mvs
> + {7, 94, 66}, // 3 = one predicted/zero and one new mv
> + {8, 64, 46}, // 4 = two new mvs
> + {17, 81, 31}, // 5 = one intra neighbour + x
> + {25, 29, 30}, // 6 = two intra neighbours
> +};
> +
> +static const vp9_prob default_switchable_interp_prob[SWITCHABLE_FILTER_CONTEXTS][SWITCHABLE_FILTERS - 1] = {
> + { 235, 162, },
> + { 36, 255, },
> + { 34, 3, },
> + { 149, 144, },
> +};
> +
> +static const vp9_prob default_intra_inter_p[INTRA_INTER_CONTEXTS] = {
> + 9, 102, 187, 225
> +};
> +
> +static const vp9_prob default_comp_inter_p[COMP_INTER_CONTEXTS] = {
> + 239, 183, 119, 96, 41
> +};
> +
> +static const vp9_prob default_single_ref_p[REF_CONTEXTS][2] = {
> + { 33, 16 },
> + { 77, 74 },
> + { 142, 142 },
> + { 172, 170 },
> + { 238, 247 }
> +};
> +
> +static const vp9_prob default_comp_ref_p[REF_CONTEXTS] = {
> + 50, 126, 123, 221, 226
> +};
> +
> +const vp9_prob vp9_kf_uv_mode_prob[INTRA_MODES][INTRA_MODES - 1] = {
> + { 144, 11, 54, 157, 195, 130, 46, 58, 108 }, // y = dc
> + { 118, 15, 123, 148, 131, 101, 44, 93, 131 }, // y = v
> + { 113, 12, 23, 188, 226, 142, 26, 32, 125 }, // y = h
> + { 120, 11, 50, 123, 163, 135, 64, 77, 103 }, // y = d45
> + { 113, 9, 36, 155, 111, 157, 32, 44, 161 }, // y = d135
> + { 116, 9, 55, 176, 76, 96, 37, 61, 149 }, // y = d117
> + { 115, 9, 28, 141, 161, 167, 21, 25, 193 }, // y = d153
> + { 120, 12, 32, 145, 195, 142, 32, 38, 86 }, // y = d207
> + { 116, 12, 64, 120, 140, 125, 49, 115, 121 }, // y = d63
> + { 102, 19, 66, 162, 182, 122, 35, 59, 128 } // y = tm
> +};
> +
> +static const vp9_prob default_if_y_probs[BLOCK_SIZE_GROUPS][INTRA_MODES - 1] = {
> + { 65, 32, 18, 144, 162, 194, 41, 51, 98 }, // block_size< 8x8
> + { 132, 68, 18, 165, 217, 196, 45, 40, 78 }, // block_size< 16x16
> + { 173, 80, 19, 176, 240, 193, 64, 35, 46 }, // block_size< 32x32
> + { 221, 135, 38, 194, 248, 121, 96, 85, 29 } // block_size>= 32x32
> +};
> +
> +static const vp9_prob default_if_uv_probs[INTRA_MODES][INTRA_MODES - 1] = {
> + { 120, 7, 76, 176, 208, 126, 28, 54, 103 }, // y = dc
> + { 48, 12, 154, 155, 139, 90, 34, 117, 119 }, // y = v
> + { 67, 6, 25, 204, 243, 158, 13, 21, 96 }, // y = h
> + { 97, 5, 44, 131, 176, 139, 48, 68, 97 }, // y = d45
> + { 83, 5, 42, 156, 111, 152, 26, 49, 152 }, // y = d135
> + { 80, 5, 58, 178, 74, 83, 33, 62, 145 }, // y = d117
> + { 86, 5, 32, 154, 192, 168, 14, 22, 163 }, // y = d153
> + { 85, 5, 32, 156, 216, 148, 19, 29, 73 }, // y = d207
> + { 77, 7, 64, 116, 132, 122, 37, 126, 120 }, // y = d63
> + { 101, 21, 107, 181, 192, 103, 19, 67, 125 } // y = tm
> +};
> +
> +static const vp9_prob default_seg_tree_probs[SEG_TREE_PROBS] = {
> + 255, 255, 255, 255, 255, 255, 255
> +};
> +
> +static const vp9_prob default_seg_pred_probs[PREDICTION_PROBS] = {
> + 255, 255, 255
> +};
> +
> +const vp9_prob vp9_kf_partition_probs[PARTITION_CONTEXTS]
> + [PARTITION_TYPES - 1] = {
> + // 8x8 -> 4x4
> + { 158, 97, 94 }, // a/l both not split
> + { 93, 24, 99 }, // a split, l not split
> + { 85, 119, 44 }, // l split, a not split
> + { 62, 59, 67 }, // a/l both split
> + // 16x16 -> 8x8
> + { 149, 53, 53 }, // a/l both not split
> + { 94, 20, 48 }, // a split, l not split
> + { 83, 53, 24 }, // l split, a not split
> + { 52, 18, 18 }, // a/l both split
> + // 32x32 -> 16x16
> + { 150, 40, 39 }, // a/l both not split
> + { 78, 12, 26 }, // a split, l not split
> + { 67, 33, 11 }, // l split, a not split
> + { 24, 7, 5 }, // a/l both split
> + // 64x64 -> 32x32
> + { 174, 35, 49 }, // a/l both not split
> + { 68, 11, 27 }, // a split, l not split
> + { 57, 15, 9 }, // l split, a not split
> + { 12, 3, 3 }, // a/l both split
> +};
> +
> +static const vp9_prob default_partition_probs[PARTITION_CONTEXTS]
> + [PARTITION_TYPES - 1] = {
> + // 8x8 -> 4x4
> + { 199, 122, 141 }, // a/l both not split
> + { 147, 63, 159 }, // a split, l not split
> + { 148, 133, 118 }, // l split, a not split
> + { 121, 104, 114 }, // a/l both split
> + // 16x16 -> 8x8
> + { 174, 73, 87 }, // a/l both not split
> + { 92, 41, 83 }, // a split, l not split
> + { 82, 99, 50 }, // l split, a not split
> + { 53, 39, 39 }, // a/l both split
> + // 32x32 -> 16x16
> + { 177, 58, 59 }, // a/l both not split
> + { 68, 26, 63 }, // a split, l not split
> + { 52, 79, 25 }, // l split, a not split
> + { 17, 14, 12 }, // a/l both split
> + // 64x64 -> 32x32
> + { 222, 34, 30 }, // a/l both not split
> + { 72, 16, 44 }, // a split, l not split
> + { 58, 32, 12 }, // l split, a not split
> + { 10, 7, 6 }, // a/l both split
> +};
> +
> +//Rearranged the values for better usage
> +static const nmv_context default_nmv_context = {
> + {32, 64, 96},
> + {
> + { // Vertical component
> + 128, // sign
> + {224, 144, 192, 168, 192, 176, 192, 198, 198, 245}, // class
> + {216}, // class0
> + {136, 140, 148, 160, 176, 192, 224, 234, 234, 240}, // bits
> + },
> + { // Horizontal component
> + 128, // sign
> + {216, 128, 176, 160, 176, 176, 192, 198, 198, 208}, // class
> + {208}, // class0
> + {136, 140, 148, 160, 176, 192, 224, 234, 234, 240}, // bits
> + }
> + },
> + {{128, 128, 64}, {96, 112, 64}}, // class0_fp0
> + {64, 96, 64}, // fp0
> + {{128, 128, 64}, {96, 112, 64}}, // class0_fp1
> + {64, 96, 64}, // fp1
> + {160, 128}, // class0_hp bit
> + {160, 128} // hp
> +
> +};
> +
> +//Rearranged the coeff probs for better usage
> +static const vp9_prob default_coef_probs_4x4[COEFF_PROB_SIZE][COEFF_PROB_NUM] = {
> + // Y plane - Intra
> + // Band 0
> + { 195, 29, 183 }, { 84, 49, 136 }, { 8, 42, 71 },
> + // Band 1
> + { 31, 107, 169 }, { 35, 99, 159 }, { 17, 82, 140 },
> + { 8, 66, 114 }, { 2, 44, 76 }, { 1, 19, 32 },
> + // Band 2
> + { 40, 132, 201 }, { 29, 114, 187 }, { 13, 91, 157 },
> + { 7, 75, 127 }, { 3, 58, 95 }, { 1, 28, 47 },
> + // Band 3
> + { 69, 142, 221 }, { 42, 122, 201 }, { 15, 91, 159 },
> + { 6, 67, 121 }, { 1, 42, 77 }, { 1, 17, 31 },
> + // Band 4
> + { 102, 148, 228 }, { 67, 117, 204 }, { 17, 82, 154 },
> + { 6, 59, 114 }, { 2, 39, 75 }, { 1, 15, 29 },
> + // Band 5
> + { 156, 57, 233 }, { 119, 57, 212 }, { 58, 48, 163 },
> + { 29, 40, 124 }, { 12, 30, 81 }, { 3, 12, 31 },
> +
> + // Y plane - Inter
> + // Band 0
> + { 191, 107, 226 }, { 124, 117, 204 }, { 25, 99, 155 },
> + // Band 1
> + { 29, 148, 210 }, { 37, 126, 194 }, { 8, 93, 157 },
> + { 2, 68, 118 }, { 1, 39, 69 }, { 1, 17, 33 },
> + // Band 2
> + { 41, 151, 213 }, { 27, 123, 193 }, { 3, 82, 144 },
> + { 1, 58, 105 }, { 1, 32, 60 }, { 1, 13, 26 },
> + // Band 3
> + { 59, 159, 220 }, { 23, 126, 198 }, { 4, 88, 151 },
> + { 1, 66, 114 }, { 1, 38, 71 }, { 1, 18, 34 },
> + // Band 4
> + { 114, 136, 232 }, { 51, 114, 207 }, { 11, 83, 155 },
> + { 3, 56, 105 }, { 1, 33, 65 }, { 1, 17, 34 },
> + // Band 5
> + { 149, 65, 234 }, { 121, 57, 215 }, { 61, 49, 166 },
> + { 28, 36, 114 }, { 12, 25, 76 }, { 3, 16, 42 },
> +
> + // UV plane - Intra
> + // Band 0
> + { 214, 49, 220 }, { 132, 63, 188 }, { 42, 65, 137 },
> + // Band 1
> + { 85, 137, 221 }, { 104, 131, 216 }, { 49, 111, 192 },
> + { 21, 87, 155 }, { 2, 49, 87 }, { 1, 16, 28 },
> + // Band 2
> + { 89, 163, 230 }, { 90, 137, 220 }, { 29, 100, 183 },
> + { 10, 70, 135 }, { 2, 42, 81 }, { 1, 17, 33 },
> + // Band 3
> + { 108, 167, 237 }, { 55, 133, 222 }, { 15, 97, 179 },
> + { 4, 72, 135 }, { 1, 45, 85 }, { 1, 19, 38 },
> + // Band 4
> + { 124, 146, 240 }, { 66, 124, 224 }, { 17, 88, 175 },
> + { 4, 58, 122 }, { 1, 36, 75 }, { 1, 18, 37 },
> + // Band 5
> + { 141, 79, 241 }, { 126, 70, 227 }, { 66, 58, 182 },
> + { 30, 44, 136 }, { 12, 34, 96 }, { 2, 20, 47 },
> +
> + // UV plane - Inter
> + // Band 0
> + { 229, 99, 249 }, { 143, 111, 235 }, { 46, 109, 192 },
> + // Band 1
> + { 82, 158, 236 }, { 94, 146, 224 }, { 25, 117, 191 },
> + { 9, 87, 149 }, { 3, 56, 99 }, { 1, 33, 57 },
> + // Band 2
> + { 83, 167, 237 }, { 68, 145, 222 }, { 10, 103, 177 },
> + { 2, 72, 131 }, { 1, 41, 79 }, { 1, 20, 39 },
> + // Band 3
> + { 99, 167, 239 }, { 47, 141, 224 }, { 10, 104, 178 },
> + { 2, 73, 133 }, { 1, 44, 85 }, { 1, 22, 47 },
> + // Band 4
> + { 127, 145, 243 }, { 71, 129, 228 }, { 17, 93, 177 },
> + { 3, 61, 124 }, { 1, 41, 84 }, { 1, 21, 52 },
> + // Band 5
> + { 157, 78, 244 }, { 140, 72, 231 }, { 69, 58, 184 },
> + { 31, 44, 137 }, { 14, 38, 105 }, { 8, 23, 61 }
> +};
> +
> +static const vp9_prob default_coef_probs_8x8[COEFF_PROB_SIZE][COEFF_PROB_NUM] = {
> + // Y plane - Intra
> + // Band 0
> + { 125, 34, 187 }, { 52, 41, 133 }, { 6, 31, 56 },
> + // Band 1
> + { 37, 109, 153 }, { 51, 102, 147 }, { 23, 87, 128 },
> + { 8, 67, 101 }, { 1, 41, 63 }, { 1, 19, 29 },
> + // Band 2
> + { 31, 154, 185 }, { 17, 127, 175 }, { 6, 96, 145 },
> + { 2, 73, 114 }, { 1, 51, 82 }, { 1, 28, 45 },
> + // Band 3
> + { 23, 163, 200 }, { 10, 131, 185 }, { 2, 93, 148 },
> + { 1, 67, 111 }, { 1, 41, 69 }, { 1, 14, 24 },
> + // Band 4
> + { 29, 176, 217 }, { 12, 145, 201 }, { 3, 101, 156 },
> + { 1, 69, 111 }, { 1, 39, 63 }, { 1, 14, 23 },
> + // Band 5
> + { 57, 192, 233 }, { 25, 154, 215 }, { 6, 109, 167 },
> + { 3, 78, 118 }, { 1, 48, 69 }, { 1, 21, 29 },
> +
> + // Y plane - Inter
> + // Band 0
> + { 202, 105, 245 }, { 108, 106, 216 }, { 18, 90, 144 },
> + // Band 1
> + { 33, 172, 219 }, { 64, 149, 206 }, { 14, 117, 177 },
> + { 5, 90, 141 }, { 2, 61, 95 }, { 1, 37, 57 },
> + // Band 2
> + { 33, 179, 220 }, { 11, 140, 198 }, { 1, 89, 148 },
> + { 1, 60, 104 }, { 1, 33, 57 }, { 1, 12, 21 },
> + // Band 3
> + { 30, 181, 221 }, { 8, 141, 198 }, { 1, 87, 145 },
> + { 1, 58, 100 }, { 1, 31, 55 }, { 1, 12, 20 },
> + // Band 4
> + { 32, 186, 224 }, { 7, 142, 198 }, { 1, 86, 143 },
> + { 1, 58, 100 }, { 1, 31, 55 }, { 1, 12, 22 },
> + // Band 5
> + { 57, 192, 227 }, { 20, 143, 204 }, { 3, 96, 154 },
> + { 1, 68, 112 }, { 1, 42, 69 }, { 1, 19, 32 },
> +
> + // UV plane - Intra
> + // Band 0
> + { 212, 35, 215 }, { 113, 47, 169 }, { 29, 48, 105 },
> + // Band 1
> + { 74, 129, 203 }, { 106, 120, 203 }, { 49, 107, 178 },
> + { 19, 84, 144 }, { 4, 50, 84 }, { 1, 15, 25 },
> + // Band 2
> + { 71, 172, 217 }, { 44, 141, 209 }, { 15, 102, 173 },
> + { 6, 76, 133 }, { 2, 51, 89 }, { 1, 24, 42 },
> + // Band 3
> + { 64, 185, 231 }, { 31, 148, 216 }, { 8, 103, 175 },
> + { 3, 74, 131 }, { 1, 46, 81 }, { 1, 18, 30 },
> + // Band 4
> + { 65, 196, 235 }, { 25, 157, 221 }, { 5, 105, 174 },
> + { 1, 67, 120 }, { 1, 38, 69 }, { 1, 15, 30 },
> + // Band 5
> + { 65, 204, 238 }, { 30, 156, 224 }, { 7, 107, 177 },
> + { 2, 70, 124 }, { 1, 42, 73 }, { 1, 18, 34 },
> +
> + // UV Plane - Inter
> + // Band 0
> + { 225, 86, 251 }, { 144, 104, 235 }, { 42, 99, 181 },
> + // Band 1
> + { 85, 175, 239 }, { 112, 165, 229 }, { 29, 136, 200 },
> + { 12, 103, 162 }, { 6, 77, 123 }, { 2, 53, 84 },
> + // Band 2
> + { 75, 183, 239 }, { 30, 155, 221 }, { 3, 106, 171 },
> + { 1, 74, 128 }, { 1, 44, 76 }, { 1, 17, 28 },
> + // Band 3
> + { 73, 185, 240 }, { 27, 159, 222 }, { 2, 107, 172 },
> + { 1, 75, 127 }, { 1, 42, 73 }, { 1, 17, 29 },
> + // Band 4
> + { 62, 190, 238 }, { 21, 159, 222 }, { 2, 107, 172 },
> + { 1, 72, 122 }, { 1, 40, 71 }, { 1, 18, 32 },
> + // Band 5
> + { 61, 199, 240 }, { 27, 161, 226 }, { 4, 113, 180 },
> + { 1, 76, 129 }, { 1, 46, 80 }, { 1, 23, 41 }
> +};
> +
> +static const vp9_prob default_coef_probs_16x16[COEFF_PROB_SIZE][COEFF_PROB_NUM] = {
> + // Y plane - Intra
> + // Band 0
> + { 7, 27, 153 }, { 5, 30, 95 }, { 1, 16, 30 },
> + // Band 1
> + { 50, 75, 127 }, { 57, 75, 124 }, { 27, 67, 108 },
> + { 10, 54, 86 }, { 1, 33, 52 }, { 1, 12, 18 },
> + // Band 2
> + { 43, 125, 151 }, { 26, 108, 148 }, { 7, 83, 122 },
> + { 2, 59, 89 }, { 1, 38, 60 }, { 1, 17, 27 },
> + // Band 3
> + { 23, 144, 163 }, { 13, 112, 154 }, { 2, 75, 117 },
> + { 1, 50, 81 }, { 1, 31, 51 }, { 1, 14, 23 },
> + // Band 4
> + { 18, 162, 185 }, { 6, 123, 171 }, { 1, 78, 125 },
> + { 1, 51, 86 }, { 1, 31, 54 }, { 1, 14, 23 },
> + // Band 5
> + { 15, 199, 227 }, { 3, 150, 204 }, { 1, 91, 146 },
> + { 1, 55, 95 }, { 1, 30, 53 }, { 1, 11, 20 },
> +
> + // Y plane - Inter
> + // Band 0
> + { 19, 55, 240 }, { 19, 59, 196 }, { 3, 52, 105 },
> + // Band 1
> + { 41, 166, 207 }, { 104, 153, 199 }, { 31, 123, 181 },
> + { 14, 101, 152 }, { 5, 72, 106 }, { 1, 36, 52 },
> + // Band 2
> + { 35, 176, 211 }, { 12, 131, 190 }, { 2, 88, 144 },
> + { 1, 60, 101 }, { 1, 36, 60 }, { 1, 16, 28 },
> + // Band 3
> + { 28, 183, 213 }, { 8, 134, 191 }, { 1, 86, 142 },
> + { 1, 56, 96 }, { 1, 30, 53 }, { 1, 12, 20 },
> + // Band 4
> + { 20, 190, 215 }, { 4, 135, 192 }, { 1, 84, 139 },
> + { 1, 53, 91 }, { 1, 28, 49 }, { 1, 11, 20 },
> + // Band 5
> + { 13, 196, 216 }, { 2, 137, 192 }, { 1, 86, 143 },
> + { 1, 57, 99 }, { 1, 32, 56 }, { 1, 13, 24 },
> +
> + // UV plane - Intra
> + // Band 0
> + { 211, 29, 217 }, { 96, 47, 156 }, { 22, 43, 87 },
> + // Band 1
> + { 78, 120, 193 }, { 111, 116, 186 }, { 46, 102, 164 },
> + { 15, 80, 128 }, { 2, 49, 76 }, { 1, 18, 28 },
> + // Band 2
> + { 71, 161, 203 }, { 42, 132, 192 }, { 10, 98, 150 },
> + { 3, 69, 109 }, { 1, 44, 70 }, { 1, 18, 29 },
> + // Band 3
> + { 57, 186, 211 }, { 30, 140, 196 }, { 4, 93, 146 },
> + { 1, 62, 102 }, { 1, 38, 65 }, { 1, 16, 27 },
> + // Band 4
> + { 47, 199, 217 }, { 14, 145, 196 }, { 1, 88, 142 },
> + { 1, 57, 98 }, { 1, 36, 62 }, { 1, 15, 26 },
> + // Band 5
> + { 26, 219, 229 }, { 5, 155, 207 }, { 1, 94, 151 },
> + { 1, 60, 104 }, { 1, 36, 62 }, { 1, 16, 28 },
> +
> + // UV plane - Inter
> + // Band 0
> + { 233, 29, 248 }, { 146, 47, 220 }, { 43, 52, 140 },
> + // Band 1
> + { 100, 163, 232 }, { 179, 161, 222 }, { 63, 142, 204 },
> + { 37, 113, 174 }, { 26, 89, 137 }, { 18, 68, 97 },
> + // Band 2
> + { 85, 181, 230 }, { 32, 146, 209 }, { 7, 100, 164 },
> + { 3, 71, 121 }, { 1, 45, 77 }, { 1, 18, 30 },
> + // Band 3
> + { 65, 187, 230 }, { 20, 148, 207 }, { 2, 97, 159 },
> + { 1, 68, 116 }, { 1, 40, 70 }, { 1, 14, 29 },
> + // Band 4
> + { 40, 194, 227 }, { 8, 147, 204 }, { 1, 94, 155 },
> + { 1, 65, 112 }, { 1, 39, 66 }, { 1, 14, 26 },
> + // Band 5
> + { 16, 208, 228 }, { 3, 151, 207 }, { 1, 98, 160 },
> + { 1, 67, 117 }, { 1, 41, 74 }, { 1, 17, 31 }
> +};
> +
> +static const vp9_prob default_coef_probs_32x32[COEFF_PROB_SIZE][COEFF_PROB_NUM] = {
> + // Y plane - Intra
> + // Band 0
> + { 17, 38, 140 }, { 7, 34, 80 }, { 1, 17, 29 },
> + // Band 1
> + { 37, 75, 128 }, { 41, 76, 128 }, { 26, 66, 116 },
> + { 12, 52, 94 }, { 2, 32, 55 }, { 1, 10, 16 },
> + // Band 2
> + { 50, 127, 154 }, { 37, 109, 152 }, { 16, 82, 121 },
> + { 5, 59, 85 }, { 1, 35, 54 }, { 1, 13, 20 },
> + //Band 3
> + { 40, 142, 167 }, { 17, 110, 157 }, { 2, 71, 112 },
> + { 1, 44, 72 }, { 1, 27, 45 }, { 1, 11, 17 },
> + // Band 4
> + { 30, 175, 188 }, { 9, 124, 169 }, { 1, 74, 116 },
> + { 1, 48, 78 }, { 1, 30, 49 }, { 1, 11, 18 },
> + // Band 5
> + { 10, 222, 223 }, { 2, 150, 194 }, { 1, 83, 128 },
> + { 1, 48, 79 }, { 1, 27, 45 }, { 1, 11, 17 },
> +
> + // Y plane - Inter
> + // Band 0
> + { 36, 41, 235 }, { 29, 36, 193 }, { 10, 27, 111 },
> + // Band 1
> + { 85, 165, 222 }, { 177, 162, 215 }, { 110, 135, 195 },
> + { 57, 113, 168 }, { 23, 83, 120 }, { 10, 49, 61 },
> + // Band 2
> + { 85, 190, 223 }, { 36, 139, 200 }, { 5, 90, 146 },
> + { 1, 60, 103 }, { 1, 38, 65 }, { 1, 18, 30 },
> + // Band 3
> + { 72, 202, 223 }, { 23, 141, 199 }, { 2, 86, 140 },
> + { 1, 56, 97 }, { 1, 36, 61 }, { 1, 16, 27 },
> + // Band 4
> + { 55, 218, 225 }, { 13, 145, 200 }, { 1, 86, 141 },
> + { 1, 57, 99 }, { 1, 35, 61 }, { 1, 13, 22 },
> + // Band 5
> + { 15, 235, 212 }, { 1, 132, 184 }, { 1, 84, 139 },
> + { 1, 57, 97 }, { 1, 34, 56 }, { 1, 14, 23 },
> +
> + // UV plane - Intra
> + // Band 0
> + { 181, 21, 201 }, { 61, 37, 123 }, { 10, 38, 71 },
> + // Band 1
> + { 47, 106, 172 }, { 95, 104, 173 }, { 42, 93, 159 },
> + { 18, 77, 131 }, { 4, 50, 81 }, { 1, 17, 23 },
> + // Band 2
> + { 62, 147, 199 }, { 44, 130, 189 }, { 28, 102, 154 },
> + { 18, 75, 115 }, { 2, 44, 65 }, { 1, 12, 19 },
> + // Band 3
> + { 55, 153, 210 }, { 24, 130, 194 }, { 3, 93, 146 },
> + { 1, 61, 97 }, { 1, 31, 50 }, { 1, 10, 16 },
> + // Band 4
> + { 49, 186, 223 }, { 17, 148, 204 }, { 1, 96, 142 },
> + { 1, 53, 83 }, { 1, 26, 44 }, { 1, 11, 17 },
> + // Band 5
> + { 13, 217, 212 }, { 2, 136, 180 }, { 1, 78, 124 },
> + { 1, 50, 83 }, { 1, 29, 49 }, { 1, 14, 23 },
> +
> + // UV plane - Inter
> + // Band 0
> + { 197, 13, 247 }, { 82, 17, 222 }, { 25, 17, 162 },
> + // Band 1
> + { 126, 186, 247 }, { 234, 191, 243 }, { 176, 177, 234 },
> + { 104, 158, 220 }, { 66, 128, 186 }, { 55, 90, 137 },
> + // Band 2
> + { 111, 197, 242 }, { 46, 158, 219 }, { 9, 104, 171 },
> + { 2, 65, 125 }, { 1, 44, 80 }, { 1, 17, 91 },
> + // Band 3
> + { 104, 208, 245 }, { 39, 168, 224 }, { 3, 109, 162 },
> + { 1, 79, 124 }, { 1, 50, 102 }, { 1, 43, 102 },
> + // Band 4
> + { 84, 220, 246 }, { 31, 177, 231 }, { 2, 115, 180 },
> + { 1, 79, 134 }, { 1, 55, 77 }, { 1, 60, 79 },
> + // Band 5
> + { 43, 243, 240 }, { 8, 180, 217 }, { 1, 115, 166 },
> + { 1, 84, 121 }, { 1, 51, 67 }, { 1, 16, 6 }
> +
> +};
> +
> +#endif /*VP9_PROBS_H */
More information about the Libva
mailing list