Change flag to allocate contiguous memory 15/226715/1 accepted/tizen_5.5_unified accepted/tizen_5.5_unified_wearable_hotfix tizen_5.5 tizen_5.5_wearable_hotfix accepted/tizen/5.5/unified/20200305.123355 accepted/tizen/5.5/unified/wearable/hotfix/20201027.123958 submit/tizen_5.5/20200305.051020 submit/tizen_5.5_wearable_hotfix/20201026.184301
authorJeongmo Yang <jm80.yang@samsung.com>
Thu, 5 Mar 2020 04:32:53 +0000 (13:32 +0900)
committerJeongmo Yang <jm80.yang@samsung.com>
Thu, 5 Mar 2020 04:40:36 +0000 (13:40 +0900)
[Version] 1.1.1
[Profile] Common
[Issue Type] Update

Change-Id: I678e640187fcd0da528a566d73187d3a56988288
Signed-off-by: Jeongmo Yang <jm80.yang@samsung.com>
packaging/nx-video-api.spec
src/nx_video_alloc.c

index 85d0e84c26add891b941b42275800c82f8d22d88..e7a9bb3d0ac742268bd77068f5ebb130349bc271 100644 (file)
@@ -1,5 +1,5 @@
 Name:    nx-video-api
-Version: 1.1.0
+Version: 1.1.1
 Release: 0
 License: LGPL-2.1+
 Summary: Nexell video APIs
index 08fab135669c17238558fd59cab3c21129deedf6..4379d0c4d47f4c17b08c490bd50e011780cdaa8c 100644 (file)
@@ -225,7 +225,11 @@ NX_AllocateVideoMemory (void *bufmgr, int width, int height, int32_t planes, uin
 {
   int gemFd[NX_MAX_PLANES] = { 0, };
   int dmaFd[NX_MAX_PLANES] = { 0, };
+#ifdef TIZEN_FEATURE_ARTIK530
+  int32_t flags = NEXELL_BO_DMA, i = 0;
+#else
   int32_t flags = 0, i = 0;
+#endif
   int32_t luStride, cStride;
   int32_t luVStride, cVStride;
   int32_t stride[NX_MAX_PLANES];