Re: [meta-intel] [PATCH v3] intel-vaapi-driver: upgrade to 2.0.0

2018-02-06 Thread Cal Sullivan

Yep that fixed it.

NOTE: recipe intel-vaapi-driver-2.0.0-r0: task do_configure: Succeeded 
Thanks, Cal


On 02/06/2018 02:55 PM, Cal Sullivan wrote:

I didn't. I'll try with those applied.

Thanks,
Cal

On 02/06/2018 02:13 PM, Burton, Ross wrote:

Did you also pick the oe-core updates? (not yet in master)

Ross

On 6 February 2018 at 21:43, Cal Sullivan 
> wrote:


Getting a strange error when building for x32:

| checking for pkg-config...

/home/pokybuild/yocto-autobuilder/yocto-worker/nightly-x32/build/build/tmp/work/x86_64_x32-poky-linux-gnux32/intel-vaapi-driver/2.0.0-r0/recipe-sysroot-native/usr/bin/pkg-config
| configure: WARNING: using cross tools not prefixed with host
triplet | checking pkg-config is at least version 0.9.0... yes |
checking for libdrm >= 2.4.52... yes | checking for intel-gen4asm
>= 1.9... no | checking for intel-gen4asm... no | checking for
git...

/home/pokybuild/yocto-autobuilder/yocto-worker/nightly-x32/build/build/tmp/hosttools/git
| checking for libva >= 1.0.0... no | configure: error: Package
requirements (libva >= 1.0.0) were not met: | | Requested 'libva
>= 1.0.0' but version of libva is 0.40.0 | | Consider adjusting
the PKG_CONFIG_PATH environment variable if you | installed
software in a non-standard prefix. | | Alternatively, you may set
the environment variables LIBVA_DEPS_CFLAGS | and LIBVA_DEPS_LIBS
to avoid the need to call pkg-config. | See the pkg-config man
page for more details. Initially I was thinking that a host libva
was getting picked up, but libva 0.40 doesn't appear to exist.
Thanks, Cal

On 02/06/2018 12:38 AM, Anuj Mittal wrote:

Major changes:

* Bump version to 2.0.0
* Add support for Coffee Lake (aka. CFL)
   - Decoding: H.264/MPEG-2/VC-1/JPEG/VP8/HEVC/HEVC 10-bit/VP9/VP9 10-bit
   - Encoding: H.264/MPEG-2/JPEG/VP8/VP9/HEVC/HEVC 10-bit/AVC low power 
CQP/CBR/VBR mode
   - VPP: CSC/scaling/NoiseReduction/Deinterlacing{Bob, MotionAdaptive, 
MotionCompensated}/ColorBalance/STD
* Add support for H264 FEI
* Add support for HEVC ROI encoding
* Add support for intensity compensation for VC-1 decoding
* Improve the quality of the H264 encoder on BDW/BSW
* Improve the CSC performance between I420/NV12/P010/YUY2/VYUY format
* Improve the performace of va{Get, Put}Image for I420/NV12/P010/YUY2/VYUY 
format
* Fix image corruption for VP9 decoding
* Fix race condition in wayland support
* Fix ROI support in VDEnc support
* Fix corrupted stream when using VDEnc CBR/VBR
* Fix GCC 7.1.1 warnings/errors
* Update the shader for HEVC encoding

The upstream package name now is intel-vaapi-driver instead of 
libva-intel-driver.

Updated to point to release tarball instead of git. Also, changed
the URLs to point to new project page.

Signed-off-by: Anuj Mittal 

---
  conf/include/maintainers.inc |  2 +-
  ...intel-driver_1.8.3.bb   
=>intel-vaapi-driver_2.0.0.bb } | 16 
+++-
  recipes-multimedia/libva/va-intel.bb  
 |  4 ++--
  3 files changed, 10 insertions(+), 12 deletions(-)
  rename recipes-multimedia/libva/{libva-intel-driver_1.8.3.bb 
  =>intel-vaapi-driver_2.0.0.bb 
} (62%)

