mv3d: fix wrong parameters order 38/282738/1 accepted/tizen_7.0_unified_hotfix tizen_7.0_hotfix accepted/tizen/7.0/unified/hotfix/20221116.104736 accepted/tizen/unified/20221012.014917 tizen_7.0_m2_release
authorTae-Young Chung <ty83.chung@samsung.com>
Tue, 11 Oct 2022 03:30:59 +0000 (12:30 +0900)
committerTae-Young Chung <ty83.chung@samsung.com>
Tue, 11 Oct 2022 03:31:09 +0000 (12:31 +0900)
[Version]: 0.23.36-0
[Issue type]: fix bad bug

Change-Id: I0c7e2c12afac2df7561fac3a072800d7bdc9e006
Signed-off-by: Tae-Young Chung <ty83.chung@samsung.com>
mv_3d/3d/src/Mv3d.cpp
packaging/capi-media-vision.spec

index 9982635..6cd83b7 100644 (file)
@@ -412,9 +412,9 @@ namespace mv3d
                        auto leftData = handle->mDfsAdaptor->getLeftData();
                        int ret = mv_source_fill_by_buffer(handle->mInternalSource,
                                                                static_cast<unsigned char*>(leftData.data),
+                                                               leftData.stride * leftData.height,
                                                                leftData.width,
                                                                leftData.height,
-                                                               leftData.stride * leftData.height,
                                                                leftData.type == DFS_DATA_TYPE_UINT8C3 ? MEDIA_VISION_COLORSPACE_RGB888 :
                                                                                                MEDIA_VISION_COLORSPACE_Y800);
                        if (MEDIA_VISION_ERROR_NONE != ret) {
index 58b02c4..60cb16c 100644 (file)
@@ -1,6 +1,6 @@
 Name:        capi-media-vision
 Summary:     Media Vision library for Tizen Native API
-Version:     0.23.35
+Version:     0.23.36
 Release:     0
 Group:       Multimedia/Framework
 License:     Apache-2.0 and BSD-3-Clause