Skip to content

Commit e812daf

Browse files
committed
libva 2.1.0.pre1
Bump VA-API version to 1.1.0 Signed-off-by: Xiang, Haihao <[email protected]>
1 parent 9b4033f commit e812daf

File tree

4 files changed

+22
-6
lines changed

4 files changed

+22
-6
lines changed

NEWS

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
1-
libva NEWS -- summary of user visible changes. 2017-10-21
2-
Copyright (C) 2009-2017 Intel Corporation
1+
libva NEWS -- summary of user visible changes. 2018-02-xx
2+
Copyright (C) 2009-2018 Intel Corporation
3+
4+
Version 2.1.0 - DD.Feb.2018
5+
* Bump VA-API version to 1.1.0 and libva to 2.1.0
6+
* Add API for multi-frame processing
7+
* Add entrypoint VAEntrypointStats for Statistics
8+
* Add data structures for HEVC FEI support
9+
* Add new attributes for decoding/encoding/video processing
10+
* Add new VPP filter for Total Color Correction
11+
* Add blending interface in VPP
12+
* Add rotation interface in VPP
13+
* Add mirroring interface in VPP
14+
* Add Chroma siting flags in VPP
15+
* Add new color standard definitions
16+
* Add new interface for exporting surface
17+
* Add message callbacks for drivers to use
318

419
Version 2.0.0 - 21.Oct.2017
520
* Bump VA-API version to 1.0.0 and libva to 2.0.0

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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], [0])
30+
m4_define([va_api_minor_version], [1])
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],

meson.build

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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.0.1.1',
10+
version : '2.1.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 = 0
22+
va_api_minor_version = 1
2323
va_api_micro_version = 0
2424

2525
va_api_version = '@0@.@1@.@2@'.format(va_api_major_version,

va/va.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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, 0 },
405406
{ -1, }
406407
};
407408

0 commit comments

Comments
 (0)