CAMERA_PIXEL_FORMAT_MAX
} camera_pixel_format_e;
+/**
+ * @brief Enumeration for the focus state.
+ * @since_tizen 6.5
+ */
+typedef enum camera_focus_state {
+ CAMERA_FOCUS_STATE_RELEASED,
+ CAMERA_FOCUS_STATE_ONGOING,
+ CAMERA_FOCUS_STATE_FOCUSED,
+ CAMERA_FOCUS_STATE_FAILED
+} camera_focus_state_e;
+
+/**
+ * @brief Enumeration for the facing direction of camera device.
+ * @since_tizen 6.5
+ */
+typedef enum camera_facing_direction {
+ CAMERA_FACING_DIRECTION_REAR,
+ CAMERA_FACING_DIRECTION_FRONT,
+ CAMERA_FACING_DIRECTION_EXTERNAL
+} camera_facing_direction_e;
+
+/**
+ * @brief Enumeration for the camera rotation.
+ * @since_tizen 6.5
+ */
+typedef enum camera_rotation {
+ CAMERA_ROTATION_0,
+ CAMERA_ROTATION_90,
+ CAMERA_ROTATION_180,
+ CAMERA_ROTATION_270
+} camera_rotation_e;
+
+/**
+ * @brief Enumeration for the camera flip.
+ * @since_tizen 6.5
+ */
+typedef enum camera_flip {
+ CAMERA_FLIP_NONE,
+ CAMERA_FLIP_HORIZONTAL,
+ CAMERA_FLIP_VERTICAL,
+ CAMERA_FLIP_BOTH
+} camera_flip_e;
+
/**
* @brief The structure type of the camera plane.
* @since_tizen 6.5
int component_configuration;
int aperture_in_apex;
int is_delta_frame; /* Flag for encoded delta frame */
+ camera_focus_state_e focus_state;
+ camera_facing_direction_e facing_direction;
+ camera_flip_e flip;
+ camera_rotation_e rotation;
} camera_metadata_s;
-/**
- * @brief Enumeration for the focus state.
- * @since_tizen 6.5
- */
-typedef enum camera_focus_state {
- CAMERA_FOCUS_STATE_RELEASED,
- CAMERA_FOCUS_STATE_ONGOING,
- CAMERA_FOCUS_STATE_FOCUSED,
- CAMERA_FOCUS_STATE_FAILED
-} camera_focus_state_e;
-
-/**
- * @brief Enumeration for the facing direction of camera device.
- * @since_tizen 6.5
- */
-typedef enum camera_facing_direction {
- CAMERA_FACING_DIRECTION_REAR,
- CAMERA_FACING_DIRECTION_FRONT,
- CAMERA_FACING_DIRECTION_EXTERNAL
-} camera_facing_direction_e;
-
-/**
- * @brief Enumeration for the camera rotation.
- * @since_tizen 6.5
- */
-typedef enum camera_rotation {
- CAMERA_ROTATION_0,
- CAMERA_ROTATION_90,
- CAMERA_ROTATION_180,
- CAMERA_ROTATION_270
-} camera_rotation_e;
-
-/**
- * @brief Enumeration for the camera flip.
- * @since_tizen 6.5
- */
-typedef enum camera_flip {
- CAMERA_FLIP_NONE,
- CAMERA_FLIP_HORIZONTAL,
- CAMERA_FLIP_VERTICAL,
- CAMERA_FLIP_BOTH
-} camera_flip_e;
-
/**
* @brief The structure type of the camera format.
* @since_tizen 6.5