Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package libmfx-gen for openSUSE:Factory checked in at 2022-10-03 15:59:32 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libmfx-gen (Old) and /work/SRC/openSUSE:Factory/.libmfx-gen.new.2275 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libmfx-gen" Mon Oct 3 15:59:32 2022 rev:6 rq:1007270 version:22.4.4 Changes: -------- --- /work/SRC/openSUSE:Factory/libmfx-gen/libmfx-gen.changes 2022-07-11 19:11:16.115771640 +0200 +++ /work/SRC/openSUSE:Factory/.libmfx-gen.new.2275/libmfx-gen.changes 2022-10-03 15:59:33.918979075 +0200 @@ -1,0 +2,7 @@ +Fri Sep 30 13:42:35 UTC 2022 - Stefan Dirsch <sndir...@suse.com> + +- u_libva-2.16.0.patch + * fixes build against libva 2.16.0 + * culprit: https://github.com/intel/libva/commit/8682f9e30f2fabf2ccc6f7609db035ed1af44703 + +------------------------------------------------------------------- New: ---- u_libva-2.16.0.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libmfx-gen.spec ++++++ --- /var/tmp/diff_new_pack.lcol9J/_old 2022-10-03 15:59:34.430980101 +0200 +++ /var/tmp/diff_new_pack.lcol9J/_new 2022-10-03 15:59:34.438980117 +0200 @@ -28,6 +28,7 @@ Source0: intel-onevpl-%{version}.tar.gz Source1: supplements.inc Source2: generate-supplements.sh +Patch0: u_libva-2.16.0.patch BuildRequires: cmake BuildRequires: gcc-c++ BuildRequires: pkgconfig ++++++ u_libva-2.16.0.patch ++++++ diff -u -r -p oneVPL-intel-gpu-intel-onevpl-22.4.4.orig/_studio/mfx_lib/encode_hw/av1/linux/base/av1ehw_base_va_packer_lin.cpp oneVPL-intel-gpu-intel-onevpl-22.4.4/_studio/mfx_lib/encode_hw/av1/linux/base/av1ehw_base_va_packer_lin.cpp --- oneVPL-intel-gpu-intel-onevpl-22.4.4.orig/_studio/mfx_lib/encode_hw/av1/linux/base/av1ehw_base_va_packer_lin.cpp 2022-09-30 15:37:10.498382000 +0200 +++ oneVPL-intel-gpu-intel-onevpl-22.4.4/_studio/mfx_lib/encode_hw/av1/linux/base/av1ehw_base_va_packer_lin.cpp 2022-09-30 15:40:08.100506000 +0200 @@ -86,7 +86,7 @@ void InitSPS( sps.seq_fields.bits.enable_restoration = bs_sh.enable_restoration; const mfxExtCodingOption2& CO2 = ExtBuffer::Get(par); - sps.reserved8b = CO2.BRefType == MFX_B_REF_PYRAMID; + sps.hierarchical_flag = CO2.BRefType == MFX_B_REF_PYRAMID; } void InitPPS( @@ -451,7 +451,7 @@ void UpdatePPS( pps.qmatrix_flags.bits.qm_u = bs_fh.quantization_params.qm_u; pps.qmatrix_flags.bits.qm_v = bs_fh.quantization_params.qm_v; - pps.reserved8bits0 = static_cast<mfxU8>(task.PyramidLevel + 1); + pps.hierarchical_level_plus1 = static_cast<mfxU8>(task.PyramidLevel + 1); pps.skip_frames_reduced_size = static_cast<mfxI32>(task.PrevRepeatedFrameBytes); }