Re: [Libva] [libva][libva-intel-driver][PATCH] Fix segmentation fault caused by 4711da5

2015-01-08 Thread Zhao, Yakui
On Thu, 2015-01-08 at 21:18 -0700, Xiang, Haihao wrote: > The corresponding pointer is NULL if VAProcFilterSkinToneEnhancement > isn't enabled in the pipeline LGTM. > > Signed-off-by: Xiang, Haihao > --- > src/gen75_vpp_vebox.c | 7 --- > 1 file changed, 4 insertions(+), 3 deletions(-) >

[Libva] [libva][libva-intel-driver][PATCH] Fix segmentation fault caused by 4711da5

2015-01-08 Thread Xiang, Haihao
The corresponding pointer is NULL if VAProcFilterSkinToneEnhancement isn't enabled in the pipeline Signed-off-by: Xiang, Haihao --- src/gen75_vpp_vebox.c | 7 --- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/gen75_vpp_vebox.c b/src/gen75_vpp_vebox.c index b541b32..3eb504

[Libva] [PATCH V5 4/7] HEVC ENC:Added VME pipeline

2015-01-08 Thread Qu,Pengfei
Signed-off-by: Qu,Pengfei --- src/gen6_mfc_common.c | 222 +++ src/gen6_vme.h| 19 ++ src/gen9_vme.c| 484 ++ 3 files changed, 725 insertions(+) diff --git a/src/gen6_mfc_common.c b/src/gen6_mfc_common.c index f

[Libva] [PATCH V5 7/7] Just Style alignment

2015-01-08 Thread Qu,Pengfei
Signed-off-by: Qu,Pengfei --- src/gen6_mfc_common.c | 464 - src/gen9_vme.c | 444 +++--- src/i965_device_info.c | 16 +- src/i965_drv_video.c | 32 ++-- 4 files changed, 478 insertions(+), 478 de

[Libva] [PATCH V5 5/7] HEVC ENC:Added pipeline init

2015-01-08 Thread Qu,Pengfei
Signed-off-by: Qu,Pengfei --- src/i965_encoder.c | 74 +- 1 file changed, 73 insertions(+), 1 deletion(-) diff --git a/src/i965_encoder.c b/src/i965_encoder.c index d924f5a..c9ff2ec 100644 --- a/src/i965_encoder.c +++ b/src/i965_encoder.c @@ -3

[Libva] [PATCH V5 6/7] HEVC ENC:Added HEVC support in API function

2015-01-08 Thread Qu,Pengfei
Signed-off-by: Qu,Pengfei --- src/i965_device_info.c | 1 + src/i965_drv_video.c | 112 - 2 files changed, 94 insertions(+), 19 deletions(-) diff --git a/src/i965_device_info.c b/src/i965_device_info.c index d03aceb..9ccc85e 100755 --- a/src/i9

[Libva] [PATCH V5 1/7] HEVC ENC:Added PAK context for HEVC

2015-01-08 Thread Qu,Pengfei
Signed-off-by: Qu,Pengfei --- src/Makefile.am | 1 + src/gen9_mfc.h | 237 2 files changed, 238 insertions(+) create mode 100644 src/gen9_mfc.h diff --git a/src/Makefile.am b/src/Makefile.am index 9e54fd5..3f43809 100755 --- a/src/Make

[Libva] [PATCH V5 2/7] HEVC ENC:Added slice header generated internally

2015-01-08 Thread Qu,Pengfei
Signed-off-by: Qu,Pengfei --- src/i965_drv_video.h | 17 +- src/i965_encoder_utils.c | 457 +++ src/i965_encoder_utils.h | 29 +++ 3 files changed, 500 insertions(+), 3 deletions(-) diff --git a/src/i965_drv_video.h b/src/i965_drv_video.h index c

[Libva] [PATCH V5 0/7] HEVC encoder summary

2015-01-08 Thread Qu,Pengfei
V1-->V2: 1.add the style alignment patch 2.seperate the files into different patch and ensure building successfully. V2-->V3: 1.re-order the PATCH to ensure HEVC entrypoint/profile query in the last commit. 2.seperate file src/i965_encoder.c from the"VME pipeline" patch and as an independent patc

Re: [Libva] Help!

2015-01-08 Thread Zhao, Yakui
On Thu, 2015-01-08 at 14:28 -0800, Tony Di Croce wrote: > While adapting the encoding example to my use at some point I broke > bitrate control... Basically, no matter what I set the bitrate to I > get the same video out of libva. Here is my code: > > Are you using the intel-vaapi driver downloa

[Libva] Help!

2015-01-08 Thread Tony Di Croce
While adapting the encoding example to my use at some point I broke bitrate control... Basically, no matter what I set the bitrate to I get the same video out of libva. Here is my code: #include "VAKit/VAH264Encoder.h" #include "VAKit/BitStream.h" #include "VAKit/NALTypes.h" #include "XSDK/XExcept