diff --git a/conf/include/maintainers.inc b/conf/include/maintainers.inc
index 64896c3..0ab61ab 100644
--- a/conf/include/maintainers.inc
+++ b/conf/include/maintainers.inc
@@ -8,7 +8,7 @@ RECIPE_MAINTAINER_pn-intel-gpu-tools = "Anuj 
Mittal "
  RECIPE_MAINTAINER_pn-intel-microcode = "California 
Sullivan
"
  RECIPE_MAINTAINER_pn-core-image-minimal-initramfs = "California 
Sullivan
"
  RECIPE_MAINTAINER_pn-iucode-tool = "California 
Sullivan
"
-RECIPE_MAINTAINER_pn-libva-intel-driver = "Anuj Mittal 
"
+RECIPE_MAINTAINER_pn-intel-vaapi-driver = "Anuj Mittal 
"
  RECIPE_MAINTAINER_pn-libyami = "Anuj Mittal 
"
  RECIPE_MAINTAINER_pn-libyami-utils = "Anuj Mittal 
"
  RECIPE_MAINTAINER_pn-linux-intel = "California 
Sullivan
"
diff --git 

Re: [meta-intel] [PATCH v3] intel-vaapi-driver: upgrade to 2.0.0

2018-02-06 Thread Burton, Ross
Did you also pick the oe-core updates? (not yet in master)

Ross

On 6 February 2018 at 21:43, Cal Sullivan 
wrote:

> Getting a strange error when building for x32:
>
> | checking for pkg-config... 
> /home/pokybuild/yocto-autobuilder/yocto-worker/nightly-x32/build/build/tmp/work/x86_64_x32-poky-linux-gnux32/intel-vaapi-driver/2.0.0-r0/recipe-sysroot-native/usr/bin/pkg-config
> | configure: WARNING: using cross tools not prefixed with host triplet
> | checking pkg-config is at least version 0.9.0... yes
> | checking for libdrm >= 2.4.52... yes
> | checking for intel-gen4asm >= 1.9... no
> | checking for intel-gen4asm... no
> | checking for git... 
> /home/pokybuild/yocto-autobuilder/yocto-worker/nightly-x32/build/build/tmp/hosttools/git
> | checking for libva >= 1.0.0... no
> | configure: error: Package requirements (libva >= 1.0.0) were not met:
> |
> | Requested 'libva >= 1.0.0' but version of libva is 0.40.0
> |
> | Consider adjusting the PKG_CONFIG_PATH environment variable if you
> | installed software in a non-standard prefix.
> |
> | Alternatively, you may set the environment variables LIBVA_DEPS_CFLAGS
> | and LIBVA_DEPS_LIBS to avoid the need to call pkg-config.
> | See the pkg-config man page for more details.
>
> Initially I was thinking that a host libva was getting picked up, but libva 
> 0.40 doesn't appear to exist.
>
> Thanks,
> Cal
>
> On 02/06/2018 12:38 AM, Anuj Mittal wrote:
>
> Major changes:
>
> * Bump version to 2.0.0
> * Add support for Coffee Lake (aka. CFL)
>   - Decoding: H.264/MPEG-2/VC-1/JPEG/VP8/HEVC/HEVC 10-bit/VP9/VP9 10-bit
>   - Encoding: H.264/MPEG-2/JPEG/VP8/VP9/HEVC/HEVC 10-bit/AVC low power 
> CQP/CBR/VBR mode
>   - VPP: CSC/scaling/NoiseReduction/Deinterlacing{Bob, MotionAdaptive, 
> MotionCompensated}/ColorBalance/STD
> * Add support for H264 FEI
> * Add support for HEVC ROI encoding
> * Add support for intensity compensation for VC-1 decoding
> * Improve the quality of the H264 encoder on BDW/BSW
> * Improve the CSC performance between I420/NV12/P010/YUY2/VYUY format
> * Improve the performace of va{Get, Put}Image for I420/NV12/P010/YUY2/VYUY 
> format
> * Fix image corruption for VP9 decoding
> * Fix race condition in wayland support
> * Fix ROI support in VDEnc support
> * Fix corrupted stream when using VDEnc CBR/VBR
> * Fix GCC 7.1.1 warnings/errors
> * Update the shader for HEVC encoding
>
> The upstream package name now is intel-vaapi-driver instead of 
> libva-intel-driver.
>
> Updated to point to release tarball instead of git. Also, changed
> the URLs to point to new project page.
>
> Signed-off-by: Anuj Mittal  
> ---
>  conf/include/maintainers.inc |  2 +-
>  ...intel-driver_1.8.3.bb => intel-vaapi-driver_2.0.0.bb} | 16 
> +++-
>  recipes-multimedia/libva/va-intel.bb |  4 ++--
>  3 files changed, 10 insertions(+), 12 deletions(-)
>  rename recipes-multimedia/libva/{libva-intel-driver_1.8.3.bb => 
> intel-vaapi-driver_2.0.0.bb} (62%)
>
> diff --git a/conf/include/maintainers.inc b/conf/include/maintainers.inc
> index 64896c3..0ab61ab 100644
> --- a/conf/include/maintainers.inc
> +++ b/conf/include/maintainers.inc
> @@ -8,7 +8,7 @@ RECIPE_MAINTAINER_pn-intel-gpu-tools = "Anuj Mittal 
>  "
>  RECIPE_MAINTAINER_pn-intel-microcode = "California Sullivan 
>  "
>  RECIPE_MAINTAINER_pn-core-image-minimal-initramfs = "California Sullivan 
>  "
>  RECIPE_MAINTAINER_pn-iucode-tool = "California Sullivan 
>  "
> -RECIPE_MAINTAINER_pn-libva-intel-driver = "Anuj Mittal 
>  "
> +RECIPE_MAINTAINER_pn-intel-vaapi-driver = "Anuj Mittal 
>  "
>  RECIPE_MAINTAINER_pn-libyami = "Anuj Mittal  
> "
>  RECIPE_MAINTAINER_pn-libyami-utils = "Anuj Mittal  
> "
>  RECIPE_MAINTAINER_pn-linux-intel = "California Sullivan 
>  "
> diff --git a/recipes-multimedia/libva/libva-intel-driver_1.8.3.bb 
> b/recipes-multimedia/libva/intel-vaapi-driver_2.0.0.bb
> similarity index 62%
> rename from recipes-multimedia/libva/libva-intel-driver_1.8.3.bb
> rename to recipes-multimedia/libva/intel-vaapi-driver_2.0.0.bb
> index 72451c0..e651107 100644
> --- a/recipes-multimedia/libva/libva-intel-driver_1.8.3.bb
> +++ b/recipes-multimedia/libva/intel-vaapi-driver_2.0.0.bb
> @@ -1,10 +1,10 @@
>  SUMMARY = "VA driver for Intel G45 & HD Graphics family"
> -DESCRIPTION = "libva-driver-intel is the VA-API implementation \
> +DESCRIPTION = "intel-vaapi-driver is the VA-API 

