[Libva] [PATCH 1/3] HEVC ENC:fill the correct chroma intra mode
Xiang, Haihao
haihao.xiang at intel.com
Tue Aug 23 03:21:46 UTC 2016
Applied your patches, thanks
> Signed-off-by: Pengfei Qu <Pengfei.Qu at intel.com>
> ---
> src/gen9_mfc_hevc.c | 7 +++----
> 1 file changed, 3 insertions(+), 4 deletions(-)
>
> diff --git a/src/gen9_mfc_hevc.c b/src/gen9_mfc_hevc.c
> index ad5e936..90b14bf 100644
> --- a/src/gen9_mfc_hevc.c
> +++ b/src/gen9_mfc_hevc.c
> @@ -1246,15 +1246,16 @@
> gen9_hcpe_hevc_fill_indirect_cu_intra(VADriverContextP ctx,
> int cu_size = 1;
> int tu_size = 0x55;
> int tu_count = 4;
> + int chroma_mode_remap[4]={5,4,3,2};
>
> if (!is_inter) inerpred_idc = 0xff;
>
> intraMbMode = (msg[0] & AVC_INTRA_MODE_MASK) >> 4;
>
> -
> + intra_chroma_mode = (msg[3] & 0x3);
> + intra_chroma_mode = chroma_mode_remap[intra_chroma_mode];
> if (intraMbMode == AVC_INTRA_16X16) {
> cu_part_mode = 0; //2Nx2N
> - intra_chroma_mode = 5;
> cu_size = 1;
> tu_size = 0x55;
> tu_count = 4;
> @@ -1264,7 +1265,6 @@
> gen9_hcpe_hevc_fill_indirect_cu_intra(VADriverContextP ctx,
> intraMode[3] = intra_mode_16x16_avc2hevc[msg[1] & 0xf];
> } else if (intraMbMode == AVC_INTRA_8X8) {
> cu_part_mode = 0; //2Nx2N
> - intra_chroma_mode = 5;
> cu_size = 0;
> tu_size = 0;
> tu_count = 4;
> @@ -1275,7 +1275,6 @@
> gen9_hcpe_hevc_fill_indirect_cu_intra(VADriverContextP ctx,
>
> } else { // for 4x4 to use 8x8 replace
> cu_part_mode = 3; //NxN
> - intra_chroma_mode = 0;
> cu_size = 0;
> tu_size = 0;
> tu_count = 4;
More information about the Libva
mailing list