summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* libva 1.7.3libva-1.7.3v1.7-branchXiang, Haihao2016-11-102-3/+3
| | | | Signed-off-by: Xiang, Haihao <haihao.xiang@intel.com>
* Update NEWSlibva-1.7.3.pre1Xiang, Haihao2016-10-311-1/+8
| | | | Signed-off-by: Xiang, Haihao <haihao.xiang@intel.com>
* Bump VA-API version to 0.39.4Xiang, Haihao2016-10-311-1/+1
| | | | | Signed-off-by: Xiang, Haihao <haihao.xiang@intel.com> (cherry picked from commit 3b7e4999950a04fabd42edbead8c2f24c6cdf3cf)
* wayland: Check whether prime fd can be used in buffer sharing mechanismXiang, Haihao2016-10-312-2/+21
| | | | | Signed-off-by: Xiang, Haihao <haihao.xiang@intel.com> (cherry picked from commit a55ea7cb3143d57c8dba1b76ccea3511ea69adf2)
* New wayland-drm.xmlXiang, Haihao2016-10-312-2/+72
| | | | | | | Update wayland-drm-client-protocol.h as well Signed-off-by: Xiang, Haihao <haihao.xiang@intel.com> (cherry picked from commit d8719fb8b2d999c3de64def3a801778021c71f84)
* A simple encoder for H.264/AVC SVC temporal scalabilityXiang, Haihao2016-10-313-44/+3193
| | | | | | | | It is based on VA-API Signed-off-by: Xiang, Haihao <haihao.xiang@intel.com> Reviewed-by: Sean V Kelley <seanvk@posteo.de> (cherry picked from commit 7aa2dd979a3758e1f6378344b235595c5028a9e7)
* Add the comment for framerate in VAEncMiscParameterFrameRateXiang, Haihao2016-10-311-0/+8
| | | | | | | | | | | | | To express a frame rate, such as 7.5, we have to use 'numerator / denominator'. The high 2 bytes will be used as denominator and the low 2 bytes will be used as numerator. To keep backward compatible, the low 2 bytes is the real frame rate when the high 2 bytes is 0. Signed-off-by: Xiang, Haihao <haihao.xiang@intel.com> Reviewed-by: Sean V Kelley <seanvk@posteo.de> (cherry picked from commit 1ca62cedd41ed2061c3a9ddafadc59a4692a07c9)
* Merge and modify encoding bit-rate control per temporal layer.Xiang, Haihao2016-10-311-1/+86
| | | | | | | | | | | | | | | | Cherry-pick'ed from: e6f92ae: Added geneirc support for encoding bit-rate control per temporal layer 753ec17: va.h: add data structure for the structure of temporal layer encoding v2: Update the comment that user must send VAEncMiscParameterTemporalLayerStructure before VAEncMiscParameterRateControl and VAEncMiscParameterFrameRate and the condition for error return Signed-off-by: Jonathan Bian <jonathan.bian@intel.com> Signed-off-by: Austin Yuan <shengquan.yuan@intel.com> Signed-off-by: Zhangfei Zhang <zhangfei.zhang@intel.com> Signed-off-by: Xiang, Haihao <haihao.xiang@intel.com> Reviewed-by: Sean V Kelley <seanvk@posteo.de> (cherry picked from commit d12fc9823f3c09a834a071c2327ef8f9c1352649)
* libva 1.7.3.pre1 for developmentXiang, Haihao2016-10-311-2/+2
| | | | | | | | Signed-off-by: Xiang, Haihao <haihao.xiang@intel.com> (cherry picked from commit 2ebf897d51f1ac4e6620a830a402af0faa8df3ae) Conflicts: configure.ac
* libva 1.7.2libva-1.7.2Xiang, Haihao2016-09-052-3/+3
| | | | Signed-off-by: Xiang, Haihao <haihao.xiang@intel.com>
* Update NEWSlibva-1.7.2.pre1Xiang, Haihao2016-08-221-1/+9
| | | | Signed-off-by: Xiang, Haihao <haihao.xiang@intel.com>
* Encoding: Add ROI exampleZhao Yakui2016-08-221-6/+92
| | | | | | | | | | | | | | | v1: add --roi-test for test only for ROI. default only one region(0,0,120,120) has been test. v2: add ROI region size check to ensure region width/height < frame_width/4 or frame_height/4 if fram width/height < 120 add ROI attrib check v3: check the attrib return value for ROI Signed-off-by: Zhao Yakui <yakui.zhao@intel.com> Signed-off-by: ceciliapeng <cecilia.peng@intel.com> Signed-off-by: Pengfei Qu <Pengfei.Qu@intel.com> (cherry picked from commit e5f8db3434667a044122ad1973459aca0d44903c)
* va_trace: add traces for vp9encoderDaniel Charles2016-08-221-0/+126
| | | | | | | | | | | add trace information for VAEncPictureParameterBufferVP9 and VAEncSequenceParameterBufferVP9 also add the case for VAEncMiscParameterBufferType on va_TraceVP9Buf Signed-off-by: Daniel Charles <daniel.charles@intel.com> (cherry picked from commit b27feb9b8e62725fed959c090feb2f1c853f74b3)
* Bump VA-API version to 0.39.3Xiang, Haihao2016-08-221-1/+1
| | | | | Signed-off-by: Xiang, Haihao <haihao.xiang@intel.com> (cherry picked from commit 695f99ef0405cf4255e7767b44effb0da2fe706e)
* Add one flag to use the qp_delta instead of qp priority for ROI under ↵jialipen2016-08-221-14/+61
| | | | | | | | | | | | | | | | | | | | non-CQP mode Currently the roi_value in VAEncROI is used as the qp priority when VAConfigAttribRateControl != VA_RC_CQP. But some customers hope to use it as qp_delta like CQP mode. In such case one flag is added to indicate whether it is qp_priority or not. At the same time driver can export it in VAConfigAttribValEncROI to indicate whether the qp_delta is supported when VAConfigAttribRateControl != VA_RC_CQP. v2: update comments in va.h Signed-off-by: Zhao Yakui <yakui.zhao@intel.com> Signed-off-by: ceciliapeng <cecilia.peng@intel.com> Signed-off-by: Pengfei Qu <Pengfei.Qu@intel.com> Signed-off-by: Xiang, Haihao <haihao.xiang@intel.com> Reviewed-by: Sean V Kelley <seanvk@posteo.de> (cherry picked from commit 66c63e6eef3836e2243881f111553344edce54a5)
* Properly terminate parsed environment values with '\0'.Tobias Stoeckmann2016-08-222-2/+8
| | | | | | | | | | | | The function strncpy() does not guarantee to nul terminate the destination. In most cases, this cannot be triggered, but it is also used to parse user environment variables. These are allowed to be longer than 1023 characters, effectively resulting in an unterminated string. I've adjusted other places as well, because it won't hurt. https://bugs.freedesktop.org/show_bug.cgi?id=96677 (cherry picked from commit 1517fd276e12cac14c018d5a30792177eb6c59de)
* Changed 'c' variable 'char' data type to 'int' data type (v3)Lim Siew Hoon2016-08-223-3/+3
| | | | | | | The getopt_long func is return integer data type is more than 1 bytes. Signed-off-by: Lim Siew Hoon <siew.hoon.lim@intel.com> (cherry picked from commit def5691f789b897b47af7f2a7ffa3b135a93950d)
* Clean up the duplicate checking for unsuported source YUV formatLim Siew Hoon2016-08-221-3/+0
| | | | | Signed-off-by: Lim Siew Hoon <siew.hoon.lim@intel.com> (cherry picked from commit f7e22630bd18ed80d22da20a9dc18487938b6c8a)
* Fix the p->load_huffman_table[0] keep print first element in for loopLim Siew Hoon2016-08-221-1/+1
| | | | | Signed-off-by: Lim Siew Hoon <siew.hoon.lim@intel.com> (cherry picked from commit 6bf712ad26b11d2caa5d806c1bb31eaef12d382c)
* avoid U_row overwrite NULL value if src_fourcc and dst_fourcc is NV12Lim Siew Hoon2016-08-221-6/+12
| | | | | Signed-off-by: Lim Siew Hoon <siew.hoon.lim@intel.com> (cherry picked from commit 1f8aa1546182667cf70484b0c08959b08edb5a84)
* Fix infinite loopLim Siew Hoon2016-08-221-2/+3
| | | | | Signed-off-by: Lim Siew Hoon <siew.hoon.lim@intel.com> (cherry picked from commit 3a617e995435eafb87ea87dd1afc647d51d49582)
* Add assert check memory allocation potential NULL issueLim Siew Hoon2016-08-221-0/+3
| | | | | Signed-off-by: Lim Siew Hoon <siew.hoon.lim@intel.com> (cherry picked from commit c0fa72c00aa661faf51d7c1fb1275ef11c5a9667)
* Fix memory leak issue in open_display funcLim Siew Hoon2016-08-221-1/+3
| | | | | | | | If the !d->display is true, will exit without free memory block allocate for 'd'. Signed-off-by: Lim Siew Hoon <siew.hoon.lim@intel.com> (cherry picked from commit 5b185d937f354c462ddfe3dd754f7337dc6538c4)
* Fix test_06 failed and hitting assert checkLim Siew Hoon2016-08-221-0/+7
| | | | | | | Add in missing profile and entrypoint get from va.h Signed-off-by: Lim Siew Hoon <siew.hoon.lim@intel.com> (cherry picked from commit de8e9edcf110355d7733f970ff0205e4970465fb)
* Avoid access invalid memory location huffman_table for index 2..3 (v2)Lim Siew Hoon2016-08-221-8/+8
| | | | | | | | | The size of array huffman_table only 2 in VAHuffmanTableBufferJPEGBaseline default_huffman_table_param. The index in 2..3 in huffman_table[x] will be access invalid memory location in for loop that looping 4 times. Signed-off-by: Lim Siew Hoon <siew.hoon.lim@intel.com> (cherry picked from commit c56ebc89d19efdbf879a86ef5f0407ac9aad45af)
* Fix buffer overflow for array index out of bounds in test_07Lim Siew Hoon2016-08-221-2/+2
| | | | | | | | | | The size of array surface_1 is 2, but it passed to test_unique_surfaces func is 16 or 6 to do compare for surface_16. The index for surface_1 not in the array index range for surface_1 and access invalid memory location. Signed-off-by: Lim Siew Hoon <siew.hoon.lim@intel.com> (cherry picked from commit e4535e404d1dc33fb1fddf99f057c341fc652bfd)
* add assert check for potential NULL issue in test/encode/Lim Siew Hoon2016-08-224-0/+7
| | | | | Signed-off-by: Lim Siew Hoon <siew.hoon.lim@intel.com> (cherry picked from commit 1199b16ebd6488734d43c8d962d1d2d7eb42a37a)
* add assert to check for potential NULL issue in test_XXLim Siew Hoon2016-08-225-0/+7
| | | | | Signed-off-by: Lim Siew Hoon <siew.hoon.lim@intel.com> (cherry picked from commit 56f90c0dee7de287f9557c59d65f870240b3ada2)
* check memory alloc to avoid NULL and initialize value in YUV_blend_with_pic (v2)Lim Siew Hoon2016-08-221-2/+21
| | | | | | | | | | | v2: Add in second free(NULL) for pic_y and third free(NULL) for pic_u. Put back 'allocated' missing consider about the pic_y, pic_u and pic_v will be contains pic_y_old, pic_u_old and pic_v_old will be assign to pic_y, pic_u and pic_v. Signed-off-by: Lim Siew Hoon <siew.hoon.lim@intel.com> (cherry picked from commit 1c2997307e007c9a999b33da9c237dda370d1990)
* check memory allocation and initialize to zero value in save_recyuv (v2)Lim Siew Hoon2016-08-221-0/+34
| | | | | | | | | | v2: Remove not necessary check dst_Y against NULL for sencond free(NULL). Remove not necessary check dst_Y and dst_U against NULL for second free(NULL) and third free(NULL). Signed-off-by: Lim Siew Hoon <siew.hoon.lim@intel.com> (cherry picked from commit 8c0973050d825fb6a0734dd62fdf8b209aee8ad0)
* fix buffer overflow for dc_values and ac_values (v2)Lim Siew Hoon2016-08-221-8/+12
| | | | | | | | | | | | The dc_values only have 12 bytes and ac_value only 162 bytes but the memcpy did it for 16 bytes and 256 bytes copying thru hard code value. To avoid the array index out of bound again, recommend move to use sizeof. v2: Fix commit message typo from 265 bytes to 256 bytes. Signed-off-by: Lim Siew Hoon <siew.hoon.lim@intel.com> (cherry picked from commit c36778ff264b3c45b538db4bbfe6aea38fcb165e)
* Remove unused 'id' in va_wayland_drm_createLim Siew Hoon2016-08-221-1/+0
| | | | | | Signed-off-by: Lim Siew Hoon <siew.hoon.lim@intel.com> Reviewed-by: Sean V Kelley <seanvk@posteo.de> (cherry picked from commit c36971c682d890681fe839bbaa8a348fe845aa42)
* Remove unused local varibles in upload_source_YUV_once_for_all.Lim Siew Hoon2016-08-221-3/+0
| | | | | | Signed-off-by: Lim Siew Hoon <siew.hoon.lim@intel.com> Reviewed-by: Sean V Kelley <seanvk@posteo.de> (cherry picked from commit 4ea3e2f0b921cfbed30d0cfe795939df742e5cfd)
* Remove unused variable 'id' in va_wayland_emgd_create.Lim Siew Hoon2016-08-221-1/+0
| | | | | | Signed-off-by: Lim Siew Hoon <siew.hoon.lim@intel.com> Reviewed-by: Sean V Kelley <seanvk@posteo.de> (cherry picked from commit fb3d2ef558907d490e9d1183bba013ca8e75af9e)
* Remove unused 'k' in test func and pre func.Lim Siew Hoon2016-08-223-3/+3
| | | | | | Signed-off-by: Lim Siew Hoon <siew.hoon.lim@intel.com> Reviewed-by: Sean V Kelley <seanvk@posteo.de> (cherry picked from commit 979894b6812d977d2784a3c7c3091ee517473da2)
* Remove unused 'i' in va_TraceVAEncPackedHeaderParameterBufferTypeLim Siew Hoon2016-08-221-1/+0
| | | | | | Signed-off-by: Lim Siew Hoon <siew.hoon.lim@intel.com> Reviewed-by: Sean V Kelley <seanvk@posteo.de> (cherry picked from commit d8397f79e0ded7c8a87098996af3c603bba2d61f)
* Remove unused 'trace_index' in va_TraceInitLim Siew Hoon2016-08-221-1/+0
| | | | | | Signed-off-by: Lim Siew Hoon <siew.hoon.lim@intel.com> Reviewed-by: Sean V Kelley <seanvk@posteo.de> (cherry picked from commit 98ee039437488047529746956f9d4505f86fa74f)
* Remove unused 'j' in va_TraceVAPictureParameterBufferVP9.Lim Siew Hoon2016-08-221-1/+1
| | | | | | Signed-off-by: Lim Siew Hoon <siew.hoon.lim@intel.com> Reviewed-by: Sean V Kelley <seanvk@posteo.de> (cherry picked from commit 6bfc10804d24e4ba49c2c07f15115f3b549323bd)
* Remove unused 'check_sum' and 'j' in va_TraceSurfaceLim Siew Hoon2016-08-221-2/+1
| | | | | | Signed-off-by: Lim Siew Hoon <siew.hoon.lim@intel.com> Reviewed-by: Sean V Kelley <seanvk@posteo.de> (cherry picked from commit 42ab32a8042691988abb469bfa36467d7618b9ad)
* Remove unused 'i' and 'buf_list' in va_TraceDestroyBufferLim Siew Hoon2016-08-221-3/+0
| | | | | | Signed-off-by: Lim Siew Hoon <siew.hoon.lim@intel.com> Reviewed-by: Sean V Kelley <seanvk@posteo.de> (cherry picked from commit 12beda5f22e0d223367ffd91d40c17e6ab2b631e)
* libva 1.7.2.pre1 for developmentXiang, Haihao2016-08-221-2/+2
| | | | | | | | Signed-off-by: Xiang, Haihao <haihao.xiang@intel.com> (cherry picked from commit aa8df4c3d10d0609ffac235ffdc76c5e05763a23) Conflicts: configure.ac
* libva 1.7.1libva-1.7.1Xiang, Haihao2016-06-212-3/+3
| | | | Signed-off-by: Xiang, Haihao <haihao.xiang@intel.com>
* Update NEWSlibva-1.7.1.pre1Xiang, Haihao2016-06-031-2/+10
| | | | Signed-off-by: Xiang, Haihao <haihao.xiang@intel.com>
* fix check NULL issuespeng.chen2016-05-271-3/+16
| | | | | | | | | | v2: code clean up v1: initial Signed-off-by: peng.chen <peng.c.chen@intel.com>
* Bump VA-API version to 0.39.2Xiang, Haihao2016-05-271-1/+1
| | | | Signed-off-by: Xiang, Haihao <haihao.xiang@intel.com>
* Add API for VP9 EncodeWang, Ce2016-05-274-0/+601
| | | | | | | | | Signed-off-by: Wang, Ce <ce.wang@intel.com> Signed-off-by: bzhao11 <bo.zhao@intel.com> [Haihao: include va_enc_vp9.h in va core include file] Signed-off-by: Xiang, Haihao <haihao.xiang@intel.com> (cherry picked from commit 1c314d6a6e6aad9c73ec4837d78e4e3c99137f3b)
* Fix missing parameter of vatrace DisplayAttribute printAustin Yuan2016-05-241-4/+5
| | | | | | | | | | [49270.199330] ==========va_TraceMaxNumDisplayAttributes [49270.199334] max_display_attributes = 6 [49270.199362] num_attributes = 5 [49270.199365] attr_list[-1429804448] = [49270.199367] typ = 0x00000000 Signed-off-by: Austin Yuan <shengquan.yuan@intel.com>
* trace: Cleanup some HEVC printsScott D Phillips2016-05-221-46/+62
| | | | | | | | Some fields in HEVC buffers had extraneous timestamps interspersed with the traced data. Signed-off-by: Scott D Phillips <scott.d.phillips@intel.com> Reviewed-by: Sean V Kelley <seanvk@posteo.de>
* trace: Add `va_TracePrint`, `va_TraceVPrint` static functionsScott D Phillips2016-05-221-16/+34
| | | | | | | | These functions are similar to va_TraceMsg() but without emitting a timestamp. Signed-off-by: Scott D Phillips <scott.d.phillips@intel.com> Reviewed-by: Sean V Kelley <seanvk@posteo.de>
* add the support of multiple context tracingpeng.chen2016-05-133-219/+1069
| | | | | | | | | | | | | | | Libva has a limited tracing function before. If more than one context is created in one instance, then this tracing can't work and output wrong log messages. This patch fixes this problem. Tracing is possible while multiple contexts are being used. Each log file name is suffixed by thread id. This file has all log message from this thread. Each surface or codedbuf dump file name is suffixed by context id. This file has all surface or codedbuf data of this context. Signed-off-by: peng.chen <peng.c.chen@intel.com> Reviewed-by: Sean V Kelley <sean.v.kelley@intel.com> Tested-by: Daniel Charles <daniel.charles@intel.com>