Re: [meta-intel] [PATCH v3] intel-vaapi-driver: upgrade to 2.0.0

2018-02-06 Thread Cal Sullivan

Getting a strange error when building for x32:

| checking for pkg-config... 
/home/pokybuild/yocto-autobuilder/yocto-worker/nightly-x32/build/build/tmp/work/x86_64_x32-poky-linux-gnux32/intel-vaapi-driver/2.0.0-r0/recipe-sysroot-native/usr/bin/pkg-config 
| configure: WARNING: using cross tools not prefixed with host triplet | 
checking pkg-config is at least version 0.9.0... yes | checking for 
libdrm >= 2.4.52... yes | checking for intel-gen4asm >= 1.9... no | 
checking for intel-gen4asm... no | checking for git... 
/home/pokybuild/yocto-autobuilder/yocto-worker/nightly-x32/build/build/tmp/hosttools/git 
| checking for libva >= 1.0.0... no | configure: error: Package 
requirements (libva >= 1.0.0) were not met: | | Requested 'libva >= 
1.0.0' but version of libva is 0.40.0 | | Consider adjusting the 
PKG_CONFIG_PATH environment variable if you | installed software in a 
non-standard prefix. | | Alternatively, you may set the environment 
variables LIBVA_DEPS_CFLAGS | and LIBVA_DEPS_LIBS to avoid the need to 
call pkg-config. | See the pkg-config man page for more details. 
Initially I was thinking that a host libva was getting picked up, but 
libva 0.40 doesn't appear to exist. Thanks, Cal


