diff options
| author | Wang Zidan <b50113@freescale.com> | 2014-09-03 18:08:00 +0800 |
|---|---|---|
| committer | Otavio Salvador <otavio@ossystems.com.br> | 2014-11-10 18:55:23 -0200 |
| commit | 181299f5de1277e9f1fb7b7d29319e89b03d4be3 (patch) | |
| tree | 5aa2a61638fc1f57fed6a7ee72ad76c79b9fb81f | |
| parent | 8a9f998e582993cb069bb18d79470ebd232fdb64 (diff) | |
| download | meta-freescale-181299f5de1277e9f1fb7b7d29319e89b03d4be3.tar.gz | |
libfslvpuwrap: Upgrade from version 1.0.46 to 1.0.54
Remove the IOVirtmem patch since it has been merged into version 1.0.54.
libfslvpuwrap upgrade to version 1.0.54.
Changes about version 1.0.54:
- Include some bug fix.
- Enhance the robust in avcc conversion operation for corrupted clips.
- Add api to query the available frame buffer number in decoder code refine.
- Add config for intra refresh mode: VPU_ENC_CONF_INTRA_REFRESH_MODE.
- Change deblock related parameter to improve encode quality.
- Config stuff padding(disable) for mjpeg encoder.
- Add some parameters for unit test, include gamma, initialdelay, refreshratio, refreshmode.
- Add support for nal_size_length is equal to 1 or 2.
- Modify the checking of return value from IOGetVirtMem.
- For corrupted clip with only one frame, vpu report error instead of eos.
- Add detecting of resoluton change(bit20).
Signed-off-by: Zidan Wang <b50113@freescale.com>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
| -rw-r--r-- | meta-fsl-arm/recipes-multimedia/libfslvpuwrap/libfslvpuwrap/0001-vpu_wrapper-fix-tests-of-return-value-from-IOGetVirt.patch | 41 | ||||
| -rw-r--r-- | meta-fsl-arm/recipes-multimedia/libfslvpuwrap/libfslvpuwrap_1.0.54.bb (renamed from meta-fsl-arm/recipes-multimedia/libfslvpuwrap/libfslvpuwrap_1.0.46.bb) | 6 |
2 files changed, 3 insertions, 44 deletions
diff --git a/meta-fsl-arm/recipes-multimedia/libfslvpuwrap/libfslvpuwrap/0001-vpu_wrapper-fix-tests-of-return-value-from-IOGetVirt.patch b/meta-fsl-arm/recipes-multimedia/libfslvpuwrap/libfslvpuwrap/0001-vpu_wrapper-fix-tests-of-return-value-from-IOGetVirt.patch deleted file mode 100644 index ccd2d9ee7..000000000 --- a/meta-fsl-arm/recipes-multimedia/libfslvpuwrap/libfslvpuwrap/0001-vpu_wrapper-fix-tests-of-return-value-from-IOGetVirt.patch +++ /dev/null | |||
| @@ -1,41 +0,0 @@ | |||
| 1 | From 7ca66c10c05168c7d342df7c7a70d4a1ae0629f7 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Eric Nelson <eric.nelson@boundarydevices.com> | ||
| 3 | Date: Sat, 28 Jun 2014 09:45:09 -0700 | ||
| 4 | Subject: [PATCH] vpu_wrapper: fix tests of return value from IOGetVirtMem | ||
| 5 | |||
| 6 | IOGetVirtMem() returns a pointer or specifically -1 (MAP_FAILED) | ||
| 7 | in the case of failure. | ||
| 8 | |||
| 9 | Upstream-Status: Pending | ||
| 10 | |||
| 11 | Signed-off-by: Laci Tele <laci@boundarydevices.com> | ||
| 12 | Signed-off-by: Eric Nelson <eric.nelson@boundarydevices.com> | ||
| 13 | --- | ||
| 14 | vpu_wrapper.c | 4 ++-- | ||
| 15 | 1 file changed, 2 insertions(+), 2 deletions(-) | ||
| 16 | |||
| 17 | diff --git a/vpu_wrapper.c b/vpu_wrapper.c | ||
| 18 | index 9249174..148c5df 100755 | ||
| 19 | --- a/vpu_wrapper.c | ||
| 20 | +++ b/vpu_wrapper.c | ||
| 21 | @@ -6653,7 +6653,7 @@ VpuDecRetCode VPU_DecGetMem(VpuMemDesc* pInOutMem) | ||
| 22 | return VPU_DEC_RET_FAILURE; | ||
| 23 | } | ||
| 24 | ret=IOGetVirtMem(&buff); | ||
| 25 | - if(ret==0) //if(ret!=RETCODE_SUCCESS) | ||
| 26 | + if(ret == -1) //if(ret==MAP_FAILED) | ||
| 27 | { | ||
| 28 | VPU_ERROR("%s: get virtual memory failure: size=%d, ret=%d \r\n",__FUNCTION__,buff.size,ret); | ||
| 29 | return VPU_DEC_RET_FAILURE; | ||
| 30 | @@ -8277,7 +8277,7 @@ VpuEncRetCode VPU_EncGetMem(VpuMemDesc* pInOutMem) | ||
| 31 | return VPU_ENC_RET_FAILURE; | ||
| 32 | } | ||
| 33 | ret=IOGetVirtMem(&buff); | ||
| 34 | - if(ret==0) //if(ret!=RETCODE_SUCCESS) | ||
| 35 | + if(ret == -1) //if(ret==MAP_FAILED) | ||
| 36 | { | ||
| 37 | VPU_ENC_ERROR("%s: get virtual memory failure: size=%d, ret=%d \r\n",__FUNCTION__,buff.size,(UINT32)ret); | ||
| 38 | return VPU_ENC_RET_FAILURE; | ||
| 39 | -- | ||
| 40 | 1.9.1 | ||
| 41 | |||
diff --git a/meta-fsl-arm/recipes-multimedia/libfslvpuwrap/libfslvpuwrap_1.0.46.bb b/meta-fsl-arm/recipes-multimedia/libfslvpuwrap/libfslvpuwrap_1.0.54.bb index 8cc15234a..008911e1e 100644 --- a/meta-fsl-arm/recipes-multimedia/libfslvpuwrap/libfslvpuwrap_1.0.46.bb +++ b/meta-fsl-arm/recipes-multimedia/libfslvpuwrap/libfslvpuwrap_1.0.54.bb | |||
| @@ -7,10 +7,10 @@ SECTION = "multimedia" | |||
| 7 | LIC_FILES_CHKSUM = "file://EULA.txt;md5=93b784b1c11b3fffb1638498a8dde3f6" | 7 | LIC_FILES_CHKSUM = "file://EULA.txt;md5=93b784b1c11b3fffb1638498a8dde3f6" |
| 8 | 8 | ||
| 9 | SRC_URI = "${FSL_MIRROR}/${PN}-${PV}.bin;fsl-eula=true" | 9 | SRC_URI = "${FSL_MIRROR}/${PN}-${PV}.bin;fsl-eula=true" |
| 10 | SRC_URI[md5sum] = "1f50110cb6de8ebf767fb9c5f8baf20d" | 10 | S = "${WORKDIR}/${PN}-${PV}" |
| 11 | SRC_URI[sha256sum] = "7fc1258de338339d19a1a35167393fdc4d773682dfd9b951b197403a075f85fd" | ||
| 12 | 11 | ||
| 13 | SRC_URI_append = " file://0001-vpu_wrapper-fix-tests-of-return-value-from-IOGetVirt.patch" | 12 | SRC_URI[md5sum] = "b07a2d4e7bf44225353106ed209f6dac" |
| 13 | SRC_URI[sha256sum] = "eef2cc0c65d96d3a0f75d7134eef8ef0099ece2502d093fc13739edcb343e1dd" | ||
| 14 | 14 | ||
| 15 | inherit fsl-eula-unpack autotools pkgconfig | 15 | inherit fsl-eula-unpack autotools pkgconfig |
| 16 | 16 | ||
