HomeSort by relevance Sort by last modified time
    Searched defs:ByteArrayOutput (Results 1 - 2 of 2) sorted by null

  /frameworks/av/media/img_utils/src/
ByteArrayOutput.cpp 17 #include <img_utils/ByteArrayOutput.h>
24 ByteArrayOutput::ByteArrayOutput() {}
26 ByteArrayOutput::~ByteArrayOutput() {}
28 status_t ByteArrayOutput::open() {
32 status_t ByteArrayOutput::write(const uint8_t* buf, size_t offset, size_t count) {
34 ALOGE("%s: Failed to write to ByteArrayOutput.", __FUNCTION__);
40 status_t ByteArrayOutput::close() {
45 size_t ByteArrayOutput::getSize() const
    [all...]
  /frameworks/av/media/img_utils/include/img_utils/
ByteArrayOutput.h 34 class ANDROID_API ByteArrayOutput : public Output {
37 ByteArrayOutput();
39 virtual ~ByteArrayOutput();
42 * Open this ByteArrayOutput.
58 * Close this ByteArrayOutput.

Completed in 865 milliseconds