On 02/06/2018 12:38 AM, Anuj Mittal wrote:

Major changes:

* Bump version to 2.0.0
* Add support for Coffee Lake (aka. CFL)
   - Decoding: H.264/MPEG-2/VC-1/JPEG/VP8/HEVC/HEVC 10-bit/VP9/VP9 10-bit
   - Encoding: H.264/MPEG-2/JPEG/VP8/VP9/HEVC/HEVC 10-bit/AVC low power 
CQP/CBR/VBR mode
   - VPP: CSC/scaling/NoiseReduction/Deinterlacing{Bob, MotionAdaptive, 
MotionCompensated}/ColorBalance/STD
* Add support for H264 FEI
* Add support for HEVC ROI encoding
* Add support for intensity compensation for VC-1 decoding
* Improve the quality of the H264 encoder on BDW/BSW
* Improve the CSC performance between I420/NV12/P010/YUY2/VYUY format
* Improve the performace of va{Get, Put}Image for I420/NV12/P010/YUY2/VYUY 
format
* Fix image corruption for VP9 decoding
* Fix race condition in wayland support
* Fix ROI support in VDEnc support
* Fix corrupted stream when using VDEnc CBR/VBR
* Fix GCC 7.1.1 warnings/errors
* Update the shader for HEVC encoding

The upstream package name now is intel-vaapi-driver instead of 
libva-intel-driver.

Updated to point to release tarball instead of git. Also, changed
the URLs to point to new project page.

Signed-off-by: Anuj Mittal 
---
  conf/include/maintainers.inc |  2 +-
  ...intel-driver_1.8.3.bb => intel-vaapi-driver_2.0.0.bb} | 16 +++-
  recipes-multimedia/libva/va-intel.bb |  4 ++--
  3 files changed, 10 insertions(+), 12 deletions(-)
  rename recipes-multimedia/libva/{libva-intel-driver_1.8.3.bb => 
intel-vaapi-driver_2.0.0.bb} (62%)

diff --git a/conf/include/maintainers.inc b/conf/include/maintainers.inc
index 64896c3..0ab61ab 100644
--- a/conf/include/maintainers.inc
+++ b/conf/include/maintainers.inc
@@ -8,7 +8,7 @@ RECIPE_MAINTAINER_pn-intel-gpu-tools = "Anuj Mittal 
"
  RECIPE_MAINTAINER_pn-intel-microcode = "California Sullivan 
"
  RECIPE_MAINTAINER_pn-core-image-minimal-initramfs = "California Sullivan 
"
  RECIPE_MAINTAINER_pn-iucode-tool = "California Sullivan 
"
-RECIPE_MAINTAINER_pn-libva-intel-driver = "Anuj Mittal "
+RECIPE_MAINTAINER_pn-intel-vaapi-driver = "Anuj Mittal "
  RECIPE_MAINTAINER_pn-libyami = "Anuj Mittal "
  RECIPE_MAINTAINER_pn-libyami-utils = "Anuj Mittal "
  RECIPE_MAINTAINER_pn-linux-intel = "California Sullivan 
"
diff --git a/recipes-multimedia/libva/libva-intel-driver_1.8.3.bb 
b/recipes-multimedia/libva/intel-vaapi-driver_2.0.0.bb
similarity index 62%
rename from recipes-multimedia/libva/libva-intel-driver_1.8.3.bb
rename to recipes-multimedia/libva/intel-vaapi-driver_2.0.0.bb
index 72451c0..e651107 100644
--- a/recipes-multimedia/libva/libva-intel-driver_1.8.3.bb
+++ b/recipes-multimedia/libva/intel-vaapi-driver_2.0.0.bb
@@ -1,10 +1,10 @@
  SUMMARY = "VA driver for Intel G45 & HD Graphics family"
-DESCRIPTION = "libva-driver-intel is the VA-API implementation \
+DESCRIPTION = "intel-vaapi-driver is the VA-API implementation \
  for Intel G45 chipsets and Intel HD Graphics for Intel Core \
  processor family."
  
-HOMEPAGE = "http://www.freedesktop.org/wiki/Software/vaapi;

