Skip to content

Commit

Permalink
libva 2.2.0 pre1
Browse files Browse the repository at this point in the history
Update NEWS and Bump VA API version to 1.2.0

Signed-off-by: Haihao Xiang <haihao.xiang@intel.com>
  • Loading branch information
xhaihao committed Jun 27, 2018
1 parent b3be72a commit 4feed85
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 5 deletions.
12 changes: 11 additions & 1 deletion NEWS
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
libva NEWS -- summary of user visible changes. 2018-02-12
libva NEWS -- summary of user visible changes. 2018-07-xx
Copyright (C) 2009-2018 Intel Corporation

Version 2.2.0 - DD.July.2018
* Bump VA-API version to 1.2.0 and libva to 2.2.0
* Add support for hevc range extension decoding
* Add support for fast intra prediction in HEVC FEI
* Add 10/12-bit YUV render target formats
* Add fourcc code for Y210/Y216/Y410/Y416/RGB565/BGR565
* Add VA_STATUS_ERROR_NOT_ENOUGH_BUFFER
* Add VA_SURFACE_ATTRIB_USAGE_HINT_EXPORT
* Improve documentation

Version 2.1.0 - 12.Feb.2018
* Bump VA-API version to 1.1.0 and libva to 2.1.0
* Add API for multi-frame processing
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
# - reset micro version to zero when minor version is incremented
# - reset minor version to zero when major version is incremented
m4_define([va_api_major_version], [1])
m4_define([va_api_minor_version], [1])
m4_define([va_api_minor_version], [2])
m4_define([va_api_micro_version], [0])

m4_define([va_api_version],
Expand All @@ -42,7 +42,7 @@ m4_define([va_api_version],
# - reset micro version to zero when VA-API major or minor version is changed
m4_define([libva_major_version], [m4_eval(va_api_major_version + 1)])
m4_define([libva_minor_version], [m4_eval(va_api_minor_version)])
m4_define([libva_micro_version], [1])
m4_define([libva_micro_version], [0])
m4_define([libva_pre_version], [1])

m4_define([libva_version],
Expand Down
4 changes: 2 additions & 2 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# - reset micro version to zero when VA-API major or minor version is changed
project(
'libva', 'c',
version : '2.1.1.1',
version : '2.2.0.1',
meson_version : '>= 0.37.0',
default_options : [ 'warning_level=1',
'buildtype=debugoptimized' ])
Expand All @@ -19,7 +19,7 @@ project(
# - reset micro version to zero when minor version is incremented
# - reset minor version to zero when major version is incremented
va_api_major_version = 1
va_api_minor_version = 1
va_api_minor_version = 2
va_api_micro_version = 0

va_api_version = '@0@.@1@.@2@'.format(va_api_major_version,
Expand Down
1 change: 1 addition & 0 deletions va/va.c
Original file line number Diff line number Diff line change
Expand Up @@ -402,6 +402,7 @@ static VAStatus va_openDriver(VADisplay dpy, char *driver_name)
int minor;
} compatible_versions[] = {
{ VA_MAJOR_VERSION, VA_MINOR_VERSION },
{ VA_MAJOR_VERSION, 1 },
{ VA_MAJOR_VERSION, 0 },
{ -1, }
};
Expand Down

0 comments on commit 4feed85

Please sign in to comment.