Searched refs:ACameraOutputTarget (Results 1 - 4 of 4) sorted by relevance

/frameworks/av/camera/ndk/impl/
H A DACaptureRequest.h24 struct ACameraOutputTarget { struct
25 ACameraOutputTarget(ANativeWindow* window) : mWindow(window) {}; function in struct:ACameraOutputTarget
27 bool operator == (const ACameraOutputTarget& other) const {
30 bool operator != (const ACameraOutputTarget& other) const {
33 bool operator < (const ACameraOutputTarget& other) const {
36 bool operator > (const ACameraOutputTarget& other) const {
44 std::set<ACameraOutputTarget> mOutputs;
H A DACameraDevice.cpp308 ACameraOutputTarget outputTarget(anw);
/frameworks/av/include/camera/ndk/
H A DNdkCaptureRequest.h50 typedef struct ACameraOutputTarget ACameraOutputTarget; typedef in typeref:struct:ACameraOutputTarget
84 * Create a ACameraOutputTarget object.
86 * <p>The ACameraOutputTarget is used in {@link ACaptureRequest_addTarget} method to add an output
88 * and its memory after application no longer needs the {@link ACameraOutputTarget}.</p>
90 * @param window the {@link ANativeWindow} to be associated with the {@link ACameraOutputTarget}
91 * @param output the output {@link ACameraOutputTarget} will be stored here if the
95 * <li>{@link ACAMERA_OK} if the method call succeeds. The created ACameraOutputTarget will
101 camera_status_t ACameraOutputTarget_create(ANativeWindow* window, ACameraOutputTarget** output);
104 * Free a ACameraOutputTarget objec
[all...]
/frameworks/av/camera/ndk/
H A DNdkCaptureRequest.cpp30 ANativeWindow* window, ACameraOutputTarget** out) {
36 *out = new ACameraOutputTarget(window);
41 void ACameraOutputTarget_free(ACameraOutputTarget* target) {
51 ACaptureRequest* req, const ACameraOutputTarget* target) {
67 ACaptureRequest* req, const ACameraOutputTarget* target) {

Completed in 93 milliseconds