-BUGTRACKER = "https://bugs.freedesktop.org;
+HOMEPAGE = "https://github.com/intel/intel-vaapi-driver;
+BUGTRACKER = "https://github.com/intel/intel-vaapi-driver/issues;
  
  LICENSE = "MIT"

  LIC_FILES_CHKSUM = "file://COPYING;md5=2e48940f94acb0af582e5ef03537800f"
@@ -13,11 +13,11 @@ COMPATIBLE_HOST = '(i.86|x86_64).*-linux'
  
  DEPENDS = "libva libdrm"
  
-SRC_URI = "git://github.com/01org/intel-vaapi-driver.git;branch=v1.8-branch"

-# 1.8.3 

[meta-intel] [PATCH] linux-yocto: remove 4.4, 4.9, and 4.10 bbappends

2018-02-06 Thread California Sullivan
These have been removed from OE-core.

Signed-off-by: California Sullivan 
---
 recipes-kernel/linux/linux-yocto-rt_4.10.bbappend  |  9 --
 recipes-kernel/linux/linux-yocto-rt_4.4.bbappend   | 25 
 recipes-kernel/linux/linux-yocto-rt_4.9.bbappend   |  9 --
 .../linux/linux-yocto-tiny_4.10.bbappend   | 15 --
 recipes-kernel/linux/linux-yocto-tiny_4.4.bbappend | 26 -
 recipes-kernel/linux/linux-yocto-tiny_4.9.bbappend | 24 
 recipes-kernel/linux/linux-yocto_4.10.bbappend | 17 ---
 recipes-kernel/linux/linux-yocto_4.4.bbappend  | 33 --
 recipes-kernel/linux/linux-yocto_4.9.bbappend  | 17 ---
 9 files changed, 175 deletions(-)
 delete mode 100644 recipes-kernel/linux/linux-yocto-rt_4.10.bbappend
 delete mode 100644 recipes-kernel/linux/linux-yocto-rt_4.4.bbappend
 delete mode 100644 recipes-kernel/linux/linux-yocto-rt_4.9.bbappend
 delete mode 100644 recipes-kernel/linux/linux-yocto-tiny_4.10.bbappend
 delete mode 100644 recipes-kernel/linux/linux-yocto-tiny_4.4.bbappend
 delete mode 100644 recipes-kernel/linux/linux-yocto-tiny_4.9.bbappend
 delete mode 100644 recipes-kernel/linux/linux-yocto_4.10.bbappend
 delete mode 100644 recipes-kernel/linux/linux-yocto_4.4.bbappend
 delete mode 100644 recipes-kernel/linux/linux-yocto_4.9.bbappend

