Re: [Libva] [PATCH] HEVC: Fix the Wrong slice type usage

2015-06-01 Thread Qu, Pengfei
Subject: Re: [Libva] [PATCH] HEVC: Fix the Wrong slice type usage Hi Sree, Pengfei, The vme_state_message[] for H.264 P slice should be used for HEVC P slice, so I think Sree's original patch is right. Thanks Haihao It is OK to me. Thanks, Pengfei -Original Message- From: Libva

[Libva] [PATCH] HEVC: Fix the Wrong slice type usage

2015-05-29 Thread sreerenj . balachandran
From: Sreerenj Balachandran sreerenj.balachand...@intel.com Don't mix the slice_type values of h264 and h265. The SLICE_TYPE values of H264 and HEVC are different. H264: Bslice_type = 1, Pslice_type = 0 HEVC: Bslice_type = 0, Pslice_type = 1 Signed-off-by: Sreerenj Balachandran