Skip to content

Commit

Permalink
libva 2.1.0.pre1
Browse files Browse the repository at this point in the history
Bump VA-API version to 1.1.0

Signed-off-by: Xiang, Haihao <[email protected]>
  • Loading branch information
xhaihao committed Feb 2, 2018
1 parent 9b4033f commit e812daf
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 6 deletions.
19 changes: 17 additions & 2 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
libva NEWS -- summary of user visible changes. 2017-10-21
Copyright (C) 2009-2017 Intel Corporation
libva NEWS -- summary of user visible changes. 2018-02-xx
Copyright (C) 2009-2018 Intel Corporation

Version 2.1.0 - DD.Feb.2018
* Bump VA-API version to 1.1.0 and libva to 2.1.0
* Add API for multi-frame processing
* Add entrypoint VAEntrypointStats for Statistics
* Add data structures for HEVC FEI support
* Add new attributes for decoding/encoding/video processing
* Add new VPP filter for Total Color Correction
* Add blending interface in VPP
* Add rotation interface in VPP
* Add mirroring interface in VPP
* Add Chroma siting flags in VPP
* Add new color standard definitions
* Add new interface for exporting surface
* Add message callbacks for drivers to use

Version 2.0.0 - 21.Oct.2017
* Bump VA-API version to 1.0.0 and libva to 2.0.0
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], [0])
m4_define([va_api_minor_version], [1])
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.0.1.1',
version : '2.1.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 = 0
va_api_minor_version = 1
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, 0 },
{ -1, }
};

Expand Down

0 comments on commit e812daf

Please sign in to comment.