Searched defs:ACameraOutputTarget (Results 1 - 3 of 3) sorted by relevance

/frameworks/av/camera/include/camera/ndk/
H A DNdkCaptureRequest.h53 typedef struct ACameraOutputTarget ACameraOutputTarget; typedef in typeref:struct:ACameraOutputTarget
87 * Create a ACameraOutputTarget object.
89 * <p>The ACameraOutputTarget is used in {@link ACaptureRequest_addTarget} method to add an output
91 * and its memory after application no longer needs the {@link ACameraOutputTarget}.</p>
93 * @param window the {@link ANativeWindow} to be associated with the {@link ACameraOutputTarget}
94 * @param output the output {@link ACameraOutputTarget} will be stored here if the
98 * <li>{@link ACAMERA_OK} if the method call succeeds. The created ACameraOutputTarget will
104 camera_status_t ACameraOutputTarget_create(ANativeWindow* window, ACameraOutputTarget** output);
107 * Free a ACameraOutputTarget objec
[all...]
/frameworks/av/include/camera/ndk/
H A DNdkCaptureRequest.h53 typedef struct ACameraOutputTarget ACameraOutputTarget; typedef in typeref:struct:ACameraOutputTarget
87 * Create a ACameraOutputTarget object.
89 * <p>The ACameraOutputTarget is used in {@link ACaptureRequest_addTarget} method to add an output
91 * and its memory after application no longer needs the {@link ACameraOutputTarget}.</p>
93 * @param window the {@link ANativeWindow} to be associated with the {@link ACameraOutputTarget}
94 * @param output the output {@link ACameraOutputTarget} will be stored here if the
98 * <li>{@link ACAMERA_OK} if the method call succeeds. The created ACameraOutputTarget will
104 camera_status_t ACameraOutputTarget_create(ANativeWindow* window, ACameraOutputTarget** output);
107 * Free a ACameraOutputTarget objec
[all...]
/frameworks/av/camera/ndk/impl/
H A DACaptureRequest.h24 struct ACameraOutputTarget { struct
25 explicit 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;

Completed in 316 milliseconds