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

  /frameworks/av/camera/ndk/include/camera/
NdkCaptureRequest.h 53 typedef struct ACameraOutputTarget 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 object
    [all...]
  /frameworks/av/camera/ndk/impl/
ACaptureRequest.h 24 struct ACameraOutputTarget {
25 explicit ACameraOutputTarget(ANativeWindow* window) : mWindow(window) {};
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 81 milliseconds