• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

hardware/intel/common/libva


Commit MetaInfo

Revisionf0dfe5e762e7f4bc4755f01d83aadde0f53290d5 (tree)
Time2018-09-30 23:39:16
AuthorXinfengZhang <carl.zhang@inte...>
CommiterXinfengZhang

Log Message

libva 2.3.0 pre1

Bump VA-API version to 1.3.0 pre1 and libva to 2.3.0

Signed-off-by: XinfengZhang <carl.zhang@intel.com>

Change Summary

Incremental Difference

--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,17 @@
1-libva NEWS -- summary of user visible changes. 2018-07-xx
1+libva NEWS -- summary of user visible changes. 2018-09-30
22 Copyright (C) 2009-2018 Intel Corporation
33
4+version 2.3.0 - 30.Sep.2018
5+* Bump VA-API version to 1.3.0 and libva to 2.3.0
6+250b3dc Add max frame size parameters for multiple pass case in legacy mode
7+9c51135 Add new BRC mode AVBR
8+30c751f Add new interface for High Dynamic Range tone mapping
9+b6c50da Add missing enum to string conversions
10+dd20f1c Add hevc subsets parameters structure
11+b7a2ff1 Add Customized Noise Reduction (HVS) interfaces
12+6ae7173 Add new BRC mode definition QVBR
13+2ff28a1 Add more complete colour properties for use in VPP
14+
415 Version 2.2.0 - DD.July.2018
516 * Bump VA-API version to 1.2.0 and libva to 2.2.0
617 * Add support for hevc range extension decoding
--- a/configure.ac
+++ b/configure.ac
@@ -27,7 +27,7 @@
2727 # - reset micro version to zero when minor version is incremented
2828 # - reset minor version to zero when major version is incremented
2929 m4_define([va_api_major_version], [1])
30-m4_define([va_api_minor_version], [2])
30+m4_define([va_api_minor_version], [3])
3131 m4_define([va_api_micro_version], [0])
3232
3333 m4_define([va_api_version],
@@ -42,7 +42,7 @@ m4_define([va_api_version],
4242 # - reset micro version to zero when VA-API major or minor version is changed
4343 m4_define([libva_major_version], [m4_eval(va_api_major_version + 1)])
4444 m4_define([libva_minor_version], [m4_eval(va_api_minor_version)])
45-m4_define([libva_micro_version], [1])
45+m4_define([libva_micro_version], [0])
4646 m4_define([libva_pre_version], [1])
4747
4848 m4_define([libva_version],
--- a/meson.build
+++ b/meson.build
@@ -7,7 +7,7 @@
77 # - reset micro version to zero when VA-API major or minor version is changed
88 project(
99 'libva', 'c',
10- version : '2.2.1.1',
10+ version : '2.3.0.1',
1111 meson_version : '>= 0.37.0',
1212 default_options : [ 'warning_level=1',
1313 'buildtype=debugoptimized' ])
@@ -19,7 +19,7 @@ project(
1919 # - reset micro version to zero when minor version is incremented
2020 # - reset minor version to zero when major version is incremented
2121 va_api_major_version = 1
22-va_api_minor_version = 2
22+va_api_minor_version = 3
2323 va_api_micro_version = 0
2424
2525 va_api_version = '@0@.@1@.@2@'.format(va_api_major_version,
--- a/va/va.c
+++ b/va/va.c
@@ -402,6 +402,7 @@ static VAStatus va_openDriver(VADisplay dpy, char *driver_name)
402402 int minor;
403403 } compatible_versions[] = {
404404 { VA_MAJOR_VERSION, VA_MINOR_VERSION },
405+ { VA_MAJOR_VERSION, 2 },
405406 { VA_MAJOR_VERSION, 1 },
406407 { VA_MAJOR_VERSION, 0 },
407408 { -1, }