992934e00e
* feat: `ArrayBuffer:wrapData:withSize` init for iOS * Format * fix build error * Update ExampleFrameProcessorPlugin.m * docs: Add class docs for SharedArray
37 lines
633 B
C++
37 lines
633 B
C++
//
|
|
// MutableRawBuffer.h
|
|
// VisionCamera
|
|
//
|
|
// Created by Marc Rousavy on 17.01.24.
|
|
// Copyright © 2024 mrousavy. All rights reserved.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include <functional>
|
|
#include <jsi/jsi.h>
|
|
#include <memory>
|
|
|
|
namespace vision {
|
|
|
|
using namespace facebook;
|
|
|
|
class MutableRawBuffer : public jsi::MutableBuffer {
|
|
|
|
public:
|
|
explicit MutableRawBuffer(size_t size);
|
|
explicit MutableRawBuffer(uint8_t* data, size_t size, bool freeOnDealloc);
|
|
~MutableRawBuffer();
|
|
|
|
public:
|
|
uint8_t* data() override;
|
|
size_t size() const override;
|
|
|
|
private:
|
|
uint8_t* _data;
|
|
size_t _size;
|
|
bool _freeOnDealloc;
|
|
};
|
|
|
|
} // namespace vision
|