diff --git a/recipes-kernel/linux/linux-yocto-rt_4.10.bbappend 
b/recipes-kernel/linux/linux-yocto-rt_4.10.bbappend
deleted file mode 100644
index de336b04..
--- a/recipes-kernel/linux/linux-yocto-rt_4.10.bbappend
+++ /dev/null
@@ -1,9 +0,0 @@
-KERNEL_FEATURES_INTEL_COMMON ?= ""
-
-COMPATIBLE_MACHINE_core2-32-intel-common = "${MACHINE}"
-KMACHINE_core2-32-intel-common = "intel-core2-32"
-KERNEL_FEATURES_append_core2-32-intel-common = 
"${KERNEL_FEATURES_INTEL_COMMON}"
-
-COMPATIBLE_MACHINE_corei7-64-intel-common = "${MACHINE}"
-KMACHINE_corei7-64-intel-common = "intel-corei7-64"
-KERNEL_FEATURES_append_corei7-64-intel-common = 
"${KERNEL_FEATURES_INTEL_COMMON}"
diff --git a/recipes-kernel/linux/linux-yocto-rt_4.4.bbappend 
b/recipes-kernel/linux/linux-yocto-rt_4.4.bbappend
deleted file mode 100644
index a7c13abc..
--- a/recipes-kernel/linux/linux-yocto-rt_4.4.bbappend
+++ /dev/null
@@ -1,25 +0,0 @@
-FILESEXTRAPATHS_prepend_intel-x86-common := "${THISDIR}/${PN}:"
-
-LINUX_VERSION_INTEL_COMMON = "4.4.113"
-SRCREV_META_INTEL_COMMON ?= "b149d14ccae8349ab33e101f6af233a12f4b17ba"
-SRCREV_MACHINE_INTEL_COMMON ?= "1b020b6a41e153456442e201a06cb34ae8f7cbf3"
-
-KBRANCH_INTEL_COMMON = "standard/preempt-rt/intel/base"
-
-KERNEL_FEATURES_INTEL_COMMON ?= ""
-
-LINUX_VERSION_core2-32-intel-common = "${LINUX_VERSION_INTEL_COMMON}"
-COMPATIBLE_MACHINE_core2-32-intel-common = "${MACHINE}"
-KMACHINE_core2-32-intel-common = "intel-core2-32"
-KBRANCH_core2-32-intel-common = "${KBRANCH_INTEL_COMMON}"
-SRCREV_meta_core2-32-intel-common ?= "${SRCREV_META_INTEL_COMMON}"
-SRCREV_machine_core2-32-intel-common ?= "${SRCREV_MACHINE_INTEL_COMMON}"
-KERNEL_FEATURES_append_core2-32-intel-common = 
"${KERNEL_FEATURES_INTEL_COMMON}"
-
-LINUX_VERSION_corei7-64-intel-common = "${LINUX_VERSION_INTEL_COMMON}"
-COMPATIBLE_MACHINE_corei7-64-intel-common = "${MACHINE}"
-KMACHINE_corei7-64-intel-common = "intel-corei7-64"
-KBRANCH_corei7-64-intel-common = "${KBRANCH_INTEL_COMMON}"
-SRCREV_meta_corei7-64-intel-common ?= "${SRCREV_META_INTEL_COMMON}"
-SRCREV_machine_corei7-64-intel-common ?= "${SRCREV_MACHINE_INTEL_COMMON}"
-KERNEL_FEATURES_append_corei7-64-intel-common = 
"${KERNEL_FEATURES_INTEL_COMMON}"
diff --git a/recipes-kernel/linux/linux-yocto-rt_4.9.bbappend 
b/recipes-kernel/linux/linux-yocto-rt_4.9.bbappend
deleted file mode 100644
index 3e591799..
--- a/recipes-kernel/linux/linux-yocto-rt_4.9.bbappend
+++ /dev/null
@@ -1,9 +0,0 @@
-KERNEL_FEATURES_INTEL_COMMON = ""
-
-COMPATIBLE_MACHINE_core2-32-intel-common = "${MACHINE}"
-KMACHINE_core2-32-intel-common = "intel-core2-32"
-KERNEL_FEATURES_append_core2-32-intel-common = 
"${KERNEL_FEATURES_INTEL_COMMON}"
-
-COMPATIBLE_MACHINE_corei7-64-intel-common = "${MACHINE}"
-KMACHINE_corei7-64-intel-common = "intel-corei7-64"
-KERNEL_FEATURES_append_corei7-64-intel-common = 
"${KERNEL_FEATURES_INTEL_COMMON}"
diff --git a/recipes-kernel/linux/linux-yocto-tiny_4.10.bbappend 
b/recipes-kernel/linux/linux-yocto-tiny_4.10.bbappend
deleted file mode 100644
index e8c27707..
--- a/recipes-kernel/linux/linux-yocto-tiny_4.10.bbappend
+++ /dev/null
@@ -1,15 +0,0 @@
-FILESEXTRAPATHS_prepend_intel-x86-common := "${THISDIR}/${PN}:"
-
-KERNEL_FEATURES_INTEL_COMMON ?= ""
-
-COMPATIBLE_MACHINE_core2-32-intel-common = "${MACHINE}"
-COMPATIBLE_MACHINE_corei7-64-intel-common = "${MACHINE}"
-
-KBRANCH_core2-32-intel-common = "standard/tiny/base"
-KBRANCH_corei7-64-intel-common = "standard/tiny/base"
-
-KMACHINE_core2-32-intel-common = "intel-core2-32"
-KMACHINE_corei7-64-intel-common = "intel-corei7-64"
-

[meta-intel] [PATCH v3] intel-vaapi-driver: upgrade to 2.0.0

2018-02-06 Thread Anuj Mittal
Major changes:

