OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:JpegStub
(Results
1 - 5
of
5
) sorted by null
/device/generic/goldfish/camera/
JpegStub.h
22
struct
JpegStub
{
27
void JpegStub_init(
JpegStub
* stub, int* strides);
28
void JpegStub_cleanup(
JpegStub
* stub);
29
int JpegStub_compress(
JpegStub
* stub, const void* image,
31
void JpegStub_getCompressedImage(
JpegStub
* stub, void* buff);
32
size_t JpegStub_getCompressedSize(
JpegStub
* stub);
JpegCompressor.cpp
40
typedef void (*InitFunc)(
JpegStub
* stub, int* strides);
41
typedef void (*CleanupFunc)(
JpegStub
* stub);
42
typedef int (*CompressFunc)(
JpegStub
* stub, const void* image,
44
typedef void (*GetCompressedImageFunc)(
JpegStub
* stub, void* buff);
45
typedef size_t (*GetCompressedSizeFunc)(
JpegStub
* stub);
JpegStub.cpp
23
#include "
JpegStub
.h"
26
extern "C" void JpegStub_init(
JpegStub
* stub, int* strides) {
31
extern "C" void JpegStub_cleanup(
JpegStub
* stub) {
36
extern "C" int JpegStub_compress(
JpegStub
* stub, const void* image,
59
extern "C" void JpegStub_getCompressedImage(
JpegStub
* stub, void* buff) {
65
extern "C" size_t JpegStub_getCompressedSize(
JpegStub
* stub) {
JpegCompressor.h
25
#include "
JpegStub
.h"
90
JpegStub
mStub;
Android.mk
94
LOCAL_SRC_FILES :=
JpegStub
.cpp
Completed in 80 milliseconds