Remove profile check for supported platform version 01/302601/2
authorKwanghoon Son <k.son@samsung.com>
Mon, 11 Dec 2023 06:19:45 +0000 (15:19 +0900)
committerkwang son <k.son@samsung.com>
Tue, 12 Dec 2023 05:16:36 +0000 (05:16 +0000)
Change-Id: I1e8abc0037baa1996b31db299744fea61eee4011
Signed-off-by: Kwanghoon Son <k.son@samsung.com>
12 files changed:
include/mv_barcode_detect.h
include/mv_barcode_generate.h
include/mv_barcode_type.h
include/mv_common.h
mv_barcode/barcode_detector/include/Barcode.h
mv_barcode/barcode_detector/include/BarcodeUtils.h
mv_barcode/barcode_detector/include/mv_barcode_detect_open.h
mv_barcode/barcode_generator/include/BarcodeGenerator.h
mv_barcode/barcode_generator/include/BarcodeOptions.h
mv_barcode/barcode_generator/include/mv_barcode_generate_open.h
mv_common/include/EngineConfig.h
mv_common/include/MediaSource.h

index b304555..c8e89bf 100644 (file)
@@ -37,7 +37,7 @@ extern "C" {
 /**
  * @brief Define MV_BARCODE_DETECT_ATTR_TARGET to set target attribute of the engine configuration
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @see mv_barcode_detect_attr_target_e
  */
@@ -92,7 +92,7 @@ extern "C" {
 /**
  * @brief Enumeration to target attribute
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  */
 typedef enum {
        MV_BARCODE_DETECT_ATTR_TARGET_ALL, /**< 1D and 2D */
@@ -122,7 +122,7 @@ typedef enum {
  * @details If no barcode is detected then the method will be called, barcodes
  *          and states will be equal to NULL, and @a number_of_barcodes - 0.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  * @param [in] source               The handle to the media source
  * @param [in] engine_cfg           The handle to the configuration of the engine
  * @param [in] barcode_locations    The quadrangle locations of detected barcodes
@@ -143,7 +143,7 @@ typedef void (*mv_barcode_detected_cb)(mv_source_h source, mv_engine_config_h en
 /**
  * @brief Detects barcode(s) on source and reads message from it.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  * @param [in] source            The media source handle
  * @param [in] engine_cfg        The handle to the configuration of the engine
  * @param [in] roi               Region of interest - rectangular area on the
index 458789f..e3e281e 100644 (file)
@@ -38,7 +38,7 @@ extern "C" {
  * @brief Define MV_BARCODE_GENERATE_ATTR_TEXT to set text attribute
  *        of the engine configuration.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  * @remarks This attribute is only available for 1D barcode generation
  *
  * @see mv_barcode_generate_attr_text_e
@@ -110,7 +110,7 @@ typedef enum {
 /**
  * @brief Enumeration to text attribute.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  */
 typedef enum {
        MV_BARCODE_GENERATE_ATTR_TEXT_INVISIBLE, /**< Invisible */
@@ -124,7 +124,7 @@ typedef enum {
  * message length. Also for QR codes the version may be selected as minimum
  * required to generate QR code with the input message length.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  * @remarks If the text attribute of engine configuration is set to
  *          #MV_BARCODE_GENERATE_ATTR_TEXT_VISIBLE,
  *          #MEDIA_VISION_ERROR_INVALID_OPERATION will be returned
@@ -168,7 +168,7 @@ int mv_barcode_generate_source(mv_engine_config_h engine_cfg, const char *messag
  * message length. Also for QR codes the version may be selected as minimum
  * required to generate QR code with the input message length.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  * @remarks If the text attribute of engine configuration is set to
  *          #MV_BARCODE_GENERATE_ATTR_TEXT_VISIBLE,
  *          #MEDIA_VISION_ERROR_INVALID_OPERATION will be returned
index 4c503e6..12ef1e3 100644 (file)
@@ -35,7 +35,7 @@ extern "C" {
  * @brief Enumeration for supported barcode types.
  * @details QR codes (versions 1 to 40) and set of 1D barcodes are supported
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  * @remarks #MV_BARCODE_UNDEFINED is deprecated. Use #MV_BARCODE_UNKNOWN instead
  */
 typedef enum {
@@ -60,7 +60,7 @@ typedef enum {
 /**
  * @brief Enumeration for supported QR code error correction level.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  * @remarks This is unavailable for 1D barcodes
  */
 typedef enum {
@@ -74,7 +74,7 @@ typedef enum {
 /**
  * @brief Enumeration for supported QR code encoding mode.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  * @remarks This is unavailable for 1D barcodes
  */
 typedef enum {
@@ -88,7 +88,7 @@ typedef enum {
 /**
  * @brief Enumeration for supported image formats for the barcode generating.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  */
 typedef enum {
        MV_BARCODE_IMAGE_FORMAT_UNAVAILABLE = -1, /**< Unavailable image format */
index 494cb2f..9287945 100644 (file)
@@ -36,7 +36,7 @@ extern "C" {
 /**
  * @brief Point in 2D space.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  */
 typedef struct {
        int x; /**< X-axis coordinate of the point in 2D space */
@@ -46,7 +46,7 @@ typedef struct {
 /**
  * @brief Location of the object bounded by quadrangle defined by four 2D points.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  */
 typedef struct {
        mv_point_s points[4]; /**< Four points that define object bounding
@@ -57,7 +57,7 @@ typedef struct {
  * @brief Location of the object bounded by rectangle defined by
  *        coordinates of top left corner, width and height.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  */
 typedef struct {
        mv_point_s point; /**< Top left corner of rectangle coordinates */
@@ -68,7 +68,7 @@ typedef struct {
 /**
  * @brief Enumeration for Media Vision error.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  */
 typedef enum {
        MEDIA_VISION_ERROR_NONE = TIZEN_ERROR_NONE, /**< Successful */
@@ -91,7 +91,7 @@ typedef enum {
  * @brief Enumeration for Media Vision #mv_engine_config_h handle attribute
  *        type.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  */
 typedef enum {
        MV_ENGINE_CONFIG_ATTR_TYPE_DOUBLE, /**< Double attribute type */
@@ -104,7 +104,7 @@ typedef enum {
 /**
  * @brief Enumeration for Media Vision colorspace.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  */
 typedef enum {
        MEDIA_VISION_COLORSPACE_INVALID, /**< The colorspace type is invalid */
@@ -133,7 +133,7 @@ typedef enum {
  *          destroy it and release resources by mv_destroy_engine_config()
  *          function.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @see mv_create_engine_config()
  * @see mv_destroy_engine_config()
@@ -143,14 +143,14 @@ typedef void *mv_engine_config_h;
 /**
  * @brief The handle to the source.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  */
 typedef void *mv_source_h;
 
 /**
  * @brief Creates a source handle.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  * @remarks You must release @a source by using mv_destroy_source().
  * @param [out] source    A new handle to the source
  * @return @c 0 on success, otherwise a negative error value
@@ -166,7 +166,7 @@ int mv_create_source(mv_source_h *source);
 /**
  * @brief Destroys the source handle and releases all its resources.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  * @param [in] source    The handle to the source to be destroyed
  * @return @c 0 on success, otherwise a negative error value
  * @retval #MEDIA_VISION_ERROR_NONE Successful
@@ -180,7 +180,7 @@ int mv_destroy_source(mv_source_h source);
 /**
  * @brief Fills the media source based on the media packet.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  * @param [in,out] source          The handle to the source
  * @param [in]     media_packet    The handle to the media packet from which
  *                                 will be filled the source
@@ -202,7 +202,7 @@ int mv_source_fill_by_media_packet(mv_source_h source, media_packet_h media_pack
 /**
  * @brief Fills the media source based on the buffer and metadata.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  * @param [in,out] source             The handle to the source
  * @param [in]     data_buffer        The buffer of image data
  * @param [in]     buffer_size        The buffer size
@@ -225,7 +225,7 @@ int mv_source_fill_by_buffer(mv_source_h source, unsigned char *data_buffer, uns
 /**
  * @brief Clears the buffer of the media source.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  * @param [in,out] source    The handle to the source
  * @return @c 0 on success, otherwise a negative error value
  * @retval #MEDIA_VISION_ERROR_NONE Successful
@@ -239,7 +239,7 @@ int mv_source_clear(mv_source_h source);
 /**
  * @brief Gets buffer of the media source.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  * @remarks Note that the retrieved buffer will be destroyed when
  *          mv_destroy_source() or mv_source_clear() function
  *          is called for the @a source.
@@ -261,7 +261,7 @@ int mv_source_get_buffer(mv_source_h source, unsigned char **data_buffer, unsign
 /**
  * @brief Gets height of the media source.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  * @param [in]    source         The handle to the source
  * @param [out]   image_height   The height of an image in the source
  * @return @c 0 on success, otherwise a negative error value
@@ -278,7 +278,7 @@ int mv_source_get_height(mv_source_h source, unsigned int *image_height);
 /**
  * @brief Gets width of the media source.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  * @param [in]    source        The handle to the source
  * @param [out]   image_width   The width of an image in the source
  * @return @c 0 on success, otherwise a negative error value
@@ -295,7 +295,7 @@ int mv_source_get_width(mv_source_h source, unsigned int *image_width);
 /**
  * @brief Gets colorspace of the media source.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  * @param [in]    source             The handle to the source
  * @param [out]   image_colorspace   The colorspace of an image in the source
  * @return @c 0 on success, otherwise a negative error value
@@ -312,7 +312,7 @@ int mv_source_get_colorspace(mv_source_h source, mv_colorspace_e *image_colorspa
 /**
  * @brief Creates the handle to the configuration of engine.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  * @remarks Available engine configuration attributes can be get by using
  *          mv_engine_config_foreach_supported_attribute().
  *          The attributes can be changed by #mv_engine_config_h
@@ -342,7 +342,7 @@ int mv_create_engine_config(mv_engine_config_h *engine_cfg);
  * @brief Destroys the engine configuration handle and releases all its
  *        resources.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  * @param [in] engine_cfg    The handle to the engine configuration
  *                           to be destroyed
  * @return @c 0 on success, otherwise a negative error value
@@ -358,7 +358,7 @@ int mv_destroy_engine_config(mv_engine_config_h engine_cfg);
 /**
  * @brief Sets the double attribute to the configuration.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  * @param [in] engine_cfg        Engine configuration for which @a value has
  *                               to be set
  * @param [in] name              String key of the attribute will be used for
@@ -381,7 +381,7 @@ int mv_engine_config_set_double_attribute(mv_engine_config_h engine_cfg, const c
 /**
  * @brief Sets the integer attribute to the configuration.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  * @param [in] engine_cfg        Engine configuration for which @a value has
  *                               to be set
  * @param [in] name              String key of the attribute will be used for
@@ -406,7 +406,7 @@ int mv_engine_config_set_int_attribute(mv_engine_config_h engine_cfg, const char
 /**
  * @brief Sets the boolean attribute to the configuration.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  * @param [in] engine_cfg        Engine configuration for which @a value has
  *                               to be set
  * @param [in] name              String key of the attribute will be used for
@@ -429,7 +429,7 @@ int mv_engine_config_set_bool_attribute(mv_engine_config_h engine_cfg, const cha
 /**
  * @brief Sets the string attribute to the configuration.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  * @param [in] engine_cfg        Engine configuration for which @a value has
  *                               to be set
  * @param [in] name              String key of the attribute will be used for
@@ -474,7 +474,7 @@ int mv_engine_config_set_array_string_attribute(mv_engine_config_h engine_cfg, c
 /**
  * @brief Gets the double attribute from the configuration dictionary.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  * @param [in] engine_cfg        Engine configuration from which @a value
  *                               has to be gotten
  * @param [in] name              String key of the attribute will be used for
@@ -498,7 +498,7 @@ int mv_engine_config_get_double_attribute(mv_engine_config_h engine_cfg, const c
 /**
  * @brief Gets the integer attribute from the configuration dictionary.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  * @param [in] engine_cfg        Engine configuration from which @a value
  *                               has to be gotten
  * @param [in] name              String key of the attribute will be used for
@@ -524,7 +524,7 @@ int mv_engine_config_get_int_attribute(mv_engine_config_h engine_cfg, const char
 /**
  * @brief Gets the boolean attribute from the configuration dictionary.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  * @param [in] engine_cfg        Engine configuration from which @a value
  *                               has to be gotten
  * @param [in] name              String key of the attribute will be used for
@@ -548,7 +548,7 @@ int mv_engine_config_get_bool_attribute(mv_engine_config_h engine_cfg, const cha
 /**
  * @brief Gets the string attribute from the configuration dictionary.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  * @remarks Function allocates memory required for output @a value, so
  *          it has to be removed by the user himself.
  * @param [in] engine_cfg        Engine configuration from which @a value
@@ -600,7 +600,7 @@ int mv_engine_config_get_array_string_attribute(mv_engine_config_h engine_cfg, c
  * @brief Called to get information (type and name) once for each supported
  *        attribute.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  * @param [in] attribute_type    The supported attribute type
  * @param [in] attribute_name    The supported attribute name
  * @param [in] user_data         The user data passed from the
@@ -621,7 +621,7 @@ typedef bool (*mv_supported_attribute_cb)(mv_config_attribute_type_e attribute_t
  *          Names of the attributes can be used with #mv_engine_config_h
  *          related getters and setters to get/set appropriate attribute values.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  * @remarks If @a callback is called zero times after
  *          mv_engine_config_foreach_supported_attribute() call, then
  *          engine configuration is not supported and setting of attributes will
index 46c24a5..107040f 100644 (file)
@@ -36,7 +36,7 @@ public:
        /**
         * @brief   Barcode constructor.
         *
-        * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+        * @since_tizen 2.4
         * @remarks create copy of bar_obj
         * @param   [in] barObj zbar barcode handle
         *
@@ -46,14 +46,14 @@ public:
        /**
         * @brief  Barcode destructor.
         *
-        * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+        * @since_tizen 2.4
         */
        ~Barcode();
 
        /**
         * @brief  Gets encoded message from barcode object.
         *
-        * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+        * @since_tizen 2.4
         * @return Encoded message
         */
        std::string getMessage(void) const;
@@ -61,7 +61,7 @@ public:
        /**
         * @brief Gets the type of the barcode.
         *
-        * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+        * @since_tizen 2.4
         * @return Enumeration value corresponding to the barcode type
         */
        mv_barcode_type_e getType(void) const;
@@ -70,7 +70,7 @@ public:
         * @brief  Calculates location of barcode handle from zbar.
         *         location polygon.
         *
-        * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+        * @since_tizen 2.4
         * @param  [out] location    Quadrangle that contains barcode on image
         * @return @c MEDIA_VISION_ERROR_NONE on success,
         *         otherwise a negative error value
index 72fb8d0..7526683 100644 (file)
@@ -33,7 +33,7 @@ namespace Barcode
 /**
  * @brief    This function converts media vision image handle to zbar image handle.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  * @param [in]  mvSource      Media vision image handle
  * @param [out] zbarSource    Zbar image handle
  * @return @c MEDIA_VISION_ERROR_NONE on success,
index 413a6da..f04c05d 100644 (file)
@@ -32,7 +32,7 @@ extern "C" {
 /**
  * @brief Detects barcode(s) on source and reads message from it.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  * @param [in] source            The media source handle
  * @param [in] engine_cfg        The handle to the configuration of the engine
  * @param [in] roi               Region of interest - rectangular area on the
index 6a3d413..c88fdb0 100644 (file)
@@ -34,7 +34,7 @@ namespace Barcode
  * @brief This class implements barcode generation.
  * @details 1D Barcodes and 2D QR codes are supported.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  */
 class BarcodeGenerator
 {
@@ -42,7 +42,7 @@ public:
        /**
         * @brief This method generates Barcodes image according to options.
         *
-        * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+        * @since_tizen 2.4
         * @param [in] imageFileName    Image file name which will be generated
         * @param [in] imageFormat      Image file format which will be generated
         * @param [in] imageWidth       Image file width which will be generated
@@ -68,7 +68,7 @@ public:
        /**
         * @brief This method generates Barcodes image buffer according to options.
         *
-        * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+        * @since_tizen 2.4
         * @param [out] imageBuffer        Image buffer with image to be generated
         * @param [out] imageWidth         Image buffer width which will be generated
         * @param [out] imageHeight        Image buffer height which will be generated
index bd8e2ba..659051b 100644 (file)
@@ -29,7 +29,7 @@ namespace Barcode
 /**
  * @brief The Barcode type enumeration.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  */
 enum BarcodeType {
        BARCODE_QR = 58,
@@ -51,7 +51,7 @@ enum BarcodeType {
 /**
  * @brief The Barcode error correction level enumeration.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  * @remarks This is unavailable for 1D barcodes.
  */
 enum BarcodeQRErrorCorrectionLevel {
@@ -65,7 +65,7 @@ enum BarcodeQRErrorCorrectionLevel {
 /**
  * @brief The Barcode encoding mode enumeration.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  * @remarks This is unavailable for 1D barcodes.
  */
 enum BarcodeQREncodingMode {
@@ -80,21 +80,21 @@ enum BarcodeQREncodingMode {
 /**
  * @brief The Barcode image format enumeration.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  */
 enum BarcodeImageFormat { BARCODE_IMAGE_JPG, BARCODE_IMAGE_PNG, BARCODE_IMAGE_BMP };
 
 /**
  * @brief The Barcode generation text option enumeration.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  */
 enum BarcodeGenTextOpt { BARCODE_GEN_TEXT_INVISIBLE, BARCODE_GEN_TEXT_VISIBLE };
 
 /**
  * @brief The Barcode error enumeration.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  */
 enum BarcodeError {
        BARCODE_ERROR_NONE = 0,
index 772668d..7fe9c53 100644 (file)
@@ -32,7 +32,7 @@ extern "C" {
 /**
  * @brief Generates @ref mv_source_h with barcode image.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  * @param [in]  engine_cfg      The handle to the configuration of the engine
  * @param [in]  message         The message to be encoded in the barcode
  * @param [in]  type            Type of the barcode to be generated
@@ -61,7 +61,7 @@ int mv_barcode_generate_source_open(mv_engine_config_h engine_cfg, const char *m
 /**
  * @brief Generates image file with barcode.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  * @param [in] engine_cfg      The handle to the configuration of the engine
  * @param [in] message         The message to be encoded in the barcode
  * @param [in] image_width     The width of the generated image
index e34dfca..dabf18a 100644 (file)
@@ -63,7 +63,7 @@ public:
        /**
         * @brief Sets attribute with double value.
         *
-        * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+        * @since_tizen 2.4
         * @param [in] key          The string name of the attribute
         * @param [in] value        The double attribute value to be set
         * @return @c MEDIA_VISION_ERROR_NONE on success,\n
@@ -74,7 +74,7 @@ public:
        /**
         * @brief Sets attribute with integer value.
         *
-        * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+        * @since_tizen 2.4
         * @param [in] key          The string name of the attribute
         * @param [in] value        The integer attribute value to be set
         * @return @c MEDIA_VISION_ERROR_NONE on success,\n
@@ -85,7 +85,7 @@ public:
        /**
         * @brief Sets attribute with boolean value.
         *
-        * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+        * @since_tizen 2.4
         * @param [in] key          The string name of the attribute
         * @param [in] value        The boolean attribute value to be set
         * @return @c MEDIA_VISION_ERROR_NONE on success,\n
@@ -96,7 +96,7 @@ public:
        /**
         * @brief Sets attribute with string value.
         *
-        * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+        * @since_tizen 2.4
         * @param [in] key          The string name of the attribute
         * @param [in] value        The string attribute value to be set
         * @return @c MEDIA_VISION_ERROR_NONE on success,\n
@@ -118,7 +118,7 @@ public:
        /**
         * @brief Gets double attribute value by attribute name.
         *
-        * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+        * @since_tizen 2.4
         * @param [in]  key          The string name of the attribute
         * @param [out] value        The double attribute value to be obtained
         * @return @c MEDIA_VISION_ERROR_NONE on success,\n
@@ -131,7 +131,7 @@ public:
        /**
         * @brief Gets integer attribute value by attribute name.
         *
-        * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+        * @since_tizen 2.4
         * @param [in]  key          The string name of the attribute
         * @param [out] value        The integer attribute value to be obtained
         * @return @c MEDIA_VISION_ERROR_NONE on success,\n
@@ -157,7 +157,7 @@ public:
        /**
         * @brief Gets boolean attribute value by attribute name.
         *
-        * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+        * @since_tizen 2.4
         * @param [in]  key          The string name of the attribute
         * @param [out] value        The boolean attribute value to be obtained
         * @return @c MEDIA_VISION_ERROR_NONE on success,\n
@@ -170,7 +170,7 @@ public:
        /**
         * @brief Gets string attribute value by attribute name.
         *
-        * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+        * @since_tizen 2.4
         * @param [in]  key          The string name of the attribute
         * @param [out] value        The string attribute value to be obtained
         * @return @c MEDIA_VISION_ERROR_NONE on success,\n
index 1ba4951..50cd369 100644 (file)
@@ -52,7 +52,7 @@ public:
        /**
         * @brief   Destroys the MediaSource and releases all its resources.
         *
-        * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+        * @since_tizen 2.4
         *
         * @see MediaSource::MediaSource()
         */
@@ -77,7 +77,7 @@ public:
         * @brief   Clears the MediaSource.
         * @details Releases all internal resources and set parameters to default values.
         *
-        * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+        * @since_tizen 2.4
         *
         * @see MediaSource::MediaSource()
         * @see MediaSource::fill()
@@ -87,7 +87,7 @@ public:
        /**
         * @brief Fills the MediaSource based on the buffer and metadata.
         *
-        * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+        * @since_tizen 2.4
         * @param [in] buffer       The buffer of image data
         * @param [in] bufferSize   The buffer size
         * @param [in] width        The image width
@@ -123,7 +123,7 @@ public:
        /**
         * @brief Gets data buffer of the MediaSource.
         *
-        * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+        * @since_tizen 2.4
         * @return Pointer to the data buffer.
         */
        unsigned char *getBuffer(void) const;
@@ -131,7 +131,7 @@ public:
        /**
         * @brief Gets buffer size of the MediaSource.
         *
-        * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+        * @since_tizen 2.4
         * @return Size of data buffer.
         */
        unsigned int getBufferSize(void) const;
@@ -139,7 +139,7 @@ public:
        /**
         * @brief Gets image width of the MediaSource.
         *
-        * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+        * @since_tizen 2.4
         * @return Width of image.
         */
        unsigned int getWidth(void) const;
@@ -147,7 +147,7 @@ public:
        /**
         * @brief Gets image height of the MediaSource.
         *
-        * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+        * @since_tizen 2.4
         * @return Height of image.
         */
        unsigned int getHeight(void) const;
@@ -155,7 +155,7 @@ public:
        /**
         * @brief Gets image colorspace of the MediaSource.
         *
-        * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+        * @since_tizen 2.4
         * @return Colorspace of image.
         */
        mv_colorspace_e getColorspace(void) const;