* Bump version to 2.0.0
* Add support for Coffee Lake (aka. CFL)
  - Decoding: H.264/MPEG-2/VC-1/JPEG/VP8/HEVC/HEVC 10-bit/VP9/VP9 10-bit
  - Encoding: H.264/MPEG-2/JPEG/VP8/VP9/HEVC/HEVC 10-bit/AVC low power 
CQP/CBR/VBR mode
  - VPP: CSC/scaling/NoiseReduction/Deinterlacing{Bob, MotionAdaptive, 
MotionCompensated}/ColorBalance/STD
* Add support for H264 FEI
* Add support for HEVC ROI encoding
* Add support for intensity compensation for VC-1 decoding
* Improve the quality of the H264 encoder on BDW/BSW
* Improve the CSC performance between I420/NV12/P010/YUY2/VYUY format
* Improve the performace of va{Get, Put}Image for I420/NV12/P010/YUY2/VYUY 
format
* Fix image corruption for VP9 decoding
* Fix race condition in wayland support
* Fix ROI support in VDEnc support
* Fix corrupted stream when using VDEnc CBR/VBR
* Fix GCC 7.1.1 warnings/errors
* Update the shader for HEVC encoding

The upstream package name now is intel-vaapi-driver instead of 
libva-intel-driver.

Updated to point to release tarball instead of git. Also, changed
the URLs to point to new project page.

Signed-off-by: Anuj Mittal 
---
 conf/include/maintainers.inc |  2 +-
 ...intel-driver_1.8.3.bb => intel-vaapi-driver_2.0.0.bb} | 16 +++-
 recipes-multimedia/libva/va-intel.bb |  4 ++--
 3 files changed, 10 insertions(+), 12 deletions(-)
 rename recipes-multimedia/libva/{libva-intel-driver_1.8.3.bb => 
intel-vaapi-driver_2.0.0.bb} (62%)

diff --git a/conf/include/maintainers.inc b/conf/include/maintainers.inc
index 64896c3..0ab61ab 100644
--- a/conf/include/maintainers.inc
+++ b/conf/include/maintainers.inc
@@ -8,7 +8,7 @@ RECIPE_MAINTAINER_pn-intel-gpu-tools = "Anuj Mittal 
"
 RECIPE_MAINTAINER_pn-intel-microcode = "California Sullivan 
"
 RECIPE_MAINTAINER_pn-core-image-minimal-initramfs = "California Sullivan 
"
 RECIPE_MAINTAINER_pn-iucode-tool = "California Sullivan 
"
-RECIPE_MAINTAINER_pn-libva-intel-driver = "Anuj Mittal "
+RECIPE_MAINTAINER_pn-intel-vaapi-driver = "Anuj Mittal "
 RECIPE_MAINTAINER_pn-libyami = "Anuj Mittal "
 RECIPE_MAINTAINER_pn-libyami-utils = "Anuj Mittal "
 RECIPE_MAINTAINER_pn-linux-intel = "California Sullivan 
"
diff --git a/recipes-multimedia/libva/libva-intel-driver_1.8.3.bb 
b/recipes-multimedia/libva/intel-vaapi-driver_2.0.0.bb
similarity index 62%
rename from recipes-multimedia/libva/libva-intel-driver_1.8.3.bb
rename to recipes-multimedia/libva/intel-vaapi-driver_2.0.0.bb
index 72451c0..e651107 100644
--- a/recipes-multimedia/libva/libva-intel-driver_1.8.3.bb
+++ b/recipes-multimedia/libva/intel-vaapi-driver_2.0.0.bb
@@ -1,10 +1,10 @@
 SUMMARY = "VA driver for Intel G45 & HD Graphics family"
-DESCRIPTION = "libva-driver-intel is the VA-API implementation \
+DESCRIPTION = "intel-vaapi-driver is the VA-API implementation \
 for Intel G45 chipsets and Intel HD Graphics for Intel Core \
 processor family."
 
-HOMEPAGE = "http://www.freedesktop.org/wiki/Software/vaapi;
-BUGTRACKER = "https://bugs.freedesktop.org;
+HOMEPAGE = "https://github.com/intel/intel-vaapi-driver;
+BUGTRACKER = "https://github.com/intel/intel-vaapi-driver/issues;
 
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://COPYING;md5=2e48940f94acb0af582e5ef03537800f"
@@ -13,11 +13,11 @@ COMPATIBLE_HOST = '(i.86|x86_64).*-linux'
 
 DEPENDS = "libva libdrm"
 
-SRC_URI = "git://github.com/01org/intel-vaapi-driver.git;branch=v1.8-branch"
-# 1.8.3 release tag
-SRCREV = "f1d9ceddc0e84ed8d44dd59017b0e19b75dd5dcd"
+SRC_URI = 
"https://github.com/intel/${BPN}/releases/download/${PV}/${BPN}-${PV}.tar.bz2;
+SRC_URI[md5sum] = "1288657b572b563b24ca27c60a10a032"
+SRC_URI[sha256sum] = 
"10f6b0a91f34715d8d4d9a9e0fb3cc0afe5fcf85355db1272bd5fff31522f469"
 
-S = "${WORKDIR}/git"
+UPSTREAM_CHECK_URI = "https://github.com/intel/intel-vaapi-driver/releases;
 
 inherit autotools pkgconfig distro_features_check
 
@@ -31,5 +31,3 @@ PACKAGECONFIG[wayland] = 
"--enable-wayland,--disable-wayland,wayland wayland-nat
 FILES_${PN} += "${libdir}/dri/*.so"
 FILES_${PN}-dev += "${libdir}/dri/*.la"
 FILES_${PN}-dbg += "${libdir}/dri/.debug"
-
-UPSTREAM_CHECK_GITTAGREGEX = "(?P\d+\.\d+(\.\d+)*)"
diff --git a/recipes-multimedia/libva/va-intel.bb 
b/recipes-multimedia/libva/va-intel.bb
index 88539e2..33b81a3 100644
--- a/recipes-multimedia/libva/va-intel.bb
+++ b/recipes-multimedia/libva/va-intel.bb
@@ -7,9 +7,9 @@ S = "${WORKDIR}"
 PR = "r1"
 
 def map_valibs(d):
-# The intel implementation requires the libva-intel-driver package
+# The intel implementation requires the intel-vaapi-driver package
 if bb.utils.contains('MACHINE_FEATURES', 'va-impl-intel', "1", "0", d) == 
"1":
-   return "libva libva-intel-driver"
+   

Re: [meta-intel] [PATCH v2] intel-vaapi-driver: upgrade to 2.0.0

2018-02-06 Thread Anuj Mittal
On 02/06/2018 10:19 AM, Anuj Mittal wrote:
> Major changes:
> 
> * Bump version to 2.0.0
> * Add support for Coffee Lake (aka. CFL)
>   - Decoding: H.264/MPEG-2/VC-1/JPEG/VP8/HEVC/HEVC 10-bit/VP9/VP9 10-bit
>   - Encoding: H.264/MPEG-2/JPEG/VP8/VP9/HEVC/HEVC 10-bit/AVC low power 
> CQP/CBR/VBR mode
>   - VPP: CSC/scaling/NoiseReduction/Deinterlacing{Bob, MotionAdaptive, 
> MotionCompensated}/ColorBalance/STD
> * Add support for H264 FEI
> * Add support for HEVC ROI encoding
> * Add support for intensity compensation for VC-1 decoding
> * Improve the quality of the H264 encoder on BDW/BSW
> * Improve the CSC performance between I420/NV12/P010/YUY2/VYUY format
> * Improve the performace of va{Get, Put}Image for I420/NV12/P010/YUY2/VYUY 
> format
> * Fix image corruption for VP9 decoding
> * Fix race condition in wayland support
> * Fix ROI support in VDEnc support
> * Fix corrupted stream when using VDEnc CBR/VBR
> * Fix GCC 7.1.1 warnings/errors
> * Update the shader for HEVC encoding
> 
> The package name now is intel-vaapi-driver.
> 
> Updated to point to release tarball instead of git. Also, changed
> the URLs to point to new project page.

Sorry, I just realized that I sent an older version of this change from
another tree :( I will send v3.

Thanks,

Anuj
-- 
___
meta-intel mailing list
meta-intel@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-intel