File tree Expand file tree Collapse file tree 4 files changed +22
-6
lines changed
Expand file tree Collapse file tree 4 files changed +22
-6
lines changed Original file line number Diff line number Diff line change 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
419Version 2.0.0 - 21.Oct.2017
520* Bump VA-API version to 1.0.0 and libva to 2.0.0
Original file line number Diff line number Diff line change 2727# - reset micro version to zero when minor version is incremented
2828# - reset minor version to zero when major version is incremented
2929m4_define ( [ va_api_major_version] , [ 1] )
30- m4_define ( [ va_api_minor_version] , [ 0 ] )
30+ m4_define ( [ va_api_minor_version] , [ 1 ] )
3131m4_define ( [ va_api_micro_version] , [ 0] )
3232
3333m4_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
4343m4_define ( [ libva_major_version] , [ m4_eval ( va_api_major_version + 1 ) ] )
4444m4_define ( [ libva_minor_version] , [ m4_eval ( va_api_minor_version ) ] )
45- m4_define ( [ libva_micro_version] , [ 1 ] )
45+ m4_define ( [ libva_micro_version] , [ 0 ] )
4646m4_define ( [ libva_pre_version] , [ 1] )
4747
4848m4_define ( [ libva_version] ,
Original file line number Diff line number Diff line change 77# - reset micro version to zero when VA-API major or minor version is changed
88project (
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
2121va_api_major_version = 1
22- va_api_minor_version = 0
22+ va_api_minor_version = 1
2323va_api_micro_version = 0
2424
2525va_api_version = ' @0@.@1@.@2@' .format(va_api_major_version,
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments