aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--C2VDAComponent.cpp2
-rw-r--r--C2VEAComponent.cpp2
-rw-r--r--tests/c2_comp_intf/C2VDACompIntf_test.cpp2
-rw-r--r--tests/c2_comp_intf/C2VEACompIntf_test.cpp2
4 files changed, 4 insertions, 4 deletions
diff --git a/C2VDAComponent.cpp b/C2VDAComponent.cpp
index 8cb72f3..ef0e7c3 100644
--- a/C2VDAComponent.cpp
+++ b/C2VDAComponent.cpp
@@ -319,7 +319,7 @@ C2VDAComponent::IntfImpl::IntfImpl(C2String name, const std::shared_ptr<C2Reflec
bool secureMode = name.find(".secure") != std::string::npos;
C2Allocator::id_t inputAllocators[] = {secureMode ? C2VDAAllocatorStore::SECURE_LINEAR
- : C2PlatformAllocatorStore::ION};
+ : C2PlatformAllocatorStore::BLOB};
C2Allocator::id_t outputAllocators[] = {C2VDAAllocatorStore::V4L2_BUFFERPOOL};
diff --git a/C2VEAComponent.cpp b/C2VEAComponent.cpp
index e19fbd0..7683f41 100644
--- a/C2VEAComponent.cpp
+++ b/C2VEAComponent.cpp
@@ -537,7 +537,7 @@ C2VEAComponent::IntfImpl::IntfImpl(C2String name, const std::shared_ptr<C2Reflec
C2Allocator::id_t inputAllocators[] = {C2PlatformAllocatorStore::GRALLOC};
- C2Allocator::id_t outputAllocators[] = {C2PlatformAllocatorStore::ION};
+ C2Allocator::id_t outputAllocators[] = {C2PlatformAllocatorStore::BLOB};
addParameter(
DefineParam(mInputAllocatorIds, C2_PARAMKEY_INPUT_ALLOCATORS)
diff --git a/tests/c2_comp_intf/C2VDACompIntf_test.cpp b/tests/c2_comp_intf/C2VDACompIntf_test.cpp
index bc5420b..e7ec859 100644
--- a/tests/c2_comp_intf/C2VDACompIntf_test.cpp
+++ b/tests/c2_comp_intf/C2VDACompIntf_test.cpp
@@ -28,7 +28,7 @@ const char* MEDIA_MIMETYPE_VIDEO_RAW = "video/raw";
const char* MEDIA_MIMETYPE_VIDEO_AVC = "video/avc";
const size_t kMaxInputBufferSize = 1048576;
-const C2Allocator::id_t kInputAllocators[] = {C2PlatformAllocatorStore::ION};
+const C2Allocator::id_t kInputAllocators[] = {C2PlatformAllocatorStore::BLOB};
const C2Allocator::id_t kOutputAllocators[] = {C2VDAAllocatorStore::V4L2_BUFFERPOOL};
const C2Allocator::id_t kSurfaceAllocator = C2VDAAllocatorStore::V4L2_BUFFERQUEUE;
const C2BlockPool::local_id_t kDefaultOutputBlockPool = C2BlockPool::BASIC_GRAPHIC;
diff --git a/tests/c2_comp_intf/C2VEACompIntf_test.cpp b/tests/c2_comp_intf/C2VEACompIntf_test.cpp
index b797e60..f3bca77 100644
--- a/tests/c2_comp_intf/C2VEACompIntf_test.cpp
+++ b/tests/c2_comp_intf/C2VEACompIntf_test.cpp
@@ -27,7 +27,7 @@ constexpr const char* MEDIA_MIMETYPE_VIDEO_RAW = "video/raw";
constexpr const char* MEDIA_MIMETYPE_VIDEO_AVC = "video/avc";
constexpr C2Allocator::id_t kInputAllocators[] = {C2PlatformAllocatorStore::GRALLOC};
-constexpr C2Allocator::id_t kOutputAllocators[] = {C2PlatformAllocatorStore::ION};
+constexpr C2Allocator::id_t kOutputAllocators[] = {C2PlatformAllocatorStore::BLOB};
constexpr C2BlockPool::local_id_t kDefaultOutputBlockPool = C2BlockPool::BASIC_LINEAR;
class C2VEACompIntfTest : public C2CompIntfTest {