[0.3.132] Fix typo error 99/238199/2
authorGilbok Lee <gilbok.lee@samsung.com>
Thu, 9 Jul 2020 08:53:39 +0000 (17:53 +0900)
committerGilbok Lee <gilbok.lee@samsung.com>
Fri, 10 Jul 2020 01:18:23 +0000 (10:18 +0900)
Change-Id: I04cb2a494be9db2724f7ab19dd2b769a73491802

include/player_internal.h
test/event-handler/src/mm_navevent_handler_internal.c
test/player_audio_test.c
test/player_es_push_test.c
test/player_media_packet_test.c
test/player_test.c

index 28c6158..fb7008c 100644 (file)
@@ -301,7 +301,7 @@ int player_set_buffer_need_audio_data_cb(player_h player, player_buffer_need_dat
 /**
  * @brief Display the first video frame at the player_prepare() function to improve the playback performance.
  * @since_tizen @if TV 3.0 @endif
- * @details This is only availble when you want to start playback from 0 position.
+ * @details This is only available when you want to start playback from 0 position.
  *             1. Normal play : player_create() -> player_display_video_at_paused_state() -> player_prepare()[unmute] -> player_start()
  *                     2. Resume play : player_create() -> player_prepare() -> player_set_position() -> player_start()[unmute]
  * @param[in] player    The handle to media player
@@ -320,10 +320,10 @@ int player_display_video_at_paused_state(player_h player, bool visible);
 int player_set_display_parent_win_id(player_h player, int win_id);
 
 /**
- * @brief Sets the data source (http or local file) to transite.
+ * @brief Sets the data source (http or local file) to transit.
  * @since_tizen @if TV @else 3.0 @endif
  *
- * @details Player will transite the media source as seamlessly as possible after finishing current playback.
+ * @details Player will transit the media source as seamlessly as possible after finishing current playback.
  *          If the function call is successful, the uri will be added at the end of uri list.
  *          You can add several uris and the set of uris will be played repeatedly if you call the player_set_looping().
  *          The first uri in the list is the original uri which is set by player_set_uri().
index b36b087..9f0564f 100644 (file)
@@ -106,7 +106,7 @@ static void set_final_coordinates(mm_navevent_handler_s *handler, struct libinpu
        pthread_mutex_unlock(&handler->event_lock);
 }
 
-/* NOTE: pointer slides the image, thus the direction of view moves in opposit
+/* NOTE: pointer slides the image, thus the direction of view moves in opposite
  * direction.
  * Orientation (degrees):
  * 0           yaw: last_x - x; pitch: y - last_y;
index 3548dd2..434a039 100644 (file)
@@ -647,7 +647,7 @@ static void set_sound_stream_info(int type)
        int ret = SOUND_MANAGER_ERROR_NONE;
 
        if (g_stream_info_h) {
-               g_print("stream information is already set, please destory handle and try again\n");
+               g_print("stream information is already set, please destroy handle and try again\n");
                return;
        }
        if (sound_manager_create_stream_information(type, focus_callback, g_player[0], &g_stream_info_h)) {
index e13c070..6b27c40 100644 (file)
@@ -162,7 +162,7 @@ static Evas_Object *create_render_rect(Evas_Object *pParent)
 
 static void create_base_gui(appdata_s *ad)
 {
-       /* Enable GLES Backened */
+       /* Enable GLES Backend */
        elm_config_accel_preference_set("opengl");
 
        /* Window */
index 3fa5553..798c3b5 100644 (file)
@@ -86,7 +86,7 @@ static Eina_Bool keydown_cb(void *data, int type, void *event)
 
 static void create_base_gui(appdata_s *ad)
 {
-       /* Enable GLES Backened */
+       /* Enable GLES Backend */
        elm_config_accel_preference_set("opengl");
 
        /* Window */
index cc6d5a6..dd61cdd 100644 (file)
@@ -292,7 +292,7 @@ int eom_get_output_id(const char *output_name)
        /* get output_ids */
        output_ids = eom_get_eom_output_ids(&id_cnt);
        if (id_cnt == 0) {
-               g_print("[eom] no external outuputs supported\n");
+               g_print("[eom] no external outputs supported\n");
                return 0;
        }
 
@@ -1003,7 +1003,7 @@ static void _player_prepare(bool async)
        int slen = strlen(g_subtitle_uri);
 
        if (slen > 0 && slen < MAX_STRING_LEN) {
-               g_print("0. set subtile path() (size : %d) - %s  \n", slen, g_subtitle_uri);
+               g_print("0. set subtitle path() (size : %d) - %s  \n", slen, g_subtitle_uri);
                player_set_subtitle_path(g_player[0], g_subtitle_uri);
        }
        player_set_subtitle_updated_cb(g_player[0], subtitle_updated_cb, (void *)g_player[0]);
@@ -1373,7 +1373,7 @@ static void set_sound_stream_info(int type)
        int ret = SOUND_MANAGER_ERROR_NONE;
 
        if (g_stream_info_h) {
-               g_print("stream information is already set, please destory handle and try again\n");
+               g_print("stream information is already set, please destroy handle and try again\n");
                return;
        }
        if (sound_manager_create_stream_information(type, focus_callback, g_player[0], &g_stream_info_h)) {