media_format: Comply with coding convention 81/254581/2
authorSangchul Lee <sc11.lee@samsung.com>
Fri, 5 Mar 2021 02:09:05 +0000 (11:09 +0900)
committerSangchul Lee <sc11.lee@samsung.com>
Wed, 10 Mar 2021 01:26:02 +0000 (10:26 +0900)
Remove the space of right side of asterisk.

[Version] 0.1.35
[Issue Type] Coding convention

Change-Id: Idd4b32860320fe169bfd877d5d83428e5f9ba34f
Signed-off-by: Sangchul Lee <sc11.lee@samsung.com>
include/media_format.h
packaging/capi-media-tool.spec
src/media_format.c

index 758f5833952d264416a56dc526febc8ec232f489..23366e979820920a2af1509031f78496b80719d5 100644 (file)
@@ -289,7 +289,7 @@ typedef enum {
  * @see media_format_ref()
  * @see media_format_unref()
  */
-int media_format_create(media_format_h * fmt);
+int media_format_create(media_format_h *fmt);
 
 /**
  * @brief Gets format type of media format.
@@ -303,7 +303,7 @@ int media_format_create(media_format_h * fmt);
  * @retval #MEDIA_FORMAT_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MEDIA_FORMAT_ERROR_INVALID_OPERATION Invalid operation
  */
-int media_format_get_type(media_format_h fmt, media_format_type_e * formattype);
+int media_format_get_type(media_format_h fmt, media_format_type_e *formattype);
 
 /**
  * @brief Gets container MIME type of media format.
@@ -318,7 +318,7 @@ int media_format_get_type(media_format_h fmt, media_format_type_e * formattype);
  * @retval #MEDIA_FORMAT_ERROR_INVALID_OPERATION Invalid operation
  * @see media_format_set_container_mime()
  */
-int media_format_get_container_mime(media_format_h fmt, media_format_mimetype_e * mimetype);
+int media_format_get_container_mime(media_format_h fmt, media_format_mimetype_e *mimetype);
 
 /**
  * @brief Gets text track information of media format.
@@ -334,7 +334,7 @@ int media_format_get_container_mime(media_format_h fmt, media_format_mimetype_e
  * @retval #MEDIA_FORMAT_ERROR_INVALID_OPERATION Invalid operation
  * @see media_format_set_text_mime()
  */
-int media_format_get_text_info(media_format_h fmt, media_format_mimetype_e * mimetype, media_format_text_type_e * type);
+int media_format_get_text_info(media_format_h fmt, media_format_mimetype_e *mimetype, media_format_text_type_e *type);
 
 /**
  * @brief Gets video information of media format.
@@ -397,7 +397,7 @@ int media_format_get_audio_info(media_format_h fmt, media_format_mimetype_e *mim
  * @retval #MEDIA_FORMAT_ERROR_INVALID_OPERATION Invalid operation
  * @see media_format_set_audio_aac_type()
  */
-int media_format_get_audio_aac_type(media_format_h fmt, bool * is_adts);
+int media_format_get_audio_aac_type(media_format_h fmt, bool *is_adts);
 
 /**
  * @brief Gets audio aac header type of media format.
@@ -412,7 +412,7 @@ int media_format_get_audio_aac_type(media_format_h fmt, bool * is_adts);
  * @retval #MEDIA_FORMAT_ERROR_INVALID_OPERATION Invalid operation
  * @see media_format_set_audio_aac_header_type()
  */
-int media_format_get_audio_aac_header_type(media_format_h fmt, media_format_aac_header_type_e * aac_header_type);
+int media_format_get_audio_aac_header_type(media_format_h fmt, media_format_aac_header_type_e *aac_header_type);
 
 /**
  * @brief Gets video frame rate of media format.
@@ -723,7 +723,7 @@ int media_format_unref(media_format_h fmt);
  * @retval #MEDIA_FORMAT_ERROR_INVALID_OPERATION Invalid operation
  * @see media_format_make_writable()
  */
-int media_format_is_writable(media_format_h fmt, bool * is_writable);
+int media_format_is_writable(media_format_h fmt, bool *is_writable);
 
  /**
  * @brief Returns a writable copy of #media_format_h.
@@ -747,7 +747,7 @@ int media_format_is_writable(media_format_h fmt, bool * is_writable);
  * @retval #MEDIA_FORMAT_ERROR_INVALID_OPERATION Invalid operation
  * @see media_format_is_writable()
  */
-int media_format_make_writable(media_format_h fmt, media_format_h * out_fmt);
+int media_format_make_writable(media_format_h fmt, media_format_h *out_fmt);
 
 /**
  * @brief Sets extra data of media format.
index e7e10cacbebf90f83247c29a1279dc1961add21a..d6620a203f15c0e74f824c8c0559681674a0550a 100755 (executable)
@@ -1,6 +1,6 @@
 Name:       capi-media-tool
 Summary:    A Core API media tool library in Tizen Native API
-Version:    0.1.34
+Version:    0.1.35
 Release:    0
 Group:      Multimedia/API
 License:    Apache-2.0
index 6666e833d456fed1c1865dd69fc66caadc6d1287..346a802d13c33a64ef5ea60d6e0efc613a3265aa 100644 (file)
@@ -669,7 +669,7 @@ int media_format_unref(media_format_h fmt)
        return MEDIA_FORMAT_ERROR_NONE;
 }
 
-int media_format_is_writable(media_format_h fmt, bool * is_writable)
+int media_format_is_writable(media_format_h fmt, bool *is_writable)
 {
        MEDIA_FORMAT_INSTANCE_CHECK(fmt);
        if (MEDIA_FORMAT_GET_REFCOUNT(fmt) <= 0) {
@@ -940,7 +940,7 @@ no_channel_mask:
        return MEDIA_FORMAT_ERROR_INVALID_OPERATION;
 }
 
-int media_format_channel_positions_to_mask(media_format_h fmt, const media_format_channel_position_e* position, uint64_t* channel_mask_out)
+int media_format_channel_positions_to_mask(media_format_h fmt, const media_format_channel_position_e *position, uint64_t *channel_mask_out)
 {
        MEDIA_FORMAT_INSTANCE_CHECK(fmt);
        MEDIA_FORMAT_INSTANCE_CHECK(position);