Comments Added in PlayView 61/151661/3
authorKapil Jhuria <kapil.jhuria@samsung.com>
Thu, 21 Sep 2017 10:58:44 +0000 (16:28 +0530)
committerRahul Dadhich <r.dadhich@samsung.com>
Thu, 21 Sep 2017 11:19:08 +0000 (11:19 +0000)
Change-Id: Ie046369f3d07e60fbcead665ebf09cc840e4b98d

47 files changed:
playview/src/common/vp-play-config.c
playview/src/common/vp-play-preference.c
playview/src/common/vp-play-ug.c
playview/src/common/vp-play-util.c
playview/src/core/vp-avrcp.c
playview/src/core/vp-device-language.c
playview/src/core/vp-device.c
playview/src/core/vp-hollic.c
playview/src/core/vp-image-util.c
playview/src/core/vp-media-contents.c
playview/src/core/vp-media-key.c
playview/src/core/vp-mm-player.c
playview/src/core/vp-multi-path.c
playview/src/core/vp-sensor.c
playview/src/core/vp-sound.c
playview/src/feature/vp-audio-track.c
playview/src/feature/vp-capture.c
playview/src/feature/vp-detail.c
playview/src/feature/vp-play-speed.c
playview/src/feature/vp-repeat.c
playview/src/feature/vp-setting.c
playview/src/feature/vp-share.c
playview/src/feature/vp-sound-alive.c
playview/src/feature/vp-sound-path.c
playview/src/feature/vp-subtitle-alignment.c
playview/src/feature/vp-subtitle-bg-color.c
playview/src/feature/vp-subtitle-color.c
playview/src/feature/vp-subtitle-edge.c
playview/src/feature/vp-subtitle-font.c
playview/src/feature/vp-subtitle-select.c
playview/src/feature/vp-subtitle-size.c
playview/src/feature/vp-subtitle-sync.c
playview/src/feature/vp-subtitle-track.c
playview/src/feature/vp-subtitle.c
playview/src/feature/vp-zoom-guide.c
playview/src/vp-play-view.c
playview/src/widget/vp-play-bookmark.c
playview/src/widget/vp-play-brightness-popup.c
playview/src/widget/vp-play-button.c
playview/src/widget/vp-play-loading-ani.c
playview/src/widget/vp-play-lockscreenmc.c
playview/src/widget/vp-play-minicontroller.c
playview/src/widget/vp-play-popup.c
playview/src/widget/vp-play-progressbar.c
playview/src/widget/vp-play-subtitle.c
playview/src/widget/vp-play-volume-popup.c
playview/src/widget/vp-play-volume.c

index 9d0f93d..6fac010 100644 (file)
@@ -31,6 +31,11 @@ static wifi_manager_h g_WifiManager = NULL;
 
 telephony_handle_list_s tel_list;
 
+/**
+ *
+ * @param bMultiPlay
+ * @return
+ */
 bool vp_play_config_set_multi_play_status(bool bMultiPlay)
 {
        int nErr = 0;
@@ -44,6 +49,11 @@ bool vp_play_config_set_multi_play_status(bool bMultiPlay)
        return TRUE;
 }
 
+/**
+ *
+ * @param bMultiPlay
+ * @return
+ */
 bool vp_play_config_get_multi_play_status(bool * bMultiPlay)
 {
        int nErr = 0;
@@ -60,6 +70,11 @@ bool vp_play_config_get_multi_play_status(bool * bMultiPlay)
        return TRUE;
 }
 
+/**
+ *
+ * @param bStatus
+ * @return
+ */
 bool vp_play_config_get_rotate_lock_status(bool * bStatus)
 {
        bool bLocked = FALSE;
@@ -77,6 +92,11 @@ bool vp_play_config_get_rotate_lock_status(bool * bStatus)
        return TRUE;
 }
 
+/**
+ *
+ * @param nType
+ * @return
+ */
 bool vp_play_config_get_sort_type_key(int *nType)
 {
 
@@ -94,6 +114,11 @@ bool vp_play_config_get_sort_type_key(int *nType)
        return TRUE;
 }
 
+/**
+ *
+ * @param szMediaURL
+ * @return
+ */
 bool vp_play_config_set_preview_url_videos(const char *szMediaURL)
 {
        if (!szMediaURL) {
@@ -117,6 +142,11 @@ bool vp_play_config_set_preview_url_videos(const char *szMediaURL)
        return TRUE;
 }
 
+/**
+ *
+ * @param szMediaURL
+ * @return
+ */
 bool vp_play_config_get_preview_url_videos(char **szMediaURL)
 {
        int nErr =
@@ -130,6 +160,11 @@ bool vp_play_config_get_preview_url_videos(char **szMediaURL)
        return TRUE;
 }
 
+/**
+ *
+ * @param bConnect
+ * @return
+ */
 bool vp_play_config_get_wifi_direct_connect_status(bool * bConnect)
 {
        int nErr = -1;
@@ -164,6 +199,11 @@ bool vp_play_config_get_wifi_direct_connect_status(bool * bConnect)
        return TRUE;
 }
 
+/**
+ *
+ * @param bConnect
+ * @return
+ */
 bool vp_play_config_get_wifi_direct_active_status(bool * bConnect)
 {
        int nErr = 0;
@@ -187,6 +227,11 @@ bool vp_play_config_get_wifi_direct_active_status(bool * bConnect)
 
 }
 
+/**
+ *
+ * @param bCallOn
+ * @return
+ */
 bool vp_play_config_get_call_state(bool * bCallOn)
 {
        VideoLogInfo("start");
@@ -225,6 +270,13 @@ bool vp_play_config_get_call_state(bool * bCallOn)
        return false;
 }
 
+/**
+ *
+ * @param handle
+ * @param noti_id
+ * @param data
+ * @param user_data
+ */
 static void _call_async_event_callback(telephony_h handle,
                                                                           telephony_noti_e noti_id,
                                                                           void *data, void *user_data)
@@ -273,6 +325,12 @@ static void _call_async_event_callback(telephony_h handle,
        return;
 }
 
+/**
+ *
+ *
+ * @param pUserData
+ * @return
+ */
 bool vp_play_telephony_initialize(void *pUserData)
 {
        if (pUserData == NULL) {
@@ -288,7 +346,7 @@ bool vp_play_telephony_initialize(void *pUserData)
        }
 
        /*setting callbacks */
-       for (int i=0;i<tel_list.count;i++) {
+       for (int i = 0; i < tel_list.count; i++) {
                int api_err =
                        telephony_set_noti_cb(tel_list.handle[i], TELEPHONY_NOTI_VOICE_CALL_STATE,
                                                                  (telephony_noti_cb)
@@ -315,6 +373,10 @@ bool vp_play_telephony_initialize(void *pUserData)
        return TRUE;
 }
 
+/**
+ *
+ * @return
+ */
 bool vp_play_telephony_deinitialize(void)
 {
        telephony_h *newhandle = tel_list.handle;
@@ -341,6 +403,11 @@ bool vp_play_telephony_deinitialize(void)
        return TRUE;
 }
 
+/**
+ *
+ * @param bChargeState
+ * @return
+ */
 bool vp_play_config_get_battery_charge_state(bool * bChargeState)
 {
        int nErr = -1;
@@ -359,7 +426,11 @@ bool vp_play_config_get_battery_charge_state(bool * bChargeState)
        return TRUE;
 }
 
-
+/**
+ *
+ * @param bLCDOff
+ * @return
+ */
 bool vp_play_config_get_lcd_off_state(bool * bLCDOff)
 {
        int nErr = 0;
@@ -379,6 +450,12 @@ bool vp_play_config_get_lcd_off_state(bool * bLCDOff)
        return TRUE;
 }
 
+/**
+ *
+ * @param pFunc
+ * @param pUserData
+ * @return
+ */
 bool
 vp_play_config_set_rotate_state_key_changed_cb(system_settings_changed_cb
                                                                                           pFunc, void *pUserData)
@@ -396,6 +473,12 @@ vp_play_config_set_rotate_state_key_changed_cb(system_settings_changed_cb
        return TRUE;
 }
 
+/**
+ *
+ * @param pFunc
+ * @param pUserData
+ * @return
+ */
 bool
 vp_play_config_set_lock_state_key_changed_cb(system_settings_changed_cb
                                                                                         pFunc, void *pUserData)
@@ -413,6 +496,10 @@ vp_play_config_set_lock_state_key_changed_cb(system_settings_changed_cb
        return TRUE;
 }
 
+/**
+ *
+ * @return
+ */
 bool vp_play_config_ignore_rotate_state_key_changed_cb()
 {
        int nErr = -1;
@@ -428,6 +515,12 @@ bool vp_play_config_ignore_rotate_state_key_changed_cb()
        return TRUE;
 }
 
+/**
+ *
+ * @param pFunc
+ * @param pUserData
+ * @return
+ */
 bool
 vp_play_config_set_battery_charge_state_key_changed_cb
 (runtime_info_changed_cb pFunc, void *pUserData)
@@ -445,6 +538,10 @@ vp_play_config_set_battery_charge_state_key_changed_cb
        return TRUE;
 }
 
+/**
+ *
+ * @return
+ */
 bool vp_play_wifi_initialize()
 {
        int nErr = -1;
@@ -462,6 +559,12 @@ bool vp_play_wifi_initialize()
        return TRUE;
 }
 
+/**
+ *
+ * @param pFunc
+ * @param pUserData
+ * @return
+ */
 bool
 vp_play_config_set_wifi_state_key_changed_cb
 (wifi_connection_state_changed_cb pFunc, void *pUserData)
@@ -485,6 +588,10 @@ vp_play_config_set_wifi_state_key_changed_cb
        return TRUE;
 }
 
+/**
+ *
+ * @return
+ */
 bool vp_play_config_ignore_battery_charge_state_key_changed_cb()
 {
        int nErr = -1;
@@ -501,6 +608,10 @@ bool vp_play_config_ignore_battery_charge_state_key_changed_cb()
        return TRUE;
 }
 
+/**
+ *
+ * @return
+ */
 bool vp_play_config_ignore_wifi_state_key_changed_cb()
 {
        int nErr = -1;
@@ -515,6 +626,9 @@ bool vp_play_config_ignore_wifi_state_key_changed_cb()
        return TRUE;
 }
 
+/**
+ *
+ */
 void vp_play_wifi_deinitialize()
 {
        int nErr = -1;
index 80ebeb3..9a5e075 100644 (file)
@@ -58,6 +58,9 @@
 /*for saving sound alive value*/
 #define VP_PREFERENCE_KEY_SOUND_ALIVE                          "preference/org.tizen.videos/sound_alive"
 
+/**
+ *
+ */
 void vp_play_preference_init()
 {
        VideoLogInfo("");
@@ -503,6 +506,11 @@ void vp_play_preference_init()
        }
 }
 
+/**
+ *
+ * @param bMultiPlay
+ * @return
+ */
 bool vp_play_preference_set_multi_play_status(bool bMultiPlay)
 {
        int nErr = 0;
@@ -519,6 +527,11 @@ bool vp_play_preference_set_multi_play_status(bool bMultiPlay)
        return TRUE;
 }
 
+/**
+ *
+ * @param bMultiPlay
+ * @return
+ */
 bool vp_play_preference_get_multi_play_status(bool * bMultiPlay)
 {
        int nErr = 0;
@@ -536,6 +549,11 @@ bool vp_play_preference_get_multi_play_status(bool * bMultiPlay)
        return TRUE;
 }
 
+/**
+ *
+ * @param bMultiPlay
+ * @return
+ */
 bool vp_play_preference_set_mirroring_warning_status(bool bMultiPlay)
 {
        int nErr = 0;
@@ -553,6 +571,11 @@ bool vp_play_preference_set_mirroring_warning_status(bool bMultiPlay)
        return TRUE;
 }
 
+/**
+ *
+ * @param bWarning
+ * @return
+ */
 bool vp_play_preference_get_mirroring_warning_status(bool * bWarning)
 {
        int nErr = 0;
@@ -573,6 +596,11 @@ bool vp_play_preference_get_mirroring_warning_status(bool * bWarning)
        return TRUE;
 }
 
+/**
+ *
+ * @param bShow
+ * @return
+ */
 bool vp_play_preference_get_subtitle_show_key(bool * bShow)
 {
        int nErr = 0;
@@ -589,6 +617,11 @@ bool vp_play_preference_get_subtitle_show_key(bool * bShow)
        return TRUE;
 }
 
+/**
+ *
+ * @param bShow
+ * @return
+ */
 bool vp_play_preference_set_subtitle_show_key(bool bShow)
 {
        int nErr = 0;
@@ -602,6 +635,11 @@ bool vp_play_preference_set_subtitle_show_key(bool bShow)
        return TRUE;
 }
 
+/**
+ *
+ * @param szFontName
+ * @return
+ */
 bool vp_play_preference_set_subtitle_font_name_key(const char *szFontName)
 {
        int nErr = 0;
@@ -616,6 +654,11 @@ bool vp_play_preference_set_subtitle_font_name_key(const char *szFontName)
        return TRUE;
 }
 
+/**
+ *
+ * @param szFontName
+ * @return
+ */
 bool vp_play_preference_get_subtitle_font_name_key(char **szFontName)
 {
        int nErr = 0;
@@ -629,6 +672,11 @@ bool vp_play_preference_get_subtitle_font_name_key(char **szFontName)
        return TRUE;
 }
 
+/**
+ *
+ * @param nSize
+ * @return
+ */
 bool vp_play_preference_get_subtitle_size_key(int *nSize)
 {
        int nErr = 0;
@@ -646,6 +694,11 @@ bool vp_play_preference_get_subtitle_size_key(int *nSize)
 
 }
 
+/**
+ *
+ * @param nSize
+ * @return
+ */
 bool vp_play_preference_set_subtitle_size_key(int nSize)
 {
        int nErr = 0;
@@ -659,7 +712,11 @@ bool vp_play_preference_set_subtitle_size_key(int nSize)
        return TRUE;
 }
 
-
+/**
+ *
+ * @param nEdge
+ * @return
+ */
 bool vp_play_preference_get_subtitle_edge_key(int *nEdge)
 {
        int nErr = 0;
@@ -677,6 +734,11 @@ bool vp_play_preference_get_subtitle_edge_key(int *nEdge)
 
 }
 
+/**
+ *
+ * @param nEdge
+ * @return
+ */
 bool vp_play_preference_set_subtitle_edge_key(int nEdge)
 {
        int nErr = 0;
@@ -690,6 +752,11 @@ bool vp_play_preference_set_subtitle_edge_key(int nEdge)
        return TRUE;
 }
 
+/**
+ *
+ * @param nAlignment
+ * @return
+ */
 bool vp_play_preference_set_subtitle_alignment_key(int nAlignment)
 {
        int nErr = 0;
@@ -705,6 +772,11 @@ bool vp_play_preference_set_subtitle_alignment_key(int nAlignment)
        return TRUE;
 }
 
+/**
+ *
+ * @param nAlignment
+ * @return
+ */
 bool vp_play_preference_get_subtitle_alignment_key(int *nAlignment)
 {
        int nErr = 0;
@@ -722,6 +794,11 @@ bool vp_play_preference_get_subtitle_alignment_key(int *nAlignment)
 
 }
 
+/**
+ *
+ * @param nColor
+ * @return
+ */
 bool vp_play_preference_set_subtitle_font_color_key(int nColor)
 {
        int nErr = 0;
@@ -736,6 +813,11 @@ bool vp_play_preference_set_subtitle_font_color_key(int nColor)
        return TRUE;
 }
 
+/**
+ *
+ * @param nColor
+ * @return
+ */
 bool vp_play_preference_get_subtitle_font_color_key(int *nColor)
 {
        int nErr = 0;
@@ -753,6 +835,11 @@ bool vp_play_preference_get_subtitle_font_color_key(int *nColor)
 
 }
 
+/**
+ *
+ * @param szColorHex
+ * @return
+ */
 bool vp_play_preference_set_subtitle_font_color_hex_key(const char
                                                                                                                *szColorHex)
 {
@@ -771,6 +858,11 @@ bool vp_play_preference_set_subtitle_font_color_hex_key(const char
        return TRUE;
 }
 
+/**
+ *
+ * @param szColorHex
+ * @return
+ */
 bool vp_play_preference_get_subtitle_font_color_hex_key(char **szColorHex)
 {
        int nErr = 0;
@@ -787,6 +879,11 @@ bool vp_play_preference_get_subtitle_font_color_hex_key(char **szColorHex)
        return TRUE;
 }
 
+/**
+ *
+ * @param szColorHex
+ * @return
+ */
 bool vp_play_preference_set_subtitle_bg_color_hex_key(const char
                                                                                                          *szColorHex)
 {
@@ -804,6 +901,11 @@ bool vp_play_preference_set_subtitle_bg_color_hex_key(const char
        return TRUE;
 }
 
+/**
+ *
+ * @param szColorHex
+ * @return
+ */
 bool vp_play_preference_get_subtitle_bg_color_hex_key(char **szColorHex)
 {
        int nErr = 0;
@@ -819,6 +921,11 @@ bool vp_play_preference_get_subtitle_bg_color_hex_key(char **szColorHex)
        return TRUE;
 }
 
+/**
+ *
+ * @param szColorHex
+ * @return
+ */
 bool vp_play_preference_set_subtitle_caption_win_color_hex_key(const char
                                                                                                                           *szColorHex)
 {
@@ -837,6 +944,11 @@ bool vp_play_preference_set_subtitle_caption_win_color_hex_key(const char
        return TRUE;
 }
 
+/**
+ *
+ * @param szColorHex
+ * @return
+ */
 bool vp_play_preference_get_subtitle_caption_win_color_hex_key(char
                                                                                                                           **szColorHex)
 {
@@ -854,6 +966,11 @@ bool vp_play_preference_get_subtitle_caption_win_color_hex_key(char
        return TRUE;
 }
 
+/**
+ *
+ * @param nColor
+ * @return
+ */
 bool vp_play_preference_get_subtitle_bg_color_key(int *nColor)
 {
        int nErr = 0;
@@ -872,6 +989,11 @@ bool vp_play_preference_get_subtitle_bg_color_key(int *nColor)
 
 }
 
+/**
+ *
+ * @param nColor
+ * @return
+ */
 bool vp_play_preference_set_subtitle_bg_color_key(int nColor)
 {
        int nErr = 0;
@@ -886,6 +1008,11 @@ bool vp_play_preference_set_subtitle_bg_color_key(int nColor)
        return TRUE;
 }
 
+/**
+ *
+ * @param nMode
+ * @return
+ */
 bool vp_play_preference_get_repeat_mode_key(int *nMode)
 {
        int nErr = 0;
@@ -903,6 +1030,11 @@ bool vp_play_preference_get_repeat_mode_key(int *nMode)
 
 }
 
+/**
+ *
+ * @param nMode
+ * @return
+ */
 bool vp_play_preference_set_repeat_mode_key(int nMode)
 {
        int nErr = 0;
@@ -916,6 +1048,11 @@ bool vp_play_preference_set_repeat_mode_key(int nMode)
        return TRUE;
 }
 
+/**
+ *
+ * @param nMode
+ * @return
+ */
 bool vp_play_preference_get_screen_mode_key(int *nMode)
 {
        int nErr = 0;
@@ -933,6 +1070,11 @@ bool vp_play_preference_get_screen_mode_key(int *nMode)
 
 }
 
+/**
+ *
+ * @param nMode
+ * @return
+ */
 bool vp_play_preference_set_screen_mode_key(int nMode)
 {
        int nErr = 0;
@@ -948,6 +1090,11 @@ bool vp_play_preference_set_screen_mode_key(int nMode)
        return TRUE;
 }
 
+/**
+ *
+ * @param bEnable
+ * @return
+ */
 bool vp_play_preference_get_capture_on_key(bool * bEnable)
 {
        int nErr = 0;
@@ -966,6 +1113,11 @@ bool vp_play_preference_get_capture_on_key(bool * bEnable)
        return TRUE;
 }
 
+/**
+ *
+ * @param bEnable
+ * @return
+ */
 bool vp_play_preference_set_capture_on_key(bool bEnable)
 {
        int nErr = 0;
@@ -981,7 +1133,11 @@ bool vp_play_preference_set_capture_on_key(bool bEnable)
        return TRUE;
 }
 
-
+/**
+ *
+ * @param bEnable
+ * @return
+ */
 bool vp_play_preference_get_tag_active_key(bool * bEnable)
 {
        int nErr = 0;
@@ -998,6 +1154,11 @@ bool vp_play_preference_get_tag_active_key(bool * bEnable)
        return TRUE;
 }
 
+/**
+ *
+ * @param bEnable
+ * @return
+ */
 bool vp_play_preference_set_tag_active_key(bool bEnable)
 {
        int nErr = 0;
@@ -1011,7 +1172,11 @@ bool vp_play_preference_set_tag_active_key(bool bEnable)
        return TRUE;
 }
 
-
+/**
+ *
+ * @param bEnable
+ * @return
+ */
 bool vp_play_preference_get_tag_weather_key(bool * bEnable)
 {
        int nErr = 0;
@@ -1028,6 +1193,11 @@ bool vp_play_preference_get_tag_weather_key(bool * bEnable)
        return TRUE;
 }
 
+/**
+ *
+ * @param bEnable
+ * @return
+ */
 bool vp_play_preference_set_tag_weather_key(bool bEnable)
 {
        int nErr = 0;
@@ -1041,6 +1211,11 @@ bool vp_play_preference_set_tag_weather_key(bool bEnable)
        return TRUE;
 }
 
+/**
+ *
+ * @param bEnable
+ * @return
+ */
 bool vp_play_preference_get_tag_location_key(bool * bEnable)
 {
        int nErr = 0;
@@ -1057,6 +1232,11 @@ bool vp_play_preference_get_tag_location_key(bool * bEnable)
        return TRUE;
 }
 
+/**
+ *
+ * @param bEnable
+ * @return
+ */
 bool vp_play_preference_set_tag_location_key(bool bEnable)
 {
        int nErr = 0;
@@ -1070,6 +1250,11 @@ bool vp_play_preference_set_tag_location_key(bool bEnable)
        return TRUE;
 }
 
+/**
+ *
+ * @param nWeather
+ * @return
+ */
 bool vp_play_preference_get_tag_edit_weather_key(int *nWeather)
 {
 
@@ -1088,6 +1273,11 @@ bool vp_play_preference_get_tag_edit_weather_key(int *nWeather)
        return TRUE;
 }
 
+/**
+ *
+ * @param nWeather
+ * @return
+ */
 bool vp_play_preference_set_tag_edit_weather_key(int nWeather)
 {
        int nErr = 0;
@@ -1103,7 +1293,11 @@ bool vp_play_preference_set_tag_edit_weather_key(int nWeather)
        return TRUE;
 }
 
-
+/**
+ *
+ * @param nType
+ * @return
+ */
 bool vp_play_preference_get_sort_type_key(int *nType)
 {
 
@@ -1122,6 +1316,11 @@ bool vp_play_preference_get_sort_type_key(int *nType)
        return TRUE;
 }
 
+/**
+ *
+ * @param szMediaURL
+ * @return
+ */
 bool vp_play_preference_set_preview_url_videos(const char *szMediaURL)
 {
        if (!szMediaURL) {
@@ -1147,6 +1346,11 @@ bool vp_play_preference_set_preview_url_videos(const char *szMediaURL)
        return TRUE;
 }
 
+/**
+ *
+ * @param szMediaURL
+ * @return
+ */
 bool vp_play_preference_get_preview_url_videos(char **szMediaURL)
 {
        int nErr = 0;
@@ -1163,6 +1367,11 @@ bool vp_play_preference_get_preview_url_videos(char **szMediaURL)
        return TRUE;
 }
 
+/**
+ *
+ * @param nAudioTrack
+ * @return
+ */
 bool vp_play_preference_set_preview_audio_track(int nAudioTrack)
 {
        int nErr = 0;
@@ -1178,7 +1387,11 @@ bool vp_play_preference_set_preview_audio_track(int nAudioTrack)
        return TRUE;
 }
 
-
+/**
+ *
+ * @param nAudioTrack
+ * @return
+ */
 bool vp_play_preference_get_preview_audio_track(int *nAudioTrack)
 {
        int nErr = 0;
@@ -1197,6 +1410,11 @@ bool vp_play_preference_get_preview_audio_track(int *nAudioTrack)
        return TRUE;
 }
 
+/**
+ *
+ * @param bAsked
+ * @return
+ */
 bool vp_play_preference_get_sensor_asked_state(bool * bAsked)
 {
        int nErr = 0;
@@ -1213,6 +1431,11 @@ bool vp_play_preference_get_sensor_asked_state(bool * bAsked)
        return TRUE;
 }
 
+/**
+ *
+ * @param bAsked
+ * @return
+ */
 bool vp_play_preference_set_sensor_asked_state(bool bAsked)
 {
        int nErr = 0;
@@ -1226,6 +1449,11 @@ bool vp_play_preference_set_sensor_asked_state(bool bAsked)
        return TRUE;
 }
 
+/**
+ *
+ * @param bEnable
+ * @return
+ */
 bool vp_play_preference_get_allow_dock_connect_key(bool * bEnable)
 {
        int nErr = 0;
@@ -1245,6 +1473,11 @@ bool vp_play_preference_get_allow_dock_connect_key(bool * bEnable)
        return TRUE;
 }
 
+/**
+ *
+ * @param bEnable
+ * @return
+ */
 bool vp_play_preference_set_allow_dock_connect_key(bool bEnable)
 {
        int nErr = 0;
@@ -1261,6 +1494,11 @@ bool vp_play_preference_set_allow_dock_connect_key(bool bEnable)
        return TRUE;
 }
 
+/**
+ *
+ * @param bEnable
+ * @return
+ */
 bool vp_play_preference_get_extern_mode_key(bool * bEnable)
 {
        int nErr = 0;
@@ -1277,6 +1515,11 @@ bool vp_play_preference_get_extern_mode_key(bool * bEnable)
        return TRUE;
 }
 
+/**
+ *
+ * @param bEnable
+ * @return
+ */
 bool vp_play_preference_set_extern_mode_key(bool bEnable)
 {
        int nErr = 0;
@@ -1290,6 +1533,11 @@ bool vp_play_preference_set_extern_mode_key(bool bEnable)
        return TRUE;
 }
 
+/**
+ *
+ * @param nStatus
+ * @return
+ */
 bool vp_play_preference_get_sound_alive_status(int *nStatus)
 {
        int nErr = 0;
@@ -1307,6 +1555,11 @@ bool vp_play_preference_get_sound_alive_status(int *nStatus)
 
 }
 
+/**
+ *
+ * @param nStatus
+ * @return
+ */
 bool vp_play_preference_set_sound_alive_status(int nStatus)
 {
        int nErr = 0;
index 83bee6e..3d0cc1d 100644 (file)
 #define        VP_VIDEOS_ONLY_RAISE            "raise"
 
 /* callback functions */
+
+/**
+ *
+ * @param pRequest
+ * @param pReply
+ * @param nResult
+ * @param pUserData
+ */
 static void __vp_play_ug_reply_cb(app_control_h pRequest,
                                                                  app_control_h pReply,
                                                                  app_control_result_e nResult,
@@ -59,6 +67,14 @@ static void __vp_play_ug_reply_cb(app_control_h pRequest,
        vp_play_normal_view_set_share_panel_state(pUserData);
 }
 
+
+/**
+ *
+ * @param pWin
+ * @param bRaise
+ * @param pUserData
+ * @return
+ */
 bool vp_play_app_launch_videos(Evas_Object * pWin, bool bRaise,
                                                           void *pUserData)
 {
@@ -124,6 +140,14 @@ bool vp_play_app_launch_videos(Evas_Object * pWin, bool bRaise,
        return FALSE;
 }
 
+/**
+ *
+ * @param pWin
+ * @param szMediaURL
+ * @param pServiceShare
+ * @param pUserData
+ * @return
+ */
 bool vp_play_app_launch_share_panel(Evas_Object * pWin,
                                                                        const char *szMediaURL,
                                                                        app_control_h * pServiceShare,
index 4fc3a01..aeaf775 100644 (file)
@@ -61,6 +61,14 @@ enum VP_FILE_SIZE_TYPE {
        SIZE_GB
 };
 
+/**
+ *
+ * @param szLocale
+ * @param szCustomSkeleton
+ * @param szTimezone
+ * @param st_Date
+ * @return
+ */
 static char *_vp_play_util_convert_string(const char *szLocale,
                                                                                  const char *szCustomSkeleton,
                                                                                  const char *szTimezone,
@@ -154,8 +162,11 @@ static char *_vp_play_util_convert_string(const char *szLocale,
        return strdup(formattedString);
 }
 
-
-
+/**
+ *
+ * @param szFilePath
+ * @return
+ */
 char *vp_play_util_get_title_from_path(char *szFilePath)
 {
        if (szFilePath == NULL || strlen(szFilePath) <= 0) {
@@ -173,6 +184,11 @@ char *vp_play_util_get_title_from_path(char *szFilePath)
        return szTitle;
 }
 
+/**
+ *
+ * @param szFilePath
+ * @return
+ */
 char *vp_play_util_get_filename_from_path(char *szFilePath)
 {
        if (szFilePath == NULL || strlen(szFilePath) <= 0) {
@@ -186,6 +202,11 @@ char *vp_play_util_get_filename_from_path(char *szFilePath)
        return NULL;
 }
 
+/**
+ *
+ * @param szFilePath
+ * @return
+ */
 char *vp_play_util_get_folder_from_path(char *szFilePath)
 {
        if (szFilePath == NULL) {
@@ -222,6 +243,12 @@ char *vp_play_util_get_folder_from_path(char *szFilePath)
        return szFile;
 }
 
+/**
+ *
+ * @param pWin
+ * @param szKeyName
+ * @return
+ */
 bool vp_play_util_key_grab(Elm_Win * pWin, const char *szKeyName)
 {
        if (!pWin) {
@@ -235,6 +262,12 @@ bool vp_play_util_key_grab(Elm_Win * pWin, const char *szKeyName)
        return TRUE;
 }
 
+/**
+ *
+ * @param pWin
+ * @param szKeyName
+ * @return
+ */
 bool vp_play_util_key_ungrab(Elm_Win * pWin, const char *szKeyName)
 {
        if (!pWin) {
@@ -248,6 +281,11 @@ bool vp_play_util_key_ungrab(Elm_Win * pWin, const char *szKeyName)
        return TRUE;
 }
 
+/**
+ *
+ * @param pWin
+ * @param bVisible
+ */
 void vp_play_util_fb_visible_off(Evas_Object * pWin, bool bVisible)
 {
        VideoLogInfo("");
@@ -267,7 +305,11 @@ void vp_play_util_fb_visible_off(Evas_Object * pWin, bool bVisible)
        return;
 }
 
-
+/**
+ *
+ * @param nRotateVal
+ * @return
+ */
 bool vp_play_util_get_landscape_check(int nRotateVal)
 {
        video_play_rotate_t nRotate = VIDEO_PLAY_ROTATE_NONE;
@@ -281,6 +323,11 @@ bool vp_play_util_get_landscape_check(int nRotateVal)
        return FALSE;
 }
 
+/**
+ *
+ * @param pWin
+ * @return
+ */
 int vp_play_util_get_root_window_angle(Evas_Object * pWin)
 {
        int nAngle = 0;
@@ -294,6 +341,11 @@ int vp_play_util_get_root_window_angle(Evas_Object * pWin)
        return nAngle;
 }
 
+/**
+ *
+ * @param szMediaURL
+ * @return
+ */
 bool vp_play_util_local_file_check(char *szMediaURL)
 {
        if (szMediaURL == NULL) {
@@ -322,6 +374,12 @@ bool vp_play_util_local_file_check(char *szMediaURL)
        return TRUE;
 }
 
+/**
+ *
+ * @param szMediaURL
+ * @param szSubtitle
+ * @return
+ */
 bool vp_play_util_get_subtitle_path(const char *szMediaURL,
                                                                        char **szSubtitle)
 {
@@ -379,6 +437,10 @@ bool vp_play_util_get_subtitle_path(const char *szMediaURL,
        return TRUE;
 }
 
+/**
+ *
+ * @return
+ */
 double vp_play_util_get_sys_time(void)
 {
        struct timeval tv;
@@ -387,6 +449,11 @@ double vp_play_util_get_sys_time(void)
        return (double) tv.tv_sec + (double) tv.tv_usec / 1E6;
 }
 
+/**
+ *
+ * @param szStr
+ * @return
+ */
 bool vp_play_util_status_noti_show(const char *szStr)
 {
        if (!szStr) {
@@ -405,6 +472,11 @@ bool vp_play_util_status_noti_show(const char *szStr)
        return TRUE;
 }
 
+/**
+ *
+ * @param szURL
+ * @return
+ */
 char *vp_play_util_remove_prefix_to_url(char *szURL)
 {
        if (szURL == NULL) {
@@ -426,6 +498,11 @@ char *vp_play_util_remove_prefix_to_url(char *szURL)
        return NULL;
 }
 
+/**
+ *
+ * @param szUri
+ * @return
+ */
 bool vp_play_util_check_sdp_url(const char *szUri)
 {
        if (!szUri) {
@@ -439,6 +516,11 @@ bool vp_play_util_check_sdp_url(const char *szUri)
        return FALSE;
 }
 
+/**
+ *
+ * @param szUri
+ * @return
+ */
 char *vp_play_util_get_sdp_url(const char *szUri)
 {
        if (!szUri) {
@@ -468,6 +550,11 @@ char *vp_play_util_get_sdp_url(const char *szUri)
        return parsed_url;
 }
 
+/**
+ *
+ * @param lSize
+ * @param szSize
+ */
 void vp_play_util_convert_file_size(long long lSize, char **szSize)
 {
        unsigned long int size = (unsigned long int) lSize;
@@ -489,6 +576,11 @@ void vp_play_util_convert_file_size(long long lSize, char **szSize)
        }
 }
 
+/**
+ *
+ * @param dtime
+ * @param szFileDate
+ */
 void vp_play_util_get_convert_time(double dtime, char **szFileDate)
 {
        char *szSkeleton = NULL;
@@ -532,6 +624,14 @@ void vp_play_util_get_convert_time(double dtime, char **szFileDate)
        VP_FREE(szLocale);
 }
 
+/**
+ *
+ * @param szMediaURL
+ * @param szFileSize
+ * @param szFileDate
+ * @param szFileExtention
+ * @return
+ */
 bool vp_play_util_get_file_info(const char *szMediaURL, char **szFileSize,
                                                                char **szFileDate, char **szFileExtention)
 {
@@ -619,7 +719,11 @@ bool vp_play_util_get_file_info(const char *szMediaURL, char **szFileSize,
        return TRUE;
 }
 
-
+/**
+ *
+ * @param szURL
+ * @return
+ */
 bool vp_play_util_check_streaming(const char *szURL)
 {
        if (szURL == NULL) {
@@ -642,7 +746,11 @@ bool vp_play_util_check_streaming(const char *szURL)
        return FALSE;
 }
 
-
+/**
+ *
+ * @param szURL
+ * @return
+ */
 bool vp_play_util_rtsp_url_check(const char *szURL)
 {
        if (szURL == NULL) {
@@ -674,7 +782,14 @@ bool vp_play_util_rtsp_url_check(const char *szURL)
        return FALSE;
 }
 
-
+/**
+ *
+ * @param rtSrc
+ * @param rtDst
+ * @param rtResult
+ * @param nType
+ * @return
+ */
 bool vp_play_util_calculator_position(Evas_Coord_Rectangle rtSrc,
                                                                          Evas_Coord_Rectangle rtDst,
                                                                          Evas_Coord_Rectangle * rtResult,
@@ -722,6 +837,13 @@ bool vp_play_util_calculator_position(Evas_Coord_Rectangle rtSrc,
        return TRUE;
 }
 
+/**
+ *
+ * @param szFileName
+ * @param szBuffer
+ * @param nSize
+ * @return
+ */
 bool vp_play_util_save_file(const char *szFileName, char *szBuffer,
                                                        int nSize)
 {
@@ -750,6 +872,10 @@ bool vp_play_util_save_file(const char *szFileName, char *szBuffer,
        return TRUE;
 }
 
+/**
+ * .
+ * @return
+ */
 bool vp_play_util_get_network_status(void)
 {
        connection_h connection;
@@ -784,6 +910,11 @@ bool vp_play_util_get_network_status(void)
        return bSuccessful;
 }
 
+/**
+ *
+ * @param szPreviewUrl
+ * @return
+ */
 bool vp_play_util_check_personal_status(const char *szPreviewUrl)
 {
        Eina_Bool bRet = EINA_FALSE;
@@ -796,7 +927,11 @@ bool vp_play_util_check_personal_status(const char *szPreviewUrl)
        return (bool) bRet;
 }
 
-
+/**
+ *
+ * @param szPath
+ * @return
+ */
 bool vp_play_util_is_exist_subtitle_from_path(const char *szPath)
 {
 
@@ -849,7 +984,11 @@ bool vp_play_util_is_exist_subtitle_from_path(const char *szPath)
        return FALSE;
 }
 
-
+/**
+ *
+ * @param subtitleList
+ * @return
+ */
 bool vp_play_util_get_subtitle_path_list(GList ** subtitleList)
 {
        if (NULL == subtitleList) {
@@ -865,7 +1004,10 @@ bool vp_play_util_get_subtitle_path_list(GList ** subtitleList)
        return TRUE;
 }
 
-
+/**
+ *
+ * @return
+ */
 bool vp_play_util_app_resume(void)
 {
        char *app_id = NULL;
@@ -896,7 +1038,11 @@ bool vp_play_util_app_resume(void)
        return TRUE;
 }
 
-
+/**
+ *
+ * @param szText
+ * @return
+ */
 bool vp_play_util_check_white_space(char *szText)
 {
        if (szText == NULL) {
@@ -920,7 +1066,11 @@ bool vp_play_util_check_white_space(char *szText)
        return bIsWhiteSpace;
 }
 
-
+/**
+ *
+ * @param szFileName
+ * @return
+ */
 bool vp_play_util_check_valid_file_name(const char *szFileName)
 {
        if (szFileName == NULL) {
@@ -961,6 +1111,10 @@ bool vp_play_util_check_valid_file_name(const char *szFileName)
        return bReturn;
 }
 
+/**
+ *
+ * @param szFilePath
+ */
 unsigned long long vp_play_util_get_disk_available_space(const char
                                                                                                                 *szFilePath)
 {
@@ -991,6 +1145,10 @@ unsigned long long vp_play_util_get_disk_available_space(const char
        return (info.f_bsize) * ((unsigned long long) info.f_bavail);
 }
 
+/**
+ *
+ * @param szFilePath
+ */
 unsigned long long vp_play_util_get_file_size(const char *szFilePath)
 {
        if (szFilePath == NULL) {
@@ -1005,6 +1163,12 @@ unsigned long long vp_play_util_get_file_size(const char *szFilePath)
        return lSize;
 }
 
+/**
+ *
+ * @param szLocation
+ * @param szCity
+ * @return
+ */
 bool vp_play_util_get_city(const char *szLocation, char **szCity)
 {
 #define LOCATION_MAX_LEN                       256
@@ -1031,11 +1195,24 @@ bool vp_play_util_get_city(const char *szLocation, char **szCity)
        return true;
 }
 
+/**
+ *
+ * @param nXwinID
+ * @return
+ */
 bool vp_play_util_is_Xwindow_focused(Ecore_X_Window nXwinID)
 {
        return TRUE;
 }
 
+/**
+ *
+ * @param r
+ * @param g
+ * @param b
+ * @param a
+ * @return
+ */
 char *vp_play_util_convert_rgba_to_hex(int r, int g, int b, int a)
 {
        char *pColorHex;
@@ -1048,6 +1225,15 @@ char *vp_play_util_convert_rgba_to_hex(int r, int g, int b, int a)
        return pColorHex;
 }
 
+/**
+ *
+ * @param pColorHex
+ * @param r
+ * @param g
+ * @param b
+ * @param a
+ * @return
+ */
 bool vp_play_util_convert_hex_to_rgba(char *pColorHex, int *r, int *g,
                                                                          int *b, int *a)
 {
@@ -1078,6 +1264,13 @@ bool vp_play_util_convert_hex_to_rgba(char *pColorHex, int *r, int *g,
        return TRUE;
 }
 
+/**
+ *
+ * @param obj
+ * @param w
+ * @param h
+ * @param id
+ */
 void vp_play_util_set_object_size(Evas_Object * obj, int w, int h, int id)
 {
        Edje_Message_Int_Set *msg =
@@ -1093,6 +1286,15 @@ void vp_play_util_set_object_size(Evas_Object * obj, int w, int h, int id)
        free(msg);
 }
 
+/**
+ *
+ * @param obj
+ * @param r
+ * @param g
+ * @param b
+ * @param a
+ * @param id
+ */
 void vp_play_util_set_object_color(Evas_Object * obj, int r, int g, int b,
                                                                   int a, int id)
 {
@@ -1112,6 +1314,13 @@ void vp_play_util_set_object_color(Evas_Object * obj, int r, int g, int b,
        free(msg);
 }
 
+/**
+ *
+ * @param obj
+ * @param left
+ * @param top
+ * @param id
+ */
 void vp_play_util_set_object_offset(Evas_Object * obj, int left, int top,
                                                                        int id)
 {
@@ -1128,6 +1337,13 @@ void vp_play_util_set_object_offset(Evas_Object * obj, int left, int top,
        free(msg);
 }
 
+/**
+ *
+ * @param msg
+ * @param sig
+ * @param param
+ * @return
+ */
 static int __vp_play_util_append_variant(GDBusMessage * msg,
                                                                                 const char *sig,
                                                                                 const char *param[])
@@ -1153,6 +1369,16 @@ static int __vp_play_util_append_variant(GDBusMessage * msg,
 }
 
 #define GDBUS_REPLY_TIMEOUT (-1)
+/**
+ *
+ * @param dest
+ * @param path
+ * @param interface
+ * @param method
+ * @param sig
+ * @param param
+ * @return
+ */
 GDBusMessage *vp_play_util_invoke_dbus_method(const char *dest,
                                                                                          const char *path,
                                                                                          const char *interface,
@@ -1210,6 +1436,9 @@ GDBusMessage *vp_play_util_invoke_dbus_method(const char *dest,
        return reply;
 }
 
+/**
+ *
+ */
 void vp_play_util_set_lock_power_key()
 {
        VideoLogDebug("lock power key pressed");
@@ -1230,6 +1459,10 @@ void vp_play_util_set_lock_power_key()
        }
 }
 
+/**
+ *
+ *
+ */
 void vp_play_util_set_unlock_power_key()
 {
        VideoLogDebug("unlock power key pressed");
@@ -1249,6 +1482,12 @@ void vp_play_util_set_unlock_power_key()
        }
 }
 
+/**
+ *
+ * @param obj
+ * @param next
+ * @param dir
+ */
 void vp_play_util_focus_next_object_set(Evas_Object * obj,
                                                                                Evas_Object * next,
                                                                                Elm_Focus_Direction dir)
index 0c183d0..c55204a 100644 (file)
 /* callback functions */
 
 /* internal functions */
+/**
+ *
+ * @param connected
+ * @param remote_address
+ * @param user_data
+ */
 void _vp_avrcp_connection_state_changed_cb(bool connected,
                                                                                   const char *remote_address,
                                                                                   void *user_data)
@@ -44,6 +50,11 @@ void _vp_avrcp_connection_state_changed_cb(bool connected,
 }
 
 /* external functions */
+/**
+ *
+ * @param pViewHandle
+ * @return
+ */
 bool vp_avrcp_initialize(PlayView * pViewHandle)
 {
        VideoLogInfo("vp_avrcp_initialize start");
@@ -72,6 +83,10 @@ bool vp_avrcp_initialize(PlayView * pViewHandle)
        return TRUE;
 }
 
+/**
+ *
+ * @return
+ */
 bool vp_avrcp_deinitialize()
 {
        VideoLogInfo("vp_avrcp_deinitialize start");
@@ -96,6 +111,15 @@ bool vp_avrcp_deinitialize()
        return TRUE;
 }
 
+/**
+ *
+ * @param title
+ * @param artist
+ * @param album
+ * @param genre
+ * @param duration
+ * @return
+ */
 bool vp_avrcp_noti_track(const char *title, const char *artist,
                                                 const char *album, const char *genre,
                                                 unsigned int duration)
@@ -119,6 +143,11 @@ bool vp_avrcp_noti_track(const char *title, const char *artist,
        return TRUE;
 }
 
+/**
+ *
+ * @param position
+ * @return
+ */
 bool vp_avrcp_noti_track_position(unsigned int position)
 {
        VideoLogInfo("vp_avrcp_noti_track_position start");
@@ -138,6 +167,11 @@ bool vp_avrcp_noti_track_position(unsigned int position)
        return TRUE;
 }
 
+/**
+ *
+ * @param nState
+ * @return
+ */
 bool vp_avrcp_noti_player_state(vp_mm_player_state_t nState)
 {
        VideoLogInfo("vp_avrcp_noti_player_state start");
index f105b08..8175a40 100644 (file)
@@ -36,6 +36,10 @@ typedef struct {
 
 static Eina_List *g_pLanglist = NULL;  // internal
 
+/**
+ *
+ * @return
+ */
 bool _vp_language_list_destroy(void)
 {
        stLanguage *szNode = NULL;
@@ -56,6 +60,10 @@ bool _vp_language_list_destroy(void)
        return TRUE;
 }
 
+/**
+ *
+ * @param cur
+ */
 static void _vp_language_get_list(xmlNodePtr cur)
 {
        xmlNode *cur_node = NULL;
@@ -91,6 +99,10 @@ static void _vp_language_get_list(xmlNodePtr cur)
        }
 }
 
+/**
+ *
+ * @param szPath
+ */
 static void _vp_language_parse_XML(char *szPath)
 {
        if (!szPath) {
@@ -129,6 +141,11 @@ static void _vp_language_parse_XML(char *szPath)
        }
 }
 
+/**
+ *
+ * @param szPath
+ * @return
+ */
 bool _vp_language_list_load(char *szPath)
 {
        if (!g_pLanglist) {
@@ -138,6 +155,11 @@ bool _vp_language_list_load(char *szPath)
        return TRUE;
 }
 
+/**
+ *
+ * @param szCode
+ * @return
+ */
 char *vp_language_get_name(const char *szCode)
 {
        if (!g_pLanglist) {
@@ -174,12 +196,18 @@ char *vp_language_get_name(const char *szCode)
        return szName;
 }
 
+/**
+ *
+ */
 void vp_language_list_destroy()
 {
        VideoLogInfo("");
        _vp_language_list_destroy();
 }
 
+/**
+ *
+ */
 void vp_language_list_create()
 {
        if (NULL == g_pLanglist) {
index 5c033c1..c81f946 100644 (file)
 /* check temp */
 #include "vp-play-log.h"
 
+/**
+ *
+ * @return
+ */
 bool vp_device_display_lcd_lock(void)
 {
        int nRet = 0;
@@ -38,6 +42,10 @@ bool vp_device_display_lcd_lock(void)
        return TRUE;
 }
 
+/**
+ *
+ * @return
+ */
 bool vp_device_display_lcd_unlock(void)
 {
        int nRet = 0;
@@ -52,12 +60,21 @@ bool vp_device_display_lcd_unlock(void)
        return TRUE;
 }
 
-
+/**
+ *
+ * @param nRate
+ * @return
+ */
 bool vp_device_set_frame_rate(int nRate)
 {
        return TRUE;
 }
 
+/**
+ *
+ * @param nVal
+ * @return
+ */
 bool vp_device_set_brightness(int nVal)
 {
        int nRet = 0;
@@ -70,6 +87,11 @@ bool vp_device_set_brightness(int nVal)
        return TRUE;
 }
 
+/**
+ *
+ * @param nCurVal
+ * @return
+ */
 bool vp_device_get_brightness(int *nCurVal)
 {
        int nVal = 0;
@@ -85,7 +107,11 @@ bool vp_device_get_brightness(int *nCurVal)
        return TRUE;
 }
 
-
+/**
+ *
+ * @param nMaxVal
+ * @return
+ */
 bool vp_device_get_max_brightness(int *nMaxVal)
 {
        int nVal = 0;
@@ -102,6 +128,11 @@ bool vp_device_get_max_brightness(int *nMaxVal)
        return TRUE;
 }
 
+/**
+ *
+ * @param nMinVal
+ * @return
+ */
 bool vp_device_get_min_brightness(int *nMinVal)
 {
        int nVal = 0;
@@ -111,6 +142,11 @@ bool vp_device_get_min_brightness(int *nMinVal)
        return TRUE;
 }
 
+/**
+ *
+ * @param bLock
+ * @return
+ */
 bool vp_device_set_screen_off(bool bLock)
 {
        if (bLock) {
index fad5135..697a5b7 100644 (file)
@@ -29,12 +29,22 @@ typedef struct _HollIC_handle {
        HollICEventCbFunc pEventCb;
 } HollIC_handle;
 
+/**
+ *
+ * @param pEventCb
+ * @param pUserData
+ * @return
+ */
 hollic_handle vp_hollic_create_handle(HollICEventCbFunc pEventCb,
                                                                          void *pUserData)
 {
        return NULL;
 }
 
+/**
+ *
+ * @param pHollICHandle
+ */
 void vp_hollic_destroy_handle(hollic_handle pHollICHandle)
 {
        if (pHollICHandle == NULL) {
index a62b688..b43a7f6 100644 (file)
 #include "vp-image-util.h"
 #include "vp-util.h"
 
+/**
+ *
+ * @param szFilePath
+ * @param pSrcBuf
+ * @param nSrcW
+ * @param nSrcH
+ * @param nDestW
+ * @param nDestH
+ * @param nQuality
+ * @return
+ */
 bool vp_image_util_image_resize_save(const char *szFilePath,
                                                                         const unsigned char *pSrcBuf,
                                                                         int nSrcW, int nSrcH, int nDestW,
@@ -87,7 +98,15 @@ bool vp_image_util_image_resize_save(const char *szFilePath,
        return TRUE;
 }
 
-
+/**
+ *
+ * @param szFilePath
+ * @param pSrcBuf
+ * @param nSrcW
+ * @param nSrcH
+ * @param nQuality
+ * @return
+ */
 bool vp_image_util_image_save(const char *szFilePath,
                                                          const unsigned char *pSrcBuf, int nSrcW,
                                                          int nSrcH, int nQuality)
index f1c9a63..f415d9a 100644 (file)
@@ -32,9 +32,13 @@ static bool g_bMediaConnect = FALSE;
 static MediaUpdateCb g_media_update_cb = NULL;
 static media_content_noti_h noti_handle = NULL;
 
-
-
 /* callback functions */
+/**
+ *
+ * @param pMediaHandle
+ * @param pUserData
+ * @return
+ */
 static bool __vp_media_contents_info_cb(media_info_h pMediaHandle,
                                                                                void *pUserData)
 {
@@ -67,6 +71,12 @@ static bool __vp_media_contents_info_cb(media_info_h pMediaHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pBookmark
+ * @param pUserData
+ * @return
+ */
 static bool __vp_media_contents_bookmark_iter_cb(media_bookmark_h
                                                                                                 pBookmark,
                                                                                                 void *pUserData)
@@ -97,7 +107,12 @@ static bool __vp_media_contents_bookmark_iter_cb(media_bookmark_h
        return TRUE;
 }
 
-
+/**
+ *
+ * @param pMediaInfo
+ * @param pUserData
+ * @return
+ */
 static bool __vp_media_contents_video_iter_cb(media_info_h pMediaInfo,
                                                                                          void *pUserData)
 {
@@ -134,11 +149,27 @@ static bool __vp_media_contents_video_iter_cb(media_info_h pMediaInfo,
        return TRUE;
 }
 
+/**
+ *
+ * @return
+ */
 static int __vp_media_contents_get_pid(void)
 {
        return getpid();
 }
 
+/**
+ *
+ * @param nError
+ * @param nPid
+ * @param nUpdateItem
+ * @param nUpdateType
+ * @param nMediaType
+ * @param szUuid
+ * @param szPath
+ * @param szMimeType
+ * @param pUserData
+ */
 static void __vp_media_contents_db_update_cb(media_content_error_e nError,
                                                                                         int nPid,
                                                                                         media_content_db_update_item_type_e
@@ -169,6 +200,12 @@ static void __vp_media_contents_db_update_cb(media_content_error_e nError,
        g_media_update_cb(pUserData);
 }
 
+/**
+ *
+ * @param pFolderItem
+ * @param pUserData
+ * @return
+ */
 static bool __vp_media_contents_folder_iter_cb(media_folder_h pFolderItem,
                                                                                           void *pUserData)
 {
@@ -196,6 +233,12 @@ static bool __vp_media_contents_folder_iter_cb(media_folder_h pFolderItem,
        return TRUE;
 }
 
+/**
+ *
+ * @param pMediaInfo
+ * @param pUserData
+ * @return
+ */
 static bool __vp_media_contents_subtitles_iter_cb(media_info_h pMediaInfo,
                                                                                                  void *pUserData)
 {
@@ -226,8 +269,11 @@ static bool __vp_media_contents_subtitles_iter_cb(media_info_h pMediaInfo,
        return TRUE;
 }
 
-
 /* external functions */
+/**
+ *
+ * @return
+ */
 bool vp_media_contents_connect()
 {
        int nRet = MEDIA_CONTENT_ERROR_NONE;
@@ -247,6 +293,10 @@ bool vp_media_contents_connect()
        return TRUE;
 }
 
+/**
+ *
+ * @return
+ */
 bool vp_media_contents_disconnect()
 {
        int nRet = MEDIA_CONTENT_ERROR_NONE;
@@ -267,7 +317,12 @@ bool vp_media_contents_disconnect()
        return TRUE;
 }
 
-
+/**
+ *
+ * @param szFilePath
+ * @param szVideoID
+ * @return
+ */
 bool vp_media_contents_get_video_id(const char *szFilePath,
                                                                        char **szVideoID)
 {
@@ -371,6 +426,12 @@ bool vp_media_contents_get_video_id(const char *szFilePath,
        return FALSE;
 }
 
+/**
+ *
+ * @param szFilePath
+ * @param szThumbnailPath
+ * @return
+ */
 bool vp_media_contents_get_video_thumbnail_path(const char *szFilePath,
                                                                                                char **szThumbnailPath)
 {
@@ -466,6 +527,11 @@ bool vp_media_contents_get_video_thumbnail_path(const char *szFilePath,
        return FALSE;
 }
 
+/**
+ *
+ * @param szFilePath
+ * @return
+ */
 bool vp_media_contents_scan_file(const char *szFilePath)
 {
        if (!szFilePath) {
@@ -476,6 +542,11 @@ bool vp_media_contents_scan_file(const char *szFilePath)
        return TRUE;
 }
 
+/**
+ *
+ * @param szMediaURL
+ * @return
+ */
 bool vp_media_contents_update_db(const char *szMediaURL)
 {
        if (!szMediaURL) {
@@ -503,6 +574,11 @@ bool vp_media_contents_update_db(const char *szMediaURL)
        return TRUE;
 }
 
+/**
+ *
+ * @param szMediaID
+ * @return
+ */
 bool vp_media_contents_refresh_db(const char *szMediaID)
 {
        if (!szMediaID) {
@@ -519,6 +595,11 @@ bool vp_media_contents_refresh_db(const char *szMediaID)
        return TRUE;
 }
 
+/**
+ *
+ * @param szFilePath
+ * @return
+ */
 bool vp_media_contents_set_played_time(const char *szFilePath)
 {
        if (szFilePath == NULL) {
@@ -638,6 +719,12 @@ bool vp_media_contents_set_played_time(const char *szFilePath)
        return FALSE;
 }
 
+/**
+ *
+ * @param szFilePath
+ * @param nPosition
+ * @return
+ */
 bool vp_media_contents_set_played_position(const char *szFilePath,
                                                                                   int nPosition)
 {
@@ -756,6 +843,12 @@ bool vp_media_contents_set_played_position(const char *szFilePath,
        return FALSE;
 }
 
+/**
+ *
+ * @param szFilePath
+ * @param nPosition
+ * @return
+ */
 bool vp_media_contents_get_played_position(const char *szFilePath,
                                                                                   int *nPosition)
 {
@@ -870,6 +963,12 @@ bool vp_media_contents_get_played_position(const char *szFilePath,
 
 }
 
+/**
+ *
+ * @param pMediaHandle
+ * @param szLastModified
+ * @return
+ */
 int vp_media_contents_get_modified_time(media_info_h pMediaHandle,
                                                                                char **szLastModified)
 {
@@ -902,6 +1001,18 @@ int vp_media_contents_get_modified_time(media_info_h pMediaHandle,
        return nRet;
 }
 
+/**
+ *
+ * @param szFilePath
+ * @param szTitle
+ * @param nWidth
+ * @param nHeight
+ * @param nDuration
+ * @param dLatitude
+ * @param dLongitude
+ * @param szTmpLastModified
+ * @return
+ */
 bool vp_media_contents_get_content_info(const char *szFilePath,
                                                                                char **szTitle, int *nWidth,
                                                                                int *nHeight, int *nDuration,
@@ -1054,6 +1165,13 @@ bool vp_media_contents_get_content_info(const char *szFilePath,
        return FALSE;
 }
 
+/**
+ *
+ * @param szFilePath
+ * @param dLatitude
+ * @param dLongitude
+ * @return
+ */
 bool vp_media_metadata_get_gps_info(const char *szFilePath,
                                                                        double *dLatitude, double *dLongitude)
 {
@@ -1130,6 +1248,12 @@ bool vp_media_metadata_get_gps_info(const char *szFilePath,
        return FALSE;
 }
 
+/**
+ *
+ * @param szFilePath
+ * @param nDuration
+ * @return
+ */
 bool vp_media_metadata_get_duration(const char *szFilePath, int *nDuration)
 {
        if (szFilePath == NULL) {
@@ -1190,6 +1314,12 @@ bool vp_media_metadata_get_duration(const char *szFilePath, int *nDuration)
 
 }
 
+/**
+ *
+ * @param szFilePath
+ * @param nWidth
+ * @return
+ */
 bool vp_media_metadata_get_width(const char *szFilePath, int *nWidth)
 {
        if (szFilePath == NULL) {
@@ -1250,6 +1380,12 @@ bool vp_media_metadata_get_width(const char *szFilePath, int *nWidth)
 
 }
 
+/**
+ *
+ * @param szFilePath
+ * @param nHeight
+ * @return
+ */
 bool vp_media_metadata_get_height(const char *szFilePath, int *nHeight)
 {
        if (szFilePath == NULL) {
@@ -1310,7 +1446,12 @@ bool vp_media_metadata_get_height(const char *szFilePath, int *nHeight)
 
 }
 
-
+/**
+ *
+ * @param szMediaID
+ * @param list
+ * @return
+ */
 bool vp_media_contents_bookmark_list_get(const char *szMediaID,
                                                                                 GList ** list)
 {
@@ -1378,7 +1519,11 @@ bool vp_media_contents_bookmark_list_get(const char *szMediaID,
        return FALSE;
 }
 
-
+/**
+ *
+ * @param pList
+ * @return
+ */
 bool vp_media_contents_bookmark_list_clear(GList * pList)
 {
        VideoLogInfo("");
@@ -1407,6 +1552,13 @@ bool vp_media_contents_bookmark_list_clear(GList * pList)
        return TRUE;
 }
 
+/**
+ *
+ * @param szMediaID
+ * @param nPosition
+ * @param szFilePath
+ * @return
+ */
 bool vp_media_contents_bookmark_insert(const char *szMediaID,
                                                                           int nPosition,
                                                                           const char *szFilePath)
@@ -1444,8 +1596,12 @@ bool vp_media_contents_bookmark_insert(const char *szMediaID,
        return TRUE;
 }
 
-
-
+/**
+ *
+ * @param szMediaID
+ * @param nPosition
+ * @return
+ */
 bool vp_media_contents_bookmark_delete(const char *szMediaID,
                                                                           int nPosition)
 {
@@ -1544,8 +1700,11 @@ bool vp_media_contents_bookmark_delete(const char *szMediaID,
        return TRUE;
 }
 
-
-
+/**
+ *
+ * @param szMediaID
+ * @return
+ */
 bool vp_media_contents_bookmark_delete_all(const char *szMediaID)
 {
        if (szMediaID == NULL) {
@@ -1614,7 +1773,13 @@ bool vp_media_contents_bookmark_delete_all(const char *szMediaID)
        return TRUE;
 }
 
-
+/**
+ *
+ * @param pItem
+ * @param szFilePath
+ * @param nPosition
+ * @return
+ */
 bool vp_media_contents_bookmark_get_item_info(void *pItem,
                                                                                          char **szFilePath,
                                                                                          int *nPosition)
@@ -1645,6 +1810,13 @@ bool vp_media_contents_bookmark_get_item_info(void *pItem,
        return TRUE;
 }
 
+/**
+ *
+ * @param nSortType
+ * @param szFolder
+ * @param pList
+ * @return
+ */
 bool vp_media_contents_get_video_items_to_folder(int nSortType,
                                                                                                 char *szFolder,
                                                                                                 GList ** pList)
@@ -1794,6 +1966,12 @@ bool vp_media_contents_get_video_items_to_folder(int nSortType,
        return FALSE;
 }
 
+/**
+ *
+ * @param nSortType
+ * @param pList
+ * @return
+ */
 bool vp_media_contents_get_video_items(int nSortType, GList ** pList)
 {
        vp_media_contents_connect();
@@ -1898,6 +2076,11 @@ bool vp_media_contents_get_video_items(int nSortType, GList ** pList)
        return FALSE;
 }
 
+/**
+ *
+ * @param pList
+ * @return
+ */
 bool vp_media_contents_free_video_items(GList * pList)
 {
        VideoLogInfo("");
@@ -1926,6 +2109,14 @@ bool vp_media_contents_free_video_items(GList * pList)
        return TRUE;
 }
 
+/**
+ *
+ * @param szMediaURL
+ * @param szNextURL
+ * @param bLoop
+ * @param pList
+ * @return
+ */
 bool vp_media_contents_get_next_file_path(const char *szMediaURL,
                                                                                  char **szNextURL, bool bLoop,
                                                                                  GList * pList)
@@ -1997,6 +2188,14 @@ bool vp_media_contents_get_next_file_path(const char *szMediaURL,
        return TRUE;
 }
 
+/**
+ *
+ * @param szMediaURL
+ * @param szPrevURL
+ * @param bLoop
+ * @param pList
+ * @return
+ */
 bool vp_media_contents_get_prev_file_path(const char *szMediaURL,
                                                                                  char **szPrevURL, bool bLoop,
                                                                                  GList * pList)
@@ -2068,7 +2267,12 @@ bool vp_media_contents_get_prev_file_path(const char *szMediaURL,
        return TRUE;
 }
 
-
+/**
+ *
+ * @param pFunc
+ * @param pUserData
+ * @return
+ */
 bool vp_media_contents_set_update_cb(MediaUpdateCb pFunc, void *pUserData)
 {
        if (pFunc == NULL) {
@@ -2091,6 +2295,9 @@ bool vp_media_contents_set_update_cb(MediaUpdateCb pFunc, void *pUserData)
        return TRUE;
 }
 
+/**
+ *
+ */
 void vp_media_contents_unset_update_cb()
 {
        g_media_update_cb = NULL;
@@ -2100,6 +2307,12 @@ void vp_media_contents_unset_update_cb()
        }
 }
 
+/**
+ *
+ * @param szFilePath
+ * @param bCloud
+ * @return
+ */
 bool vp_media_contents_get_cloud_attribute(const char *szFilePath,
                                                                                   bool * bCloud)
 {
@@ -2183,6 +2396,12 @@ bool vp_media_contents_get_cloud_attribute(const char *szFilePath,
        return FALSE;
 }
 
+/**
+ *
+ * @param szFilePath
+ * @param pLocation
+ * @return
+ */
 bool vp_media_contents_set_location_tag(const char *szFilePath,
                                                                                const char *pLocation)
 {
@@ -2277,6 +2496,12 @@ bool vp_media_contents_set_location_tag(const char *szFilePath,
        return FALSE;
 }
 
+/**
+ *
+ * @param szFilePath
+ * @param szLocationTag
+ * @return
+ */
 bool vp_media_contents_get_location_tag(const char *szFilePath,
                                                                                char **szLocationTag)
 {
@@ -2372,6 +2597,12 @@ bool vp_media_contents_get_location_tag(const char *szFilePath,
        return FALSE;
 }
 
+/**
+ *
+ * @param szFilePath
+ * @param pWeather
+ * @return
+ */
 bool vp_media_contents_set_weahter_tag(const char *szFilePath,
                                                                           const char *pWeather)
 {
@@ -2466,6 +2697,12 @@ bool vp_media_contents_set_weahter_tag(const char *szFilePath,
        return FALSE;
 }
 
+/**
+ *
+ * @param szFilePath
+ * @param szWeatherTag
+ * @return
+ */
 bool vp_media_contents_get_weahter_tag(const char *szFilePath,
                                                                           char **szWeatherTag)
 {
@@ -2560,6 +2797,11 @@ bool vp_media_contents_get_weahter_tag(const char *szFilePath,
        return FALSE;
 }
 
+/**
+ *
+ * @param pList
+ * @return
+ */
 bool vp_media_contents_subtitle_list_get(GList ** pList)
 {
        char *szCondition = NULL;
@@ -2645,6 +2887,12 @@ bool vp_media_contents_subtitle_list_get(GList ** pList)
 }
 
 /* callback functions */
+/**
+ *
+ * @param pMediaHandle
+ * @param pUserData
+ * @return
+ */
 static bool __vp_media_contents_file_is_exist_cb(media_info_h
                                                                                                 pMediaHandle,
                                                                                                 void *pUserData)
@@ -2662,6 +2910,11 @@ static bool __vp_media_contents_file_is_exist_cb(media_info_h
        return TRUE;
 }
 
+/**
+ *
+ * @param szFilePath
+ * @return
+ */
 bool vp_media_contents_file_is_exist(const char *szFilePath)
 {
        if (szFilePath == NULL) {
@@ -2719,6 +2972,11 @@ bool vp_media_contents_file_is_exist(const char *szFilePath)
        return bExist;
 }
 
+/**
+ *
+ * @param szFilePath
+ * @return
+ */
 bool vp_media_contents_del_video(const char *szFilePath)
 {
 
index 70924f3..b51bcc2 100644 (file)
@@ -28,10 +28,20 @@ typedef struct _MediaKey {
 
 } MediaKey;
 
+/**
+ *
+ * @param pMediaKey
+ */
 static void _vp_media_key_destroy_handle(MediaKey * pMediaKey);
 
 
 /* callback functions */
+/**
+ *
+ * @param nKey
+ * @param nEvent
+ * @param pUserData
+ */
 static void __vp_media_key_event_cb(media_key_e nKey,
                                                                        media_key_event_e nEvent,
                                                                        void *pUserData)
@@ -100,6 +110,10 @@ static void __vp_media_key_event_cb(media_key_e nKey,
 }
 
 /* internal functions */
+/**
+ *
+ * @param pMediaKey
+ */
 static void _vp_media_key_destroy_handle(MediaKey * pMediaKey)
 {
        if (pMediaKey == NULL) {
@@ -113,6 +127,12 @@ static void _vp_media_key_destroy_handle(MediaKey * pMediaKey)
 
 
 /* external functions */
+/**
+ *
+ * @param pWin
+ * @param pEventCb
+ * @return
+ */
 media_key_handle vp_media_key_create(Evas_Object * pWin,
                                                                         MediaKeyEventCbFunc pEventCb)
 {
@@ -135,7 +155,10 @@ media_key_handle vp_media_key_create(Evas_Object * pWin,
        return (media_key_handle) pMediaKey;
 }
 
-
+/**
+ *
+ * @param pMediaKeyHandle
+ */
 void vp_media_key_destroy(media_key_handle pMediaKeyHandle)
 {
        if (pMediaKeyHandle == NULL) {
@@ -150,6 +173,11 @@ void vp_media_key_destroy(media_key_handle pMediaKeyHandle)
        _vp_media_key_destroy_handle(pMediaKey);
 }
 
+/**
+ *
+ * @param pMediaKeyHandle
+ * @return
+ */
 bool vp_media_key_realize(media_key_handle pMediaKeyHandle)
 {
        if (pMediaKeyHandle == NULL) {
@@ -167,6 +195,11 @@ bool vp_media_key_realize(media_key_handle pMediaKeyHandle)
        return TRUE;
 }
 
+/**
+ *
+ * @param pMediaKeyHandle
+ * @return
+ */
 bool vp_media_key_unrealize(media_key_handle pMediaKeyHandle)
 {
        if (pMediaKeyHandle == NULL) {
@@ -178,6 +211,12 @@ bool vp_media_key_unrealize(media_key_handle pMediaKeyHandle)
        return TRUE;
 }
 
+/**
+ *
+ * @param pMediaKeyHandle
+ * @param pUserData
+ * @return
+ */
 bool vp_media_key_set_user_data(media_key_handle pMediaKeyHandle,
                                                                void *pUserData)
 {
index 3279348..fa1a0d8 100644 (file)
 /* check temp */
 #include "vp-play-log.h"
 
+/**
+ *
+ * @param nErr
+ */
 static void _vp_mm_player_print_err(int nErr)
 {
        switch (nErr) {
@@ -75,7 +79,12 @@ static void _vp_mm_player_print_err(int nErr)
        }
 }
 
-
+/**
+ *
+ * @param nCode
+ * @param bAppToFW
+ * @return
+ */
 static int _vp_mm_player_priv_convert_video_sink(int nCode, bool bAppToFW)
 {
 
@@ -99,6 +108,12 @@ static int _vp_mm_player_priv_convert_video_sink(int nCode, bool bAppToFW)
 
 #ifdef _NATIVE_BUFFER_SYNC
 #else
+/**
+ *
+ * @param nCode
+ * @param bAppToFW
+ * @return
+ */
 static int _vp_mm_player_priv_convert_rotate(int nCode, bool bAppToFW)
 {
 
@@ -129,6 +144,12 @@ static int _vp_mm_player_priv_convert_rotate(int nCode, bool bAppToFW)
 }
 #endif
 
+/**
+ *
+ * @param nCode
+ * @param bAppToFW
+ * @return
+ */
 static int _vp_mm_player_priv_convert_error(int nCode, bool bAppToFW)
 {
 
@@ -207,6 +228,12 @@ static int _vp_mm_player_priv_convert_error(int nCode, bool bAppToFW)
        return 0;
 }
 
+/**
+ *
+ * @param nCode
+ * @param bAppToFW
+ * @return
+ */
 static int _vp_mm_player_priv_convert_interrupt(int nCode, bool bAppToFW)
 {
 
@@ -238,6 +265,12 @@ static int _vp_mm_player_priv_convert_interrupt(int nCode, bool bAppToFW)
        return 0;
 }
 
+/**
+ *
+ * @param nCode
+ * @param bAppToFW
+ * @return
+ */
 static int _vp_mm_player_priv_convert_player_state(int nCode,
                                                                                                   bool bAppToFW)
 {
@@ -272,7 +305,12 @@ static int _vp_mm_player_priv_convert_player_state(int nCode,
        return 0;
 }
 
-
+/**
+ *
+ * @param nCode
+ * @param bAppToFW
+ * @return
+ */
 static int _vp_mm_player_priv_convert_display_mode(int nCode,
                                                                                                   bool bAppToFW)
 {
@@ -306,9 +344,13 @@ static int _vp_mm_player_priv_convert_display_mode(int nCode,
        return 0;
 }
 
-
-
 /* callback functions */
+/**
+ *
+ * @param pUserData
+ * @param pBuff
+ * @param nByte
+ */
 static void __vp_mm_player_pipe_prepare_cb(void *pUserData, void *pBuff,
                                                                                   unsigned int nByte)
 {
@@ -328,6 +370,12 @@ static void __vp_mm_player_pipe_prepare_cb(void *pUserData, void *pBuff,
        return;
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pBuff
+ * @param nByte
+ */
 static void __vp_mm_player_pipe_end_of_stream_cb(void *pUserData,
                                                                                                 void *pBuff,
                                                                                                 unsigned int nByte)
@@ -347,6 +395,12 @@ static void __vp_mm_player_pipe_end_of_stream_cb(void *pUserData,
        return;
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pBuff
+ * @param nByte
+ */
 static void __vp_mm_player_pipe_seek_complete_cb(void *pUserData,
                                                                                                 void *pBuff,
                                                                                                 unsigned int nByte)
@@ -365,6 +419,12 @@ static void __vp_mm_player_pipe_seek_complete_cb(void *pUserData,
        return;
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pBuff
+ * @param nByte
+ */
 static void __vp_mm_player_pipe_interrupted_cb(void *pUserData,
                                                                                           void *pBuff,
                                                                                           unsigned int nByte)
@@ -391,6 +451,12 @@ static void __vp_mm_player_pipe_interrupted_cb(void *pUserData,
        return;
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pBuff
+ * @param nByte
+ */
 static void __vp_mm_player_pipe_error_cb(void *pUserData, void *pBuff,
                                                                                 unsigned int nByte)
 {
@@ -414,6 +480,12 @@ static void __vp_mm_player_pipe_error_cb(void *pUserData, void *pBuff,
        return;
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pBuff
+ * @param nByte
+ */
 static void __vp_mm_player_pipe_buffering_cb(void *pUserData, void *pBuff,
                                                                                         unsigned int nByte)
 {
@@ -434,6 +506,12 @@ static void __vp_mm_player_pipe_buffering_cb(void *pUserData, void *pBuff,
        return;
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pBuff
+ * @param nByte
+ */
 static void __vp_mm_player_pipe_subtitle_update_cb(void *pUserData,
                                                                                                   void *pBuff,
                                                                                                   unsigned int nByte)
@@ -468,6 +546,12 @@ static void __vp_mm_player_pipe_subtitle_update_cb(void *pUserData,
 
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pBuff
+ * @param nByte
+ */
 static void __vp_mm_player_pipe_pd_message_cb(void *pUserData,
                                                                                          void *pBuff,
                                                                                          unsigned int nByte)
@@ -491,6 +575,12 @@ static void __vp_mm_player_pipe_pd_message_cb(void *pUserData,
 
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pBuff
+ * @param nByte
+ */
 static void __vp_mm_player_pipe_captured_cb(void *pUserData, void *pBuff,
                                                                                        unsigned int nByte)
 {
@@ -521,6 +611,12 @@ static void __vp_mm_player_pipe_captured_cb(void *pUserData, void *pBuff,
        return;
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pBuff
+ * @param nByte
+ */
 static void __vp_mm_player_pipe_missed_plugin_cb(void *pUserData,
                                                                                                 void *pBuff,
                                                                                                 unsigned int nByte)
@@ -548,8 +644,12 @@ static void __vp_mm_player_pipe_missed_plugin_cb(void *pUserData,
        return;
 }
 
-
-
+/**
+ *
+ * @param pUserData
+ * @param pBuff
+ * @param nByte
+ */
 static void __vp_mm_player_pipe_image_buffer_cb(void *pUserData,
                                                                                                void *pBuff,
                                                                                                unsigned int nByte)
@@ -577,9 +677,11 @@ static void __vp_mm_player_pipe_image_buffer_cb(void *pUserData,
        return;
 }
 
-
-
 /* player api local cb functions */
+/**
+ *
+ * @param pUserData
+ */
 static void __vp_mm_player_prepare_cb(void *pUserData)
 {
        if (pUserData == NULL) {
@@ -603,6 +705,10 @@ static void __vp_mm_player_prepare_cb(void *pUserData)
        return;
 }
 
+/**
+ *
+ * @param pUserData
+ */
 static void __vp_mm_player_completed_cb(void *pUserData)
 {
        if (pUserData == NULL) {
@@ -626,6 +732,10 @@ static void __vp_mm_player_completed_cb(void *pUserData)
 
 }
 
+/**
+ *
+ * @param pUserData
+ */
 static void __vp_mm_player_seek_completed_cb(void *pUserData)
 {
        if (pUserData == NULL) {
@@ -648,6 +758,11 @@ static void __vp_mm_player_seek_completed_cb(void *pUserData)
 
 }
 
+/**
+ *
+ * @param nCode
+ * @param pUserData
+ */
 static void __vp_mm_player_interrupted_cb(player_interrupted_code_e nCode,
                                                                                  void *pUserData)
 {
@@ -677,6 +792,11 @@ static void __vp_mm_player_interrupted_cb(player_interrupted_code_e nCode,
 
 }
 
+/**
+ *
+ * @param nError
+ * @param pUserData
+ */
 static void __vp_mm_player_error_cb(int nError, void *pUserData)
 {
        if (pUserData == NULL) {
@@ -705,6 +825,11 @@ static void __vp_mm_player_error_cb(int nError, void *pUserData)
 
 }
 
+/**
+ *
+ * @param nPercent
+ * @param pUserData
+ */
 static void __vp_mm_player_buffering_cb(int nPercent, void *pUserData)
 {
        if (pUserData == NULL) {
@@ -733,6 +858,12 @@ static void __vp_mm_player_buffering_cb(int nPercent, void *pUserData)
 
 }
 
+/**
+ *
+ * @param nDuration
+ * @param text
+ * @param pUserData
+ */
 static void __vp_mm_player_subtitle_updated_cb(unsigned long nDuration,
                                                                                           char *text, void *pUserData)
 {
@@ -777,6 +908,14 @@ static void __vp_mm_player_subtitle_updated_cb(unsigned long nDuration,
 
 }
 
+/**
+ *
+ * @param pFrame
+ * @param nWidth
+ * @param nHeight
+ * @param nSize
+ * @param pUserData
+ */
 static void __vp_mm_player_video_captured_cb(unsigned char *pFrame,
                                                                                         int nWidth, int nHeight,
                                                                                         unsigned int nSize,
@@ -821,13 +960,12 @@ static void __vp_mm_player_video_captured_cb(unsigned char *pFrame,
        return;
 }
 
-
-
-
 /* internal functions */
-
-
-
+/**
+ *
+ * @param nType
+ * @param pParam
+ */
 static void _vp_mm_callback_param_free(vp_mm_player_callback_t nType,
                                                                           void *pParam)
 {
@@ -869,6 +1007,10 @@ static void _vp_mm_callback_param_free(vp_mm_player_callback_t nType,
        return;
 }
 
+/**
+ *
+ * @param pMMPlayer
+ */
 static void _vp_mm_ecore_pipe_create(MMPlayer * pMMPlayer)
 {
        if (pMMPlayer == NULL) {
@@ -962,6 +1104,10 @@ static void _vp_mm_ecore_pipe_create(MMPlayer * pMMPlayer)
        return;
 }
 
+/**
+ *
+ * @param pPipe
+ */
 static void _vp_mm_ecore_pipe_del(Ecore_Pipe * pPipe)
 {
        if (pPipe == NULL) {
@@ -975,6 +1121,10 @@ static void _vp_mm_ecore_pipe_del(Ecore_Pipe * pPipe)
        return;
 }
 
+/**
+ *
+ * @param pMMPlayer
+ */
 static void _vp_mm_register_default_callback(MMPlayer * pMMPlayer)
 {
        if (pMMPlayer == NULL) {
@@ -1036,6 +1186,10 @@ static void _vp_mm_register_default_callback(MMPlayer * pMMPlayer)
 
 }
 
+/**
+ *
+ * @param pMMPlayer
+ */
 static void _vp_mm_unregister_default_callback(MMPlayer * pMMPlayer)
 {
        if (pMMPlayer == NULL) {
@@ -1076,9 +1230,11 @@ static void _vp_mm_unregister_default_callback(MMPlayer * pMMPlayer)
        return;
 }
 
-
-
 /* external functions */
+/**
+ *
+ * @return
+ */
 mm_player_handle vp_mm_player_create()
 {
        MMPlayer *pMMPlayer = NULL;
@@ -1181,6 +1337,10 @@ mm_player_handle vp_mm_player_create()
        return (mm_player_handle) pMMPlayer;
 }
 
+/**
+ *
+ * @param pPlayerHandle
+ */
 void vp_mm_player_destroy(mm_player_handle pPlayerHandle)
 {
        if (pPlayerHandle == NULL) {
@@ -1284,6 +1444,12 @@ void vp_mm_player_destroy(mm_player_handle pPlayerHandle)
        pMMPlayer = NULL;
 }
 
+/**
+ *
+ * @param pPlayerHandle
+ * @param szPath
+ * @return
+ */
 bool vp_mm_player_realize(mm_player_handle pPlayerHandle, char *szPath)
 {
        if (pPlayerHandle == NULL) {
@@ -1326,6 +1492,12 @@ bool vp_mm_player_realize(mm_player_handle pPlayerHandle, char *szPath)
        return TRUE;
 }
 
+/**
+ *
+ * @param pPlayerHandle
+ * @param szPath
+ * @return
+ */
 bool vp_mm_player_realize_async(mm_player_handle pPlayerHandle,
                                                                char *szPath)
 {
@@ -1364,6 +1536,11 @@ bool vp_mm_player_realize_async(mm_player_handle pPlayerHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pPlayerHandle
+ * @return
+ */
 bool vp_mm_player_unrealize(mm_player_handle pPlayerHandle)
 {
        if (pPlayerHandle == NULL) {
@@ -1426,6 +1603,11 @@ bool vp_mm_player_unrealize(mm_player_handle pPlayerHandle)
        return TRUE;
 }
 
+/**
+ *
+ * @param pPlayerHandle
+ * @return
+ */
 bool vp_mm_player_is_realize(mm_player_handle pPlayerHandle)
 {
        if (pPlayerHandle == NULL) {
@@ -1439,6 +1621,13 @@ bool vp_mm_player_is_realize(mm_player_handle pPlayerHandle)
 
 }
 
+/**
+ *
+ * @param pPlayerHandle
+ * @param nCallbackType
+ * @param pCallback
+ * @return
+ */
 bool vp_mm_player_set_callback(mm_player_handle pPlayerHandle,
                                                           vp_mm_player_callback_t nCallbackType,
                                                           void *pCallback)
@@ -1503,6 +1692,12 @@ bool vp_mm_player_set_callback(mm_player_handle pPlayerHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pPlayerHandle
+ * @param pParam
+ * @return
+ */
 bool vp_mm_player_set_user_param(mm_player_handle pPlayerHandle,
                                                                 void *pParam)
 {
@@ -1523,6 +1718,12 @@ bool vp_mm_player_set_user_param(mm_player_handle pPlayerHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pPlayerHandle
+ * @param stream_info
+ * @return
+ */
 bool vp_mm_player_set_stream_info(mm_player_handle pPlayerHandle,
                                                                  void *stream_info)
 {
@@ -1543,6 +1744,11 @@ bool vp_mm_player_set_stream_info(mm_player_handle pPlayerHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pPlayerHandle
+ * @return
+ */
 bool vp_mm_player_play(mm_player_handle pPlayerHandle)
 {
        if (pPlayerHandle == NULL) {
@@ -1601,6 +1807,11 @@ bool vp_mm_player_play(mm_player_handle pPlayerHandle)
 
 }
 
+/**
+ *
+ * @param pPlayerHandle
+ * @return
+ */
 bool vp_mm_player_stop(mm_player_handle pPlayerHandle)
 {
        if (pPlayerHandle == NULL) {
@@ -1653,6 +1864,11 @@ bool vp_mm_player_stop(mm_player_handle pPlayerHandle)
 
 }
 
+/**
+ *
+ * @param pPlayerHandle
+ * @return
+ */
 bool vp_mm_player_pause(mm_player_handle pPlayerHandle)
 {
        if (pPlayerHandle == NULL) {
@@ -1705,6 +1921,12 @@ bool vp_mm_player_pause(mm_player_handle pPlayerHandle)
 
 }
 
+/**
+ *
+ * @param pPlayerHandle
+ * @param nState
+ * @return
+ */
 bool vp_mm_player_get_state(mm_player_handle pPlayerHandle,
                                                        vp_mm_player_state_t * nState)
 {
@@ -1728,6 +1950,12 @@ bool vp_mm_player_get_state(mm_player_handle pPlayerHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pPlayerHandle
+ * @param nPosition
+ * @return
+ */
 bool vp_mm_player_get_position(mm_player_handle pPlayerHandle,
                                                           int *nPosition)
 {
@@ -1762,6 +1990,12 @@ bool vp_mm_player_get_position(mm_player_handle pPlayerHandle,
 
 }
 
+/**
+ *
+ * @param pPlayerHandle
+ * @param nPosition
+ * @return
+ */
 bool vp_mm_player_set_position(mm_player_handle pPlayerHandle,
                                                           int nPosition)
 {
@@ -1801,6 +2035,12 @@ bool vp_mm_player_set_position(mm_player_handle pPlayerHandle,
 
 }
 
+/**
+ *
+ * @param pPlayerHandle
+ * @param nPosition
+ * @return
+ */
 bool vp_mm_player_set_position_by_key_frame(mm_player_handle
                                                                                        pPlayerHandle, int nPosition)
 {
@@ -1837,7 +2077,12 @@ bool vp_mm_player_set_position_by_key_frame(mm_player_handle
        return TRUE;
 }
 
-
+/**
+ *
+ * @param pPlayerHandle
+ * @param nPosition
+ * @return
+ */
 bool vp_mm_player_get_buffering_position(mm_player_handle pPlayerHandle,
                                                                                 int *nPosition)
 {
@@ -1874,6 +2119,12 @@ bool vp_mm_player_get_buffering_position(mm_player_handle pPlayerHandle,
 
 }
 
+/**
+ *
+ * @param pPlayerHandle
+ * @param bScale
+ * @return
+ */
 bool vp_mm_player_set_scaling(mm_player_handle pPlayerHandle, bool bScale)
 {
        if (pPlayerHandle == NULL) {
@@ -1892,6 +2143,12 @@ bool vp_mm_player_set_scaling(mm_player_handle pPlayerHandle, bool bScale)
 
 }
 
+/**
+ *
+ * @param pPlayerHandle
+ * @param bLoop
+ * @return
+ */
 bool vp_mm_player_set_loop(mm_player_handle pPlayerHandle, bool bLoop)
 {
        if (pPlayerHandle == NULL) {
@@ -1917,6 +2174,12 @@ bool vp_mm_player_set_loop(mm_player_handle pPlayerHandle, bool bLoop)
        return TRUE;
 }
 
+/**
+ *
+ * @param pPlayerHandle
+ * @param bMute
+ * @return
+ */
 bool vp_mm_player_set_mute(mm_player_handle pPlayerHandle, bool bMute)
 {
        if (pPlayerHandle == NULL) {
@@ -1949,6 +2212,12 @@ bool vp_mm_player_set_mute(mm_player_handle pPlayerHandle, bool bMute)
 
 }
 
+/**
+ *
+ * @param pPlayerHandle
+ * @param bMute
+ * @return
+ */
 bool vp_mm_player_get_mute(mm_player_handle pPlayerHandle, bool * bMute)
 {
        if (pPlayerHandle == NULL) {
@@ -1981,6 +2250,12 @@ bool vp_mm_player_get_mute(mm_player_handle pPlayerHandle, bool * bMute)
        return TRUE;
 }
 
+/**
+ *
+ * @param pPlayerHandle
+ * @param nDuration
+ * @return
+ */
 bool vp_mm_player_get_duration(mm_player_handle pPlayerHandle,
                                                           int *nDuration)
 {
@@ -2015,6 +2290,13 @@ bool vp_mm_player_get_duration(mm_player_handle pPlayerHandle,
 
 }
 
+/**
+ *
+ * @param pPlayerHandle
+ * @param audio_codec
+ * @param video_codec
+ * @return
+ */
 bool vp_mm_player_get_codecinfo(mm_player_handle pPlayerHandle,
                                                                char **audio_codec, char **video_codec)
 {
@@ -2046,7 +2328,13 @@ bool vp_mm_player_get_codecinfo(mm_player_handle pPlayerHandle,
        return TRUE;
 }
 
-
+/**
+ *
+ * @param pPlayerHandle
+ * @param nType
+ * @param pSink
+ * @return
+ */
 bool vp_mm_player_set_video_sink(mm_player_handle pPlayerHandle,
                                                                 int nType, void *pSink)
 {
@@ -2076,6 +2364,12 @@ bool vp_mm_player_set_video_sink(mm_player_handle pPlayerHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pPlayerHandle
+ * @param nRotate
+ * @return
+ */
 bool vp_mm_player_set_video_rotate(mm_player_handle pPlayerHandle,
                                                                   int nRotate)
 {
@@ -2108,6 +2402,12 @@ bool vp_mm_player_set_video_rotate(mm_player_handle pPlayerHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pPlayerHandle
+ * @param nDisplayMode
+ * @return
+ */
 bool vp_mm_player_set_display_mode(mm_player_handle pPlayerHandle,
                                                                   vp_mm_player_display_mode_t
                                                                   nDisplayMode)
@@ -2137,6 +2437,13 @@ bool vp_mm_player_set_display_mode(mm_player_handle pPlayerHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pPlayerHandle
+ * @param nWidth
+ * @param nHeight
+ * @return
+ */
 bool vp_mm_player_get_resolution(mm_player_handle pPlayerHandle,
                                                                 int *nWidth, int *nHeight)
 {
@@ -2167,6 +2474,12 @@ bool vp_mm_player_get_resolution(mm_player_handle pPlayerHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pPlayerHandle
+ * @param szSubtitlePath
+ * @return
+ */
 bool vp_mm_player_set_subtitle_url(mm_player_handle pPlayerHandle,
                                                                   char *szSubtitlePath)
 {
@@ -2205,6 +2518,12 @@ bool vp_mm_player_set_subtitle_url(mm_player_handle pPlayerHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pPlayerHandle
+ * @param szSubtitlePath
+ * @return
+ */
 bool vp_mm_player_get_subtitle_url(mm_player_handle pPlayerHandle,
                                                                   char **szSubtitlePath)
 {
@@ -2225,6 +2544,14 @@ bool vp_mm_player_get_subtitle_url(mm_player_handle pPlayerHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pPlayerHandle
+ * @param szFamilyName
+ * @param szStyle
+ * @param nSize
+ * @return
+ */
 bool vp_mm_player_set_subtitle_font(mm_player_handle pPlayerHandle,
                                                                        char *szFamilyName, char *szStyle,
                                                                        int nSize)
@@ -2249,6 +2576,13 @@ bool vp_mm_player_set_subtitle_font(mm_player_handle pPlayerHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pPlayerHandle
+ * @param nForegroundColor
+ * @param nBGColor
+ * @return
+ */
 bool vp_mm_player_set_subtitle_font_color(mm_player_handle pPlayerHandle,
                                                                                  unsigned int nForegroundColor,
                                                                                  unsigned int nBGColor)
@@ -2269,6 +2603,12 @@ bool vp_mm_player_set_subtitle_font_color(mm_player_handle pPlayerHandle,
 
 }
 
+/**
+ *
+ * @param pPlayerHandle
+ * @param bIgnoreMarkup
+ * @return
+ */
 bool vp_mm_player_subtitle_ignore_markup_tags(mm_player_handle
                                                                                          pPlayerHandle,
                                                                                          bool bIgnoreMarkup)
@@ -2288,6 +2628,12 @@ bool vp_mm_player_subtitle_ignore_markup_tags(mm_player_handle
 
 }
 
+/**
+ *
+ * @param pPlayerHandle
+ * @param type
+ * @return
+ */
 bool vp_mm_player_subtitle_set_alignment_in_line(mm_player_handle
                                                                                                 pPlayerHandle,
                                                                                                 vp_mm_player_subtitle_halign_t
@@ -2308,6 +2654,12 @@ bool vp_mm_player_subtitle_set_alignment_in_line(mm_player_handle
 
 }
 
+/**
+ *
+ * @param pPlayerHandle
+ * @param type
+ * @return
+ */
 bool vp_mm_player_subtitle_set_alignment_horizontal(mm_player_handle
                                                                                                        pPlayerHandle,
                                                                                                        vp_mm_player_subtitle_halign_t
@@ -2328,6 +2680,11 @@ bool vp_mm_player_subtitle_set_alignment_horizontal(mm_player_handle
 
 }
 
+/**
+ *
+ * @param pPlayerHandle
+ * @return
+ */
 bool vp_mm_player_subtitle_apply_alignment_right_away(mm_player_handle
                                                                                                          pPlayerHandle)
 {
@@ -2346,6 +2703,12 @@ bool vp_mm_player_subtitle_apply_alignment_right_away(mm_player_handle
 
 }
 
+/**
+ *
+ * @param pPlayerHandle
+ * @param nPosition
+ * @return
+ */
 bool vp_mm_player_set_subtitle_position(mm_player_handle pPlayerHandle,
                                                                                int nPosition)
 {
@@ -2378,6 +2741,12 @@ bool vp_mm_player_set_subtitle_position(mm_player_handle pPlayerHandle,
 
 }
 
+/**
+ *
+ * @param pPlayerHandle
+ * @param bDeactivate
+ * @return
+ */
 bool vp_mm_player_set_deactivate_subtitle(mm_player_handle pPlayerHandle,
                                                                                  bool bDeactivate)
 {
@@ -2393,8 +2762,13 @@ bool vp_mm_player_set_deactivate_subtitle(mm_player_handle pPlayerHandle,
        return TRUE;
 }
 
-
-
+/**
+ *
+ * @param pPlayerHandle
+ * @param fLeft
+ * @param fRight
+ * @return
+ */
 bool vp_mm_player_set_volume(mm_player_handle pPlayerHandle, float fLeft,
                                                         float fRight)
 {
@@ -2425,6 +2799,13 @@ bool vp_mm_player_set_volume(mm_player_handle pPlayerHandle, float fLeft,
        return TRUE;
 }
 
+/**
+ *
+ * @param pPlayerHandle
+ * @param fLeft
+ * @param fRight
+ * @return
+ */
 bool vp_mm_player_get_volume(mm_player_handle pPlayerHandle, float *fLeft,
                                                         float *fRight)
 {
@@ -2462,6 +2843,12 @@ bool vp_mm_player_get_volume(mm_player_handle pPlayerHandle, float *fLeft,
        return TRUE;
 }
 
+/**
+ *
+ * @param pPlayerHandle
+ * @param nFilter
+ * @return
+ */
 bool vp_mm_player_set_sound_filter(mm_player_handle pPlayerHandle,
                                                                   vp_mm_player_sound_filter_t nFilter)
 {
@@ -2473,6 +2860,12 @@ bool vp_mm_player_set_sound_filter(mm_player_handle pPlayerHandle,
        return FALSE;
 }
 
+/**
+ *
+ * @param pPlayerHandle
+ * @param nFilter
+ * @return
+ */
 bool vp_mm_player_get_sound_filter(mm_player_handle pPlayerHandle,
                                                                   vp_mm_player_sound_filter_t * nFilter)
 {
@@ -2488,7 +2881,11 @@ bool vp_mm_player_get_sound_filter(mm_player_handle pPlayerHandle,
        return TRUE;
 }
 
-
+/**
+ *
+ * @param pPlayerHandle
+ * @return
+ */
 bool vp_mm_player_capture_start(mm_player_handle pPlayerHandle)
 {
        if (pPlayerHandle == NULL) {
@@ -2521,6 +2918,11 @@ bool vp_mm_player_capture_start(mm_player_handle pPlayerHandle)
        return TRUE;
 }
 
+/**
+ *
+ * @param pPlayerHandle
+ * @return
+ */
 bool vp_mm_player_is_closed_caption_exist(mm_player_handle pPlayerHandle)
 {
        if (pPlayerHandle == NULL) {
@@ -2544,6 +2946,12 @@ bool vp_mm_player_is_closed_caption_exist(mm_player_handle pPlayerHandle)
        return FALSE;
 }
 
+/**
+ *
+ * @param pPlayerHandle
+ * @param nCount
+ * @return
+ */
 bool vp_mm_player_get_audio_track_count(mm_player_handle pPlayerHandle,
                                                                                int *nCount)
 {
@@ -2559,7 +2967,13 @@ bool vp_mm_player_get_audio_track_count(mm_player_handle pPlayerHandle,
        return TRUE;
 }
 
-
+/**
+ *
+ * @param pPlayerHandle
+ * @param nIndex
+ * @param szCode
+ * @return
+ */
 bool vp_mm_player_get_audio_track_language_code(mm_player_handle
                                                                                                pPlayerHandle, int nIndex,
                                                                                                char **szCode)
@@ -2572,7 +2986,12 @@ bool vp_mm_player_get_audio_track_language_code(mm_player_handle
        return TRUE;
 }
 
-
+/**
+ *
+ * @param pPlayerHandle
+ * @param nIndex
+ * @return
+ */
 bool vp_mm_player_set_audio_track(mm_player_handle pPlayerHandle,
                                                                  int nIndex)
 {
@@ -2584,6 +3003,12 @@ bool vp_mm_player_set_audio_track(mm_player_handle pPlayerHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pPlayerHandle
+ * @param nCount
+ * @return
+ */
 bool vp_mm_player_get_subtitle_track_count(mm_player_handle pPlayerHandle,
                                                                                   int *nCount)
 {
@@ -2597,7 +3022,13 @@ bool vp_mm_player_get_subtitle_track_count(mm_player_handle pPlayerHandle,
        return TRUE;
 }
 
-
+/**
+ *
+ * @param pPlayerHandle
+ * @param nIndex
+ * @param szCode
+ * @return
+ */
 bool vp_mm_player_get_subtitle_track_language_code(mm_player_handle
                                                                                                   pPlayerHandle,
                                                                                                   int nIndex,
@@ -2611,7 +3042,12 @@ bool vp_mm_player_get_subtitle_track_language_code(mm_player_handle
        return TRUE;
 }
 
-
+/**
+ *
+ * @param pPlayerHandle
+ * @param nIndex
+ * @return
+ */
 bool vp_mm_player_set_subtitle_track(mm_player_handle pPlayerHandle,
                                                                         int nIndex)
 {
@@ -2659,6 +3095,13 @@ vp_mm_player_track_foreach_selected_subtitle_language(mm_player_handle
        return TRUE;
 }
 #endif
+
+/**
+ *
+ * @param pPlayerHandle
+ * @param szCookie
+ * @return
+ */
 bool vp_mm_player_set_cookie(mm_player_handle pPlayerHandle,
                                                         const char *szCookie)
 {
@@ -2686,7 +3129,12 @@ bool vp_mm_player_set_cookie(mm_player_handle pPlayerHandle,
        return TRUE;
 }
 
-
+/**
+ *
+ * @param pPlayerHandle
+ * @param szProxy
+ * @return
+ */
 bool vp_mm_player_set_proxy(mm_player_handle pPlayerHandle,
                                                        const char *szProxy)
 {
@@ -2703,7 +3151,11 @@ bool vp_mm_player_set_proxy(mm_player_handle pPlayerHandle,
        return TRUE;
 }
 
-
+/**
+ *
+ * @param bEnable
+ * @return
+ */
 bool vp_mm_player_set_hw_decoder(bool bEnable)
 {
        if (bEnable) {
@@ -2715,7 +3167,12 @@ bool vp_mm_player_set_hw_decoder(bool bEnable)
        return TRUE;
 }
 
-
+/**
+ *
+ * @param pPlayerHandle
+ * @param fRate
+ * @return
+ */
 bool vp_mm_player_set_rate(mm_player_handle pPlayerHandle, float fRate)
 {
        if (pPlayerHandle == NULL) {
@@ -2742,6 +3199,14 @@ bool vp_mm_player_set_rate(mm_player_handle pPlayerHandle, float fRate)
        return TRUE;
 }
 
+/**
+ *
+ * @param pPlayerHandle
+ * @param fZoom
+ * @param nPosX
+ * @param nPosY
+ * @return
+ */
 bool vp_mm_player_set_zoom(mm_player_handle pPlayerHandle, float fZoom,
                                                   int nPosX, int nPosY)
 {
@@ -2752,6 +3217,13 @@ bool vp_mm_player_set_zoom(mm_player_handle pPlayerHandle, float fZoom,
        return FALSE;
 }
 
+/**
+ *
+ * @param pPlayerHandle
+ * @param nPosX
+ * @param nPosY
+ * @return
+ */
 bool vp_mm_player_get_zoom_start_position(mm_player_handle pPlayerHandle,
                                                                                  int *nPosX, int *nPosY)
 {
@@ -2767,7 +3239,12 @@ bool vp_mm_player_get_zoom_start_position(mm_player_handle pPlayerHandle,
        return TRUE;
 }
 
-
+/**
+ *
+ * @param pPlayerHandle
+ * @param bVisible
+ * @return
+ */
 bool vp_mm_player_set_visible(mm_player_handle pPlayerHandle,
                                                          bool bVisible)
 {
@@ -2789,8 +3266,12 @@ bool vp_mm_player_set_visible(mm_player_handle pPlayerHandle,
 
 }
 
-
-
+/**
+ *
+ * @param pPlayerHandle
+ * @param bDownload
+ * @return
+ */
 bool vp_mm_player_set_hub_download_mode(mm_player_handle pPlayerHandle,
                                                                                bool bDownload)
 {
index 8397866..eb6ea90 100644 (file)
@@ -36,9 +36,13 @@ typedef struct _MultiPath {
        bool bIsSameAP;
 } MultiPath;
 
-
-
 /* internal functions */
+/**
+ *
+ * @param szURL
+ * @param nPosition
+ * @return
+ */
 static bool _vp_multi_path_write_multi_path_set_position(char *szURL,
                                                                                                                 int nPosition)
 {
@@ -65,9 +69,18 @@ static bool _vp_multi_path_write_multi_path_set_position(char *szURL,
        return TRUE;
 }
 
-
-
 /* external functions */
+/**
+ *
+ * @param pList
+ * @param szURL
+ * @param szTitle
+ * @param szSubTitle
+ * @param nPosition
+ * @param nDuration
+ * @param bIsSameAP
+ * @return
+ */
 bool vp_multi_path_add_item(GList ** pList,
                                                        const char *szURL,
                                                        char *szTitle,
@@ -114,6 +127,11 @@ bool vp_multi_path_add_item(GList ** pList,
        return TRUE;
 }
 
+/**
+ *
+ * @param pList
+ * @return
+ */
 bool vp_multi_path_clear_item(GList * pList)
 {
        if (!pList) {
@@ -140,6 +158,13 @@ bool vp_multi_path_clear_item(GList * pList)
        return TRUE;
 }
 
+/**
+ *
+ * @param szMediaURL
+ * @param szSubtitleURL
+ * @param pList
+ * @return
+ */
 bool vp_multi_path_set_item_subtitle(const char *szMediaURL,
                                                                         char *szSubtitleURL, GList * pList)
 {
@@ -175,6 +200,13 @@ bool vp_multi_path_set_item_subtitle(const char *szMediaURL,
        return TRUE;
 }
 
+/**
+ *
+ * @param szMediaURL
+ * @param nPosition
+ * @param pList
+ * @return
+ */
 bool vp_multi_path_set_item_position(const char *szMediaURL,
                                                                         int nPosition, GList * pList)
 {
@@ -212,6 +244,18 @@ bool vp_multi_path_set_item_position(const char *szMediaURL,
        return TRUE;
 }
 
+/**
+ *
+ * @param szMediaURL
+ * @param szURL
+ * @param szTitle
+ * @param szSubtitle
+ * @param nPosition
+ * @param nDuration
+ * @param bIsSameAP
+ * @param pList
+ * @return
+ */
 bool vp_multi_path_get_current_item(const char *szMediaURL, char **szURL,
                                                                        char **szTitle, char **szSubtitle,
                                                                        int *nPosition, int *nDuration,
@@ -257,7 +301,17 @@ bool vp_multi_path_get_current_item(const char *szMediaURL, char **szURL,
        return FALSE;
 }
 
-
+/**
+ *
+ * @param szMediaURL
+ * @param szURL
+ * @param szSubtitle
+ * @param nPosition
+ * @param nDuration
+ * @param bLoop
+ * @param pList
+ * @return
+ */
 bool vp_multi_path_get_next_item(const char *szMediaURL, char **szURL,
                                                                 char **szSubtitle, int *nPosition,
                                                                 int *nDuration, bool bLoop, GList * pList)
@@ -319,6 +373,17 @@ bool vp_multi_path_get_next_item(const char *szMediaURL, char **szURL,
        return TRUE;
 }
 
+/**
+ *
+ * @param szMediaURL
+ * @param szURL
+ * @param szSubtitle
+ * @param nPosition
+ * @param nDuration
+ * @param bLoop
+ * @param pList
+ * @return
+ */
 bool vp_multi_path_get_prev_item(const char *szMediaURL, char **szURL,
                                                                 char **szSubtitle, int *nPosition,
                                                                 int *nDuration, bool bLoop, GList * pList)
index d4d778f..3f7a87a 100644 (file)
@@ -37,10 +37,15 @@ typedef struct _SensorHandle {
 
 } SensorHandle;
 
-static void _vp_sensor_destroy_handle(SensorHandle * pSensorHandle);
 
+static void _vp_sensor_destroy_handle(SensorHandle * pSensorHandle);
 
 /* callback functions */
+/**
+ *
+ * @param timestamp
+ * @param pUserData
+ */
 static void __vp_sensor_motion_doubletap_event_cb(unsigned long long
                                                                                                  timestamp,
                                                                                                  void *pUserData)
@@ -58,6 +63,11 @@ static void __vp_sensor_motion_doubletap_event_cb(unsigned long long
 
 }
 
+/**
+ *
+ * @param timestamp
+ * @param pUserData
+ */
 static void __vp_sensor_motion_facedown_event_cb(unsigned long long
                                                                                                 timestamp,
                                                                                                 void *pUserData)
@@ -75,10 +85,11 @@ static void __vp_sensor_motion_facedown_event_cb(unsigned long long
        }
 }
 
-
-
-
 /* internal functions */
+/**
+ *
+ * @param pSensorHandle
+ */
 static void _vp_sensor_destroy_handle(SensorHandle * pSensorHandle)
 {
        if (pSensorHandle == NULL) {
@@ -95,9 +106,12 @@ static void _vp_sensor_destroy_handle(SensorHandle * pSensorHandle)
        VP_FREE(pSensorHandle);
 }
 
-
-
 /* external functions */
+/**
+ *
+ * @param pEventCb
+ * @return
+ */
 sensor_handle vp_sensor_create(SensorEventCbFunc pEventCb)
 {
        SensorHandle *pSensor = NULL;
@@ -130,6 +144,10 @@ sensor_handle vp_sensor_create(SensorEventCbFunc pEventCb)
        return (sensor_handle) pSensor;
 }
 
+/**
+ *
+ * @param pSensorHandle
+ */
 void vp_sensor_destroy(sensor_handle pSensorHandle)
 {
        if (pSensorHandle == NULL) {
@@ -144,6 +162,11 @@ void vp_sensor_destroy(sensor_handle pSensorHandle)
        _vp_sensor_destroy_handle(pSensor);
 }
 
+/**
+ *
+ * @param pSensorHandle
+ * @return
+ */
 bool vp_sensor_realize(sensor_handle pSensorHandle)
 {
        if (pSensorHandle == NULL) {
@@ -218,6 +241,11 @@ bool vp_sensor_realize(sensor_handle pSensorHandle)
        return bReturn;
 }
 
+/**
+ *
+ * @param pSensorHandle
+ * @return
+ */
 bool vp_sensor_unrealize(sensor_handle pSensorHandle)
 {
        if (pSensorHandle == NULL) {
@@ -274,6 +302,12 @@ bool vp_sensor_unrealize(sensor_handle pSensorHandle)
        return bReturn;
 }
 
+/**
+ *
+ * @param pSensorHandle
+ * @param pUserData
+ * @return
+ */
 bool vp_sensor_set_user_data(sensor_handle pSensorHandle, void *pUserData)
 {
        if (pSensorHandle == NULL) {
index ea05879..40e5444 100644 (file)
 
 /* external functions */
 
+/**
+ *
+ * @param stream_info
+ * @param focus_mask
+ * @param focus_state
+ * @param reason_for_change
+ * @param sound_behaviors
+ * @param extra_info
+ * @param user_data
+ */
 void vp_player_focus_callback(sound_stream_info_h stream_info,
                                                          sound_stream_focus_mask_e focus_mask,
                                                          sound_stream_focus_state_e focus_state,
@@ -80,6 +90,11 @@ void vp_player_focus_callback(sound_stream_info_h stream_info,
        }
 }
 
+/**
+ *
+ * @param pViewHandle
+ * @return
+ */
 bool vp_sound_init_session(play_view_handle pViewHandle)
 {
        VideoLogInfo(">> Sound Session : Init");
@@ -108,6 +123,11 @@ bool vp_sound_init_session(play_view_handle pViewHandle)
        return TRUE;
 }
 
+/**
+ *
+ * @param pViewHandle
+ * @return
+ */
 bool vp_sound_deinit_session(play_view_handle pViewHandle)
 {
        int nRet = SOUND_MANAGER_ERROR_NONE;
@@ -132,6 +152,11 @@ bool vp_sound_deinit_session(play_view_handle pViewHandle)
        return TRUE;
 }
 
+/**
+ *
+ * @param nValue
+ * @return
+ */
 bool vp_sound_get_volume(int *nValue)
 {
        int nRet = SOUND_MANAGER_ERROR_NONE;
@@ -147,6 +172,11 @@ bool vp_sound_get_volume(int *nValue)
        return TRUE;
 }
 
+/**
+ *
+ * @param nValue
+ * @return
+ */
 bool vp_sound_set_volume(int nValue)
 {
        int nRet = SOUND_MANAGER_ERROR_NONE;
@@ -159,6 +189,11 @@ bool vp_sound_set_volume(int nValue)
        return TRUE;
 }
 
+/**
+ *
+ * @param nMaxValue
+ * @return
+ */
 bool vp_sound_get_max_volume(int *nMaxValue)
 {
        int nRet = SOUND_MANAGER_ERROR_NONE;
@@ -174,6 +209,11 @@ bool vp_sound_get_max_volume(int *nMaxValue)
        return TRUE;
 }
 
+/**
+ *
+ * @param nDeviceType
+ * @return
+ */
 bool vp_sound_get_active_device(video_sound_device_type_t * nDeviceType)
 {
        sound_device_h device;
@@ -225,7 +265,11 @@ bool vp_sound_get_active_device(video_sound_device_type_t * nDeviceType)
        return TRUE;
 }
 
-
+/**
+ *
+ * @param bIsSoundPath
+ * @return
+ */
 bool vp_sound_is_sound_path_enable(bool * bIsSoundPath)
 {
        bool bConnected = FALSE;
@@ -260,6 +304,13 @@ bool vp_sound_is_sound_path_enable(bool * bIsSoundPath)
        return bConnected;
 }
 
+/**
+ *
+ * @param device
+ * @param is_connected
+ * @param user_data
+ * @return
+ */
 sound_device_connected_cb vp_audio_jack_connected_cb(sound_device_h
                                                                                                         device,
                                                                                                         bool is_connected,
@@ -283,6 +334,12 @@ sound_device_connected_cb vp_audio_jack_connected_cb(sound_device_h
        return NULL;
 }
 
+/**
+ *
+ * @param nDeviceType
+ * @param pUserdata
+ * @return
+ */
 bool vp_sound_device_is_enable(video_sound_device_type_t nDeviceType,
                                                           void *pUserdata)
 {
@@ -321,6 +378,11 @@ bool vp_sound_device_is_enable(video_sound_device_type_t nDeviceType,
 
 }
 
+/**
+ *
+ * @param szBTName
+ * @return
+ */
 bool vp_sound_get_a2dp_name(char **szBTName)
 {
 
@@ -334,6 +396,11 @@ bool vp_sound_get_a2dp_name(char **szBTName)
        return FALSE;
 }
 
+/**
+ *
+ * @param nDeviceType
+ * @return
+ */
 bool vp_sound_set_active_route(video_sound_device_type_t nDeviceType)
 {
 
@@ -345,6 +412,12 @@ bool vp_sound_set_active_route(video_sound_device_type_t nDeviceType)
        return TRUE;
 }
 
+/**
+ *
+ * @param func
+ * @param pUserData
+ * @return
+ */
 bool vp_sound_set_route_change_cb(vp_sound_route_change_cb func,
                                                                  void *pUserData)
 {
@@ -363,6 +436,12 @@ bool vp_sound_set_route_change_cb(vp_sound_route_change_cb func,
        return TRUE;
 }
 
+/**
+ *
+ * @param func
+ * @param pUserData
+ * @return
+ */
 bool vp_sound_set_volume_change_cb(vp_sound_volume_change_cb func,
                                                                   void *pUserData)
 {
index 6f8f2f7..296e795 100644 (file)
@@ -116,6 +116,13 @@ static void __vp_audio_track_genlist_item_selected_cb(void *pUserData,
 
 
 /* callback functions */
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pPart
+ * @return
+ */
 static char *__vp_audio_track_genlist_text_get_cb(const void *pUserData,
                                                                                                  Evas_Object * pObj,
                                                                                                  const char *pPart)
@@ -135,6 +142,13 @@ static char *__vp_audio_track_genlist_text_get_cb(const void *pUserData,
        return NULL;
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pPart
+ * @return
+ */
 static Evas_Object *__vp_audio_track_genlist_content_get_cb(const void
                                                                                                                        *pUserData,
                                                                                                                        Evas_Object *
@@ -181,6 +195,12 @@ static Evas_Object *__vp_audio_track_genlist_content_get_cb(const void
        return NULL;
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObject
+ * @param pEventInfo
+ */
 static void __vp_audio_track_genlist_item_selected_cb(void *pUserData,
                                                                                                          Evas_Object *
                                                                                                          pObject,
@@ -218,6 +238,12 @@ static void __vp_audio_track_genlist_item_selected_cb(void *pUserData,
        }
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pEventInfo
+ */
 static void __vp_audio_track_popup_key_event_cb(void *pUserData,
                                                                                                Evas_Object * pObj,
                                                                                                void *pEventInfo)
@@ -234,6 +260,13 @@ static void __vp_audio_track_popup_key_event_cb(void *pUserData,
        }
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pEvas
+ * @param pObj
+ * @param pEventInfo
+ */
 static void __vp_audio_track_popup_mouse_event_cb(void *pUserData,
                                                                                                  Evas * pEvas,
                                                                                                  Evas_Object * pObj,
@@ -261,9 +294,11 @@ static void __vp_audio_track_popup_mouse_event_cb(void *pUserData,
        }
 }
 
-
-
 /* internal functions */
+/**
+ *
+ * @param pAudioTrack
+ */
 static void _vp_audio_track_clear_item_list(AudioTrackPopup * pAudioTrack)
 {
        if (pAudioTrack == NULL) {
@@ -296,6 +331,10 @@ static void _vp_audio_track_clear_item_list(AudioTrackPopup * pAudioTrack)
        pAudioTrack->pItemList = NULL;
 }
 
+/**
+ *
+ * @param pAudioTrack
+ */
 static void _vp_audio_track_destroy_handle(AudioTrackPopup * pAudioTrack)
 {
        if (pAudioTrack == NULL) {
@@ -328,6 +367,11 @@ static void _vp_audio_track_destroy_handle(AudioTrackPopup * pAudioTrack)
        VP_FREE(pAudioTrack);
 }
 
+/**
+ *
+ * @param pParent
+ * @return
+ */
 static Evas_Object *_vp_audio_track_create_genlist(Evas_Object * pParent)
 {
        if (pParent == NULL) {
@@ -345,7 +389,12 @@ static Evas_Object *_vp_audio_track_create_genlist(Evas_Object * pParent)
        return pObj;
 }
 
-
+/**
+ *
+ * @param pObj
+ * @param pUserData
+ * @return
+ */
 static bool _vp_audio_track_add_genlist_item(Evas_Object * pObj,
                                                                                         void *pUserData)
 {
@@ -403,6 +452,12 @@ static bool _vp_audio_track_add_genlist_item(Evas_Object * pObj,
        return TRUE;
 }
 
+/**
+ *
+ * @param data
+ * @param obj
+ * @param event_info
+ */
 static void __vp_audio_track_genlist_realized(void *data,
                                                                                          Evas_Object * obj,
                                                                                          void *event_info)
@@ -410,6 +465,12 @@ static void __vp_audio_track_genlist_realized(void *data,
        VP_GENLIST_HIDE_BOTTOMLINE(data, obj, event_info);
 }
 
+/**
+ *
+ * @param data
+ * @param obj
+ * @param event_info
+ */
 static void __vp_audio_track_popup_rotate_cb(void *data,
                                                                                         Evas_Object * obj,
                                                                                         void *event_info)
@@ -429,6 +490,13 @@ static void __vp_audio_track_popup_rotate_cb(void *data,
 }
 
 /* external functions */
+/**
+ *
+ * @param pParent
+ * @param pCloseCb
+ * @param nDefaultIndex
+ * @return
+ */
 audio_track_handle vp_audio_track_create(Evas_Object * pParent,
                                                                                 PopupCloseCbFunc pCloseCb,
                                                                                 int nDefaultIndex)
@@ -489,6 +557,10 @@ audio_track_handle vp_audio_track_create(Evas_Object * pParent,
        return pAudioTrack;
 }
 
+/**
+ *
+ * @param pAudioTrackHandle
+ */
 void vp_audio_track_destroy(audio_track_handle pAudioTrackHandle)
 {
        if (pAudioTrackHandle == NULL) {
@@ -502,6 +574,11 @@ void vp_audio_track_destroy(audio_track_handle pAudioTrackHandle)
 
 }
 
+/**
+ *
+ * @param pAudioTrackHandle
+ * @return
+ */
 bool vp_audio_track_realize(audio_track_handle pAudioTrackHandle)
 {
        if (pAudioTrackHandle == NULL) {
@@ -544,6 +621,11 @@ bool vp_audio_track_realize(audio_track_handle pAudioTrackHandle)
        return TRUE;
 }
 
+/**
+ *
+ * @param pAudioTrackHandle
+ * @return
+ */
 bool vp_audio_track_unrealize(audio_track_handle pAudioTrackHandle)
 {
        if (pAudioTrackHandle == NULL) {
@@ -560,6 +642,13 @@ bool vp_audio_track_unrealize(audio_track_handle pAudioTrackHandle)
        return TRUE;
 }
 
+/**
+ *
+ * @param pAudioTrackHandle
+ * @param szCode
+ * @param nIndex
+ * @return
+ */
 bool vp_audio_track_add_Item(audio_track_handle pAudioTrackHandle,
                                                         char *szCode, int nIndex)
 {
@@ -608,6 +697,12 @@ bool vp_audio_track_add_Item(audio_track_handle pAudioTrackHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pAudioTrackHandle
+ * @param pUserData
+ * @return
+ */
 bool vp_audio_track_set_user_data(audio_track_handle pAudioTrackHandle,
                                                                  void *pUserData)
 {
@@ -623,6 +718,12 @@ bool vp_audio_track_set_user_data(audio_track_handle pAudioTrackHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param szCode
+ * @param szName
+ * @return
+ */
 bool vp_audio_track_get_name(char *szCode, char **szName)
 {
        if (szCode == NULL) {
index 895771e..36c7a8d 100644 (file)
@@ -52,6 +52,12 @@ static void __vp_capture_genlist_realized(void *data, Evas_Object * obj,
        VP_GENLIST_HIDE_BOTTOMLINE(data, obj, event_info);
 }
 
+/**
+ *
+ * @param data
+ * @param obj
+ * @param event_info
+ */
 static void __vp_capture_popup_rotate_cb(void *data, Evas_Object * obj,
                                                                                 void *event_info)
 {
@@ -69,6 +75,13 @@ static void __vp_capture_popup_rotate_cb(void *data, Evas_Object * obj,
 }
 
 /* callback functions */
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pPart
+ * @return
+ */
 static char *__vp_capture_popup_genlist_text_get_cb(const void *pUserData,
                                                                                                        Evas_Object * pObj,
                                                                                                        const char *pPart)
@@ -87,6 +100,13 @@ static char *__vp_capture_popup_genlist_text_get_cb(const void *pUserData,
        return NULL;
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pPart
+ * @return
+ */
 static Evas_Object *__vp_capture_popup_genlist_content_get_cb(const void
                                                                                                                          *pUserData,
                                                                                                                          Evas_Object *
@@ -135,6 +155,12 @@ static Evas_Object *__vp_capture_popup_genlist_content_get_cb(const void
        return NULL;
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObject
+ * @param pEventInfo
+ */
 static void __vp_capture_popup_genlist_item_selected_cb(void *pUserData,
                                                                                                                Evas_Object *
                                                                                                                pObject,
@@ -178,6 +204,12 @@ static void __vp_capture_popup_genlist_item_selected_cb(void *pUserData,
        }
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pEventInfo
+ */
 static void __vp_capture_popup_key_event_cb(void *pUserData,
                                                                                        Evas_Object * pObj,
                                                                                        void *pEventInfo)
@@ -194,6 +226,13 @@ static void __vp_capture_popup_key_event_cb(void *pUserData,
        }
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pEvas
+ * @param pObj
+ * @param pEventInfo
+ */
 static void __vp_capture_popup_mouse_event_cb(void *pUserData,
                                                                                          Evas * pEvas,
                                                                                          Evas_Object * pObj,
@@ -220,8 +259,11 @@ static void __vp_capture_popup_mouse_event_cb(void *pUserData,
        }
 }
 
-
 /* internal functions */
+/**
+ *
+ * @param pCapture
+ */
 static void _vp_capture_popup_destroy_handle(CapturePopup * pCapture)
 {
        if (pCapture == NULL) {
@@ -249,6 +291,11 @@ static void _vp_capture_popup_destroy_handle(CapturePopup * pCapture)
        VP_FREE(pCapture);
 }
 
+/**
+ *
+ * @param pParent
+ * @return
+ */
 static Evas_Object *_vp_capture_popup_create_genlist(Evas_Object * pParent)
 {
        if (pParent == NULL) {
@@ -266,7 +313,12 @@ static Evas_Object *_vp_capture_popup_create_genlist(Evas_Object * pParent)
        return pObj;
 }
 
-
+/**
+ *
+ * @param pObj
+ * @param pUserData
+ * @return
+ */
 static bool _vp_capture_popup_add_genlist_item(Evas_Object * pObj,
                                                                                           void *pUserData)
 {
@@ -319,6 +371,13 @@ static bool _vp_capture_popup_add_genlist_item(Evas_Object * pObj,
 }
 
 /* external functions */
+/**
+ *
+ * @param pParent
+ * @param bCaptureOn
+ * @param pCloseCb
+ * @return
+ */
 capture_popup_handle vp_capture_popup_create(Evas_Object * pParent,
                                                                                         bool bCaptureOn,
                                                                                         PopupCloseCbFunc pCloseCb)
@@ -389,6 +448,10 @@ capture_popup_handle vp_capture_popup_create(Evas_Object * pParent,
        return pCapture;
 }
 
+/**
+ *
+ * @param pCapturePopupHandle
+ */
 void vp_capture_popup_destroy(capture_popup_handle pCapturePopupHandle)
 {
        if (pCapturePopupHandle == NULL) {
@@ -402,6 +465,11 @@ void vp_capture_popup_destroy(capture_popup_handle pCapturePopupHandle)
 
 }
 
+/**
+ *
+ * @param pCapturePopupHandle
+ * @return
+ */
 bool vp_capture_popup_realize(capture_popup_handle pCapturePopupHandle)
 {
        if (pCapturePopupHandle == NULL) {
@@ -416,6 +484,11 @@ bool vp_capture_popup_realize(capture_popup_handle pCapturePopupHandle)
        return TRUE;
 }
 
+/**
+ *
+ * @param pCapturePopupHandle
+ * @return
+ */
 bool vp_capture_popup_unrealize(capture_popup_handle pCapturePopupHandle)
 {
        if (pCapturePopupHandle == NULL) {
@@ -430,6 +503,12 @@ bool vp_capture_popup_unrealize(capture_popup_handle pCapturePopupHandle)
        return TRUE;
 }
 
+/**
+ *
+ * @param pCapturePopupHandle
+ * @param pUserData
+ * @return
+ */
 bool vp_capture_popup_set_user_data(capture_popup_handle
                                                                        pCapturePopupHandle, void *pUserData)
 {
index e2eb493..d614ca3 100644 (file)
@@ -65,13 +65,25 @@ static void _vp_detail_destroy_handle();
 
 
 /* callback functions */
-
+/**
+ *
+ * @param data
+ * @param obj
+ * @param event_info
+ */
 static void __vp_detail_genlist_realized(void *data, Evas_Object * obj,
                                                                                 void *event_info)
 {
        VP_GENLIST_HIDE_BOTTOMLINE(data, obj, event_info);
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pPart
+ * @return
+ */
 static char *__vp_detail_genlist_text_get_cb(const void *pUserData,
                                                                                         Evas_Object * pObj,
                                                                                         const char *pPart)
@@ -155,7 +167,9 @@ static char *__vp_detail_genlist_text_get_cb(const void *pUserData,
 }
 
 /* internal functions */
-
+/**
+ *
+ */
 static void _vp_detail_destroy_handle()
 {
        if (pDetailViewHandle == NULL) {
@@ -187,6 +201,11 @@ static void _vp_detail_destroy_handle()
        VP_FREE(pDetailViewHandle);
 }
 
+/**
+ *
+ * @param pParent
+ * @return
+ */
 static Evas_Object *_vp_detail_create_genlist(Evas_Object * pParent)
 {
        if (pParent == NULL) {
@@ -204,7 +223,13 @@ static Evas_Object *_vp_detail_create_genlist(Evas_Object * pParent)
        return pObj;
 }
 
-
+/**
+ *
+ * @param pObj
+ * @param pUserData
+ * @param added_item_cnt
+ * @return
+ */
 static bool _vp_detail_add_genlist_item(Evas_Object * pObj,
                                                                                void *pUserData,
                                                                                int *added_item_cnt)
@@ -313,6 +338,12 @@ static bool _vp_detail_add_genlist_item(Evas_Object * pObj,
        return TRUE;
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pItem
+ * @return
+ */
 static Eina_Bool vp_detail_view_back_btn_cb(void *pUserData,
                                                                                        Elm_Object_Item * pItem)
 {
@@ -329,6 +360,12 @@ static Eina_Bool vp_detail_view_back_btn_cb(void *pUserData,
        return EINA_TRUE;
 }
 
+/**
+ *
+ * @param data
+ * @param obj
+ * @param event_info
+ */
 void __vp_detail_soft_back_button_cb(void *data, Evas_Object * obj,
                                                                         void *event_info)
 {
@@ -339,6 +376,13 @@ void __vp_detail_soft_back_button_cb(void *data, Evas_Object * obj,
        evas_object_del(pTopNaviFrame);
 }
 
+/**
+ *
+ * @param pNaviFrame
+ * @param pCloseCb
+ * @param pDetailInfo
+ * @return
+ */
 detail_handle vp_detail_page_create(void *pNaviFrame,
                                                                        PopupCloseCbFunc pCloseCb,
                                                                        vp_detail_info * pDetailInfo)
@@ -454,7 +498,10 @@ detail_handle vp_detail_page_create(void *pNaviFrame,
 }
 
 /* external functions */
-
+/**
+ *
+ * @param pDetailHandle
+ */
 void vp_detail_destroy(detail_handle pDetailHandle)
 {
        VideoLogError("vp_detail_destroy called");
@@ -478,6 +525,12 @@ void vp_detail_destroy(detail_handle pDetailHandle)
 
 }
 
+/**
+ *
+ * @param pDetailHandle
+ * @param pUserData
+ * @return
+ */
 bool vp_detail_set_user_data(detail_handle pDetailHandle, void *pUserData)
 {
        if (pDetailHandle == NULL) {
index 4eda19b..880f2cc 100644 (file)
@@ -58,7 +58,12 @@ static void _vp_play_speed_update_text(PlaySpeedPopup * pPlaySpeedPopup);
 
 
 /* callback functions */
-
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pEventInfo
+ */
 static void __vp_play_speed_popup_ok_btn_cb(void *pUserData,
                                                                                        Evas_Object * pObj,
                                                                                        void *pEventInfo)
@@ -76,6 +81,12 @@ static void __vp_play_speed_popup_ok_btn_cb(void *pUserData,
        }
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pEventInfo
+ */
 static void __vp_play_speed_popup_cancel_btn_cb(void *pUserData,
                                                                                                Evas_Object * pObj,
                                                                                                void *pEventInfo)
@@ -93,7 +104,12 @@ static void __vp_play_speed_popup_cancel_btn_cb(void *pUserData,
        }
 }
 
-
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pEventInfo
+ */
 static void __vp_play_speed_popup_key_event_cb(void *pUserData,
                                                                                           Evas_Object * pObj,
                                                                                           void *pEventInfo)
@@ -110,6 +126,13 @@ static void __vp_play_speed_popup_key_event_cb(void *pUserData,
 
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pEvas
+ * @param pObj
+ * @param pEventInfo
+ */
 static void __vp_play_speed_popup_mouse_event_cb(void *pUserData,
                                                                                                 Evas * pEvas,
                                                                                                 Evas_Object * pObj,
@@ -136,6 +159,12 @@ static void __vp_play_speed_popup_mouse_event_cb(void *pUserData,
        }
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pEventInfo
+ */
 static void __vp_play_speed_popup_slider_change_cb(void *pUserData,
                                                                                                   Evas_Object * pObj,
                                                                                                   void *pEventInfo)
@@ -170,6 +199,12 @@ static void __vp_play_speed_popup_slider_change_cb(void *pUserData,
 
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pEvent
+ */
 static void __vp_play_speed_btn_clicked_cb(void *pUserData,
                                                                                   Evas_Object * pObj,
                                                                                   void *pEvent)
@@ -221,9 +256,11 @@ static void __vp_play_speed_btn_clicked_cb(void *pUserData,
        }
 }
 
-
-
 /* internal functions */
+/**
+ *
+ * @param pPlaySpeedPopup
+ */
 static void _vp_play_speed_popup_destroy_handle(PlaySpeedPopup *
                                                                                                pPlaySpeedPopup)
 {
@@ -245,6 +282,10 @@ static void _vp_play_speed_popup_destroy_handle(PlaySpeedPopup *
        VP_FREE(pPlaySpeedPopup);
 }
 
+/**
+ *
+ * @param pPlaySpeedPopup
+ */
 static void _vp_play_speed_update_text(PlaySpeedPopup * pPlaySpeedPopup)
 {
        if (pPlaySpeedPopup == NULL) {
@@ -260,6 +301,12 @@ static void _vp_play_speed_update_text(PlaySpeedPopup * pPlaySpeedPopup)
 
 }
 
+/**
+ *
+ * @param pParent
+ * @param pUserData
+ * @return
+ */
 static Evas_Object *_vp_play_speed_popup_create_ok_button(Evas_Object *
                                                                                                                  pParent,
                                                                                                                  void *pUserData)
@@ -283,7 +330,12 @@ static Evas_Object *_vp_play_speed_popup_create_ok_button(Evas_Object *
        return pObj;
 }
 
-
+/**
+ *
+ * @param pParent
+ * @param pUserData
+ * @return
+ */
 static Evas_Object *_vp_play_speed_popup_create_cancel_button(Evas_Object
                                                                                                                          *pParent,
                                                                                                                          void
@@ -308,6 +360,12 @@ static Evas_Object *_vp_play_speed_popup_create_cancel_button(Evas_Object
        return pObj;
 }
 
+/**
+ *
+ * @param pParent
+ * @param pUserData
+ * @return
+ */
 static Evas_Object *_vp_play_speed_popup_create_slider(Evas_Object *
                                                                                                           pParent,
                                                                                                           void *pUserData)
@@ -332,6 +390,12 @@ static Evas_Object *_vp_play_speed_popup_create_slider(Evas_Object *
        return pObj;
 }
 
+/**
+ *
+ * @param pParent
+ * @param pUserData
+ * @return
+ */
 static bool _vp_play_speed_popup_create_button(Evas_Object * pParent,
                                                                                           void *pUserData)
 {
@@ -409,6 +473,11 @@ static bool _vp_play_speed_popup_create_button(Evas_Object * pParent,
        return TRUE;
 }
 
+/**
+ *
+ * @param pParent
+ * @return
+ */
 static Evas_Object *_vp_play_speed_popup_create_layout(Evas_Object *
                                                                                                           pParent)
 {
@@ -442,9 +511,15 @@ static Evas_Object *_vp_play_speed_popup_create_layout(Evas_Object *
 
 }
 
-
-
 /* external functions */
+/**
+ *
+ * @param pParent
+ * @param fSpeedVal
+ * @param pUpdateCb
+ * @param pDoneCb
+ * @return
+ */
 play_speed_popup vp_play_speed_popup_create(Evas_Object * pParent,
                                                                                        double fSpeedVal,
                                                                                        PlaySpeedUpdateCbFunc
@@ -536,6 +611,10 @@ play_speed_popup vp_play_speed_popup_create(Evas_Object * pParent,
        return pPlaySpeedPopup;
 }
 
+/**
+ *
+ * @param pPlaySpeedHandle
+ */
 void vp_play_speed_popup_destroy(play_speed_popup pPlaySpeedHandle)
 {
        if (pPlaySpeedHandle == NULL) {
@@ -549,6 +628,11 @@ void vp_play_speed_popup_destroy(play_speed_popup pPlaySpeedHandle)
 
 }
 
+/**
+ *
+ * @param pPlaySpeedHandle
+ * @return
+ */
 bool vp_play_speed_popup_realize(play_speed_popup pPlaySpeedHandle)
 {
        if (pPlaySpeedHandle == NULL) {
@@ -563,7 +647,11 @@ bool vp_play_speed_popup_realize(play_speed_popup pPlaySpeedHandle)
        return TRUE;
 }
 
-
+/**
+ *
+ * @param pPlaySpeedHandle
+ * @return
+ */
 bool vp_play_speed_popup_unrealize(play_speed_popup pPlaySpeedHandle)
 {
        if (pPlaySpeedHandle == NULL) {
@@ -578,8 +666,12 @@ bool vp_play_speed_popup_unrealize(play_speed_popup pPlaySpeedHandle)
        return TRUE;
 }
 
-
-
+/**
+ *
+ * @param pPlaySpeedHandle
+ * @param pUserData
+ * @return
+ */
 bool vp_play_speed_popup_set_user_data(play_speed_popup pPlaySpeedHandle,
                                                                           void *pUserData)
 {
index f7a5ee4..0bbbb1b 100644 (file)
@@ -57,6 +57,12 @@ static void __vp_repeat_genlist_realized(void *data, Evas_Object * obj,
        VP_GENLIST_HIDE_BOTTOMLINE(data, obj, event_info);
 }
 
+/**
+ *
+ * @param data
+ * @param obj
+ * @param event_info
+ */
 static void __vp_repeat_popup_rotate_cb(void *data, Evas_Object * obj,
                                                                                void *event_info)
 {
@@ -74,6 +80,13 @@ static void __vp_repeat_popup_rotate_cb(void *data, Evas_Object * obj,
 }
 
 /* callback functions */
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pPart
+ * @return
+ */
 static char *__vp_repeat_genlist_text_get_cb(const void *pUserData,
                                                                                         Evas_Object * pObj,
                                                                                         const char *pPart)
@@ -92,6 +105,13 @@ static char *__vp_repeat_genlist_text_get_cb(const void *pUserData,
        return NULL;
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pPart
+ * @return
+ */
 static Evas_Object *__vp_repeat_genlist_content_get_cb(const void
                                                                                                           *pUserData,
                                                                                                           Evas_Object * pObj,
@@ -141,6 +161,12 @@ static Evas_Object *__vp_repeat_genlist_content_get_cb(const void
        return NULL;
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObject
+ * @param pEventInfo
+ */
 static void __vp_repeat_genlist_item_selected_cb(void *pUserData,
                                                                                                 Evas_Object * pObject,
                                                                                                 void *pEventInfo)
@@ -192,6 +218,12 @@ static void __vp_repeat_genlist_item_selected_cb(void *pUserData,
        }
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pEventInfo
+ */
 static void __vp_repeat_popup_key_event_cb(void *pUserData,
                                                                                   Evas_Object * pObj,
                                                                                   void *pEventInfo)
@@ -209,7 +241,13 @@ static void __vp_repeat_popup_key_event_cb(void *pUserData,
        }
 }
 
-
+/**
+ *
+ * @param pUserData
+ * @param pEvas
+ * @param pObj
+ * @param pEventInfo
+ */
 static void __vp_repeat_popup_mouse_event_cb(void *pUserData,
                                                                                         Evas * pEvas,
                                                                                         Evas_Object * pObj,
@@ -237,8 +275,11 @@ static void __vp_repeat_popup_mouse_event_cb(void *pUserData,
        }
 }
 
-
 /* internal functions */
+/**
+ *
+ * @param pRepeat
+ */
 static void _vp_repeat_destroy_handle(RepeatPopup * pRepeat)
 {
        if (pRepeat == NULL) {
@@ -268,6 +309,11 @@ static void _vp_repeat_destroy_handle(RepeatPopup * pRepeat)
        VP_FREE(pRepeat);
 }
 
+/**
+ *
+ * @param pParent
+ * @return
+ */
 static Evas_Object *_vp_repeat_create_genlist(Evas_Object * pParent)
 {
        if (pParent == NULL) {
@@ -285,7 +331,12 @@ static Evas_Object *_vp_repeat_create_genlist(Evas_Object * pParent)
        return pObj;
 }
 
-
+/**
+ *
+ * @param pObj
+ * @param pUserData
+ * @return
+ */
 static bool _vp_repeat_add_genlist_item(Evas_Object * pObj,
                                                                                void *pUserData)
 {
@@ -348,6 +399,13 @@ static bool _vp_repeat_add_genlist_item(Evas_Object * pObj,
 }
 
 /* external functions */
+/**
+ *
+ * @param pParent
+ * @param pMediaUrl
+ * @param pCloseCb
+ * @return
+ */
 repeat_handle vp_repeat_create(Evas_Object * pParent, char *pMediaUrl,
                                                           PopupCloseCbFunc pCloseCb)
 {
@@ -425,6 +483,10 @@ repeat_handle vp_repeat_create(Evas_Object * pParent, char *pMediaUrl,
        return pRepeat;
 }
 
+/**
+ *
+ * @param pRepeatHandle
+ */
 void vp_repeat_destroy(repeat_handle pRepeatHandle)
 {
        if (pRepeatHandle == NULL) {
@@ -438,6 +500,11 @@ void vp_repeat_destroy(repeat_handle pRepeatHandle)
 
 }
 
+/**
+ *
+ * @param pRepeatHandle
+ * @return
+ */
 bool vp_repeat_realize(repeat_handle pRepeatHandle)
 {
        if (pRepeatHandle == NULL) {
@@ -452,6 +519,11 @@ bool vp_repeat_realize(repeat_handle pRepeatHandle)
        return TRUE;
 }
 
+/**
+ *
+ * @param pRepeatHandle
+ * @return
+ */
 bool vp_repeat_unrealize(repeat_handle pRepeatHandle)
 {
        if (pRepeatHandle == NULL) {
@@ -466,6 +538,12 @@ bool vp_repeat_unrealize(repeat_handle pRepeatHandle)
        return TRUE;
 }
 
+/**
+ *
+ * @param pRepeatHandle
+ * @param pUserData
+ * @return
+ */
 bool vp_repeat_set_user_data(repeat_handle pRepeatHandle, void *pUserData)
 {
        if (pRepeatHandle == NULL) {
index 445864b..edf23de 100644 (file)
@@ -55,8 +55,13 @@ static void __vp_setting_popup_rotate_cb(void *data, Evas_Object * obj,
 
 
 /* callback functions */
-
-
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pPart
+ * @return
+ */
 static char *__vp_setting_genlist_text_get_cb(const void *pUserData,
                                                                                          Evas_Object * pObj,
                                                                                          const char *pPart)
@@ -135,6 +140,12 @@ static char *__vp_setting_genlist_text_get_cb(const void *pUserData,
        return NULL;
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObject
+ * @param pEventInfo
+ */
 static void __vp_setting_genlist_item_selected_cb(void *pUserData,
                                                                                                  Evas_Object * pObject,
                                                                                                  void *pEventInfo)
@@ -184,6 +195,12 @@ static void __vp_setting_genlist_item_selected_cb(void *pUserData,
        }
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pEventInfo
+ */
 static void __vp_setting_popup_key_event_cb(void *pUserData,
                                                                                        Evas_Object * pObj,
                                                                                        void *pEventInfo)
@@ -200,6 +217,13 @@ static void __vp_setting_popup_key_event_cb(void *pUserData,
        }
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pEvas
+ * @param pObj
+ * @param pEventInfo
+ */
 static void __vp_setting_popup_mouse_event_cb(void *pUserData,
                                                                                          Evas * pEvas,
                                                                                          Evas_Object * pObj,
@@ -227,9 +251,11 @@ static void __vp_setting_popup_mouse_event_cb(void *pUserData,
        }
 }
 
-
-
 /* internal functions */
+/**
+ *
+ * @param pSetting
+ */
 static void _vp_setting_destroy_handle(SettingPopup * pSetting)
 {
        if (pSetting == NULL) {
@@ -259,6 +285,11 @@ static void _vp_setting_destroy_handle(SettingPopup * pSetting)
        VP_FREE(pSetting);
 }
 
+/**
+ *
+ * @param pParent
+ * @return
+ */
 static Evas_Object *_vp_setting_create_genlist(Evas_Object * pParent)
 {
        if (pParent == NULL) {
@@ -276,7 +307,12 @@ static Evas_Object *_vp_setting_create_genlist(Evas_Object * pParent)
        return pObj;
 }
 
-
+/**
+ *
+ * @param pObj
+ * @param pUserData
+ * @return
+ */
 static bool _vp_setting_add_genlist_item(Evas_Object * pObj,
                                                                                 void *pUserData)
 {
@@ -382,12 +418,24 @@ static bool _vp_setting_add_genlist_item(Evas_Object * pObj,
        return TRUE;
 }
 
+/**
+ *
+ * @param data
+ * @param obj
+ * @param event_info
+ */
 static void __vp_setting_genlist_realized(void *data, Evas_Object * obj,
                                                                                  void *event_info)
 {
        VP_GENLIST_HIDE_BOTTOMLINE(data, obj, event_info);
 }
 
+/**
+ *
+ * @param data
+ * @param obj
+ * @param event_info
+ */
 static void __vp_setting_popup_rotate_cb(void *data, Evas_Object * obj,
                                                                                 void *event_info)
 {
@@ -406,6 +454,13 @@ static void __vp_setting_popup_rotate_cb(void *data, Evas_Object * obj,
 }
 
 /* external functions */
+/**
+ *
+ * @param pParent
+ * @param pSettingInfo
+ * @param pCloseCb
+ * @return
+ */
 setting_popup_handle vp_setting_create(Evas_Object * pParent,
                                                                           SettingInfo * pSettingInfo,
                                                                           PopupCloseCbFunc pCloseCb)
@@ -502,6 +557,10 @@ setting_popup_handle vp_setting_create(Evas_Object * pParent,
        return pSetting;
 }
 
+/**
+ *
+ * @param pSettingHandle
+ */
 void vp_setting_destroy(setting_popup_handle pSettingHandle)
 {
        if (pSettingHandle == NULL) {
@@ -515,6 +574,11 @@ void vp_setting_destroy(setting_popup_handle pSettingHandle)
 
 }
 
+/**
+ *
+ * @param pSettingHandle
+ * @return
+ */
 bool vp_setting_realize(setting_popup_handle pSettingHandle)
 {
        if (pSettingHandle == NULL) {
@@ -529,6 +593,11 @@ bool vp_setting_realize(setting_popup_handle pSettingHandle)
        return TRUE;
 }
 
+/**
+ *
+ * @param pSettingHandle
+ * @return
+ */
 bool vp_setting_unrealize(setting_popup_handle pSettingHandle)
 {
        if (pSettingHandle == NULL) {
@@ -544,6 +613,12 @@ bool vp_setting_unrealize(setting_popup_handle pSettingHandle)
        return TRUE;
 }
 
+/**
+ *
+ * @param pSettingHandle
+ * @param pUserData
+ * @return
+ */
 bool vp_setting_set_user_data(setting_popup_handle pSettingHandle,
                                                          void *pUserData)
 {
index 9df44e1..da8b632 100644 (file)
@@ -39,6 +39,12 @@ typedef struct _SharePopup {
 
 } SharePopup;
 
+/**
+ *
+ * @param data
+ * @param obj
+ * @param event_info
+ */
 static void __vp_share_popup_rotate_cb(void *data, Evas_Object * obj,
                                                                           void *event_info)
 {
@@ -55,6 +61,10 @@ static void __vp_share_popup_rotate_cb(void *data, Evas_Object * obj,
 
 }
 
+/**
+ *
+ * @param pShare
+ */
 static void _vp_share_destroy_handle(SharePopup * pShare)
 {
        if (pShare == NULL) {
@@ -76,6 +86,13 @@ static void _vp_share_destroy_handle(SharePopup * pShare)
 }
 
 /* callback functions */
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pPart
+ * @return
+ */
 static char *__vp_share_genlist_text_get_cb(const void *pUserData,
                                                                                        Evas_Object * pObj,
                                                                                        const char *pPart)
@@ -94,6 +111,12 @@ static char *__vp_share_genlist_text_get_cb(const void *pUserData,
        return NULL;
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObject
+ * @param pEventInfo
+ */
 static void __vp_share_genlist_item_selected_cb(void *pUserData,
                                                                                                Evas_Object * pObject,
                                                                                                void *pEventInfo)
@@ -158,7 +181,12 @@ static void __vp_share_genlist_item_selected_cb(void *pUserData,
        }
 }
 
-
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pEventInfo
+ */
 static void __vp_share_close_btn_cb(void *pUserData, Evas_Object * pObj,
                                                                        void *pEventInfo)
 {
@@ -174,6 +202,12 @@ static void __vp_share_close_btn_cb(void *pUserData, Evas_Object * pObj,
        }
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pEventInfo
+ */
 static void __vp_share_popup_key_event_cb(void *pUserData,
                                                                                  Evas_Object * pObj,
                                                                                  void *pEventInfo)
@@ -190,6 +224,13 @@ static void __vp_share_popup_key_event_cb(void *pUserData,
        }
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pEvas
+ * @param pObj
+ * @param pEventInfo
+ */
 static void __vp_share_popup_mouse_event_cb(void *pUserData, Evas * pEvas,
                                                                                        Evas_Object * pObj,
                                                                                        void *pEventInfo)
@@ -216,8 +257,13 @@ static void __vp_share_popup_mouse_event_cb(void *pUserData, Evas * pEvas,
        }
 }
 
-
 /* internal functions */
+/**
+ *
+ * @param pParent
+ * @param pUserData
+ * @return
+ */
 static Evas_Object *_vp_share_create_button(Evas_Object * pParent,
                                                                                        void *pUserData)
 {
@@ -239,6 +285,11 @@ static Evas_Object *_vp_share_create_button(Evas_Object * pParent,
        return pObj;
 }
 
+/**
+ *
+ * @param pParent
+ * @return
+ */
 static Evas_Object *_vp_share_create_genlist(Evas_Object * pParent)
 {
        if (pParent == NULL) {
@@ -256,7 +307,12 @@ static Evas_Object *_vp_share_create_genlist(Evas_Object * pParent)
        return pObj;
 }
 
-
+/**
+ *
+ * @param pObj
+ * @param pUserData
+ * @return
+ */
 static bool _vp_share_add_genlist_item(Evas_Object * pObj, void *pUserData)
 {
        if (!pObj || !pUserData) {
@@ -315,6 +371,13 @@ static bool _vp_share_add_genlist_item(Evas_Object * pObj, void *pUserData)
 }
 
 /* external functions */
+/**
+ *
+ * @param pParent
+ * @param pMediaUrl
+ * @param pCloseCb
+ * @return
+ */
 share_handle vp_share_create(Evas_Object * pParent, char *pMediaUrl,
                                                         PopupCloseCbFunc pCloseCb)
 {
@@ -387,6 +450,10 @@ share_handle vp_share_create(Evas_Object * pParent, char *pMediaUrl,
        return pShare;
 }
 
+/**
+ *
+ * @param pShareHandle
+ */
 void vp_share_destroy(share_handle pShareHandle)
 {
        if (pShareHandle == NULL) {
@@ -400,6 +467,11 @@ void vp_share_destroy(share_handle pShareHandle)
 
 }
 
+/**
+ *
+ * @param pShareHandle
+ * @return
+ */
 bool vp_share_realize(share_handle pShareHandle)
 {
        if (pShareHandle == NULL) {
@@ -414,6 +486,11 @@ bool vp_share_realize(share_handle pShareHandle)
        return TRUE;
 }
 
+/**
+ *
+ * @param pShareHandle
+ * @return
+ */
 bool vp_share_unrealize(share_handle pShareHandle)
 {
        if (pShareHandle == NULL) {
@@ -428,6 +505,12 @@ bool vp_share_unrealize(share_handle pShareHandle)
        return TRUE;
 }
 
+/**
+ *
+ * @param pShareHandle
+ * @param pUserData
+ * @return
+ */
 bool vp_share_set_user_data(share_handle pShareHandle, void *pUserData)
 {
        if (pShareHandle == NULL) {
index 62b4ebf..9dd900a 100644 (file)
@@ -48,6 +48,12 @@ static void __vp_sound_alive_genlist_item_selected_cb(void *pUserData,
                                                                                                          pObject,
                                                                                                          void *pEventInfo);
 
+/**
+ *
+ * @param data
+ * @param obj
+ * @param event_info
+ */
 static void __vp_sound_alive_genlist_realized(void *data,
                                                                                          Evas_Object * obj,
                                                                                          void *event_info)
@@ -55,6 +61,12 @@ static void __vp_sound_alive_genlist_realized(void *data,
        VP_GENLIST_HIDE_BOTTOMLINE(data, obj, event_info);
 }
 
+/**
+ *
+ * @param data
+ * @param obj
+ * @param event_info
+ */
 static void __vp_sound_alive_popup_rotate_cb(void *data,
                                                                                         Evas_Object * obj,
                                                                                         void *event_info)
@@ -73,6 +85,10 @@ static void __vp_sound_alive_popup_rotate_cb(void *data,
 
 }
 
+/**
+ *
+ * @param pSoundAlive
+ */
 static void _vp_sound_alive_destroy_handle(SoundAlivePopup * pSoundAlive)
 {
        if (pSoundAlive == NULL) {
@@ -105,6 +121,13 @@ static void _vp_sound_alive_destroy_handle(SoundAlivePopup * pSoundAlive)
 }
 
 /* callback functions */
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pPart
+ * @return
+ */
 static char *__vp_sound_alive_genlist_text_get_cb(const void *pUserData,
                                                                                                  Evas_Object * pObj,
                                                                                                  const char *pPart)
@@ -123,6 +146,13 @@ static char *__vp_sound_alive_genlist_text_get_cb(const void *pUserData,
        return NULL;
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pPart
+ * @return
+ */
 static Evas_Object *__vp_sound_alive_genlist_content_get_cb(const void
                                                                                                                        *pUserData,
                                                                                                                        Evas_Object *
@@ -176,6 +206,12 @@ static Evas_Object *__vp_sound_alive_genlist_content_get_cb(const void
        return NULL;
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObject
+ * @param pEventInfo
+ */
 static void __vp_sound_alive_genlist_item_selected_cb(void *pUserData,
                                                                                                          Evas_Object *
                                                                                                          pObject,
@@ -231,6 +267,12 @@ static void __vp_sound_alive_genlist_item_selected_cb(void *pUserData,
        }
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pEventInfo
+ */
 static void __vp_sound_alive_popup_key_event_cb(void *pUserData,
                                                                                                Evas_Object * pObj,
                                                                                                void *pEventInfo)
@@ -248,6 +290,13 @@ static void __vp_sound_alive_popup_key_event_cb(void *pUserData,
        }
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pEvas
+ * @param pObj
+ * @param pEventInfo
+ */
 static void __vp_sound_alive_popup_mouse_event_cb(void *pUserData,
                                                                                                  Evas * pEvas,
                                                                                                  Evas_Object * pObj,
@@ -275,6 +324,11 @@ static void __vp_sound_alive_popup_mouse_event_cb(void *pUserData,
        }
 }
 
+/**
+ *
+ * @param pParent
+ * @return
+ */
 static Evas_Object *_vp_sound_alive_create_genlist(Evas_Object * pParent)
 {
        if (pParent == NULL) {
@@ -292,7 +346,12 @@ static Evas_Object *_vp_sound_alive_create_genlist(Evas_Object * pParent)
        return pObj;
 }
 
-
+/**
+ *
+ * @param pObj
+ * @param pUserData
+ * @return
+ */
 static bool _vp_sound_alive_add_genlist_item(Evas_Object * pObj,
                                                                                         void *pUserData)
 {
@@ -370,6 +429,14 @@ static bool _vp_sound_alive_add_genlist_item(Evas_Object * pObj,
 }
 
 /* external functions */
+/**
+ *
+ * @param pParent
+ * @param pMediaUrl
+ * @param pCloseCb
+ * @param nType
+ * @return
+ */
 sound_alive_handle vp_sound_alive_create(Evas_Object * pParent,
                                                                                 char *pMediaUrl,
                                                                                 PopupCloseCbFunc pCloseCb,
@@ -454,6 +521,10 @@ sound_alive_handle vp_sound_alive_create(Evas_Object * pParent,
        return pSoundAlive;
 }
 
+/**
+ *
+ * @param pSAHandle
+ */
 void vp_sound_alive_destroy(sound_alive_handle pSAHandle)
 {
        if (pSAHandle == NULL) {
@@ -467,6 +538,11 @@ void vp_sound_alive_destroy(sound_alive_handle pSAHandle)
 
 }
 
+/**
+ *
+ * @param pSAHandle
+ * @return
+ */
 bool vp_sound_alive_realize(sound_alive_handle pSAHandle)
 {
        if (pSAHandle == NULL) {
@@ -481,6 +557,11 @@ bool vp_sound_alive_realize(sound_alive_handle pSAHandle)
        return TRUE;
 }
 
+/**
+ *
+ * @param pSAHandle
+ * @return
+ */
 bool vp_sound_alive_unrealize(sound_alive_handle pSAHandle)
 {
        if (pSAHandle == NULL) {
@@ -495,6 +576,12 @@ bool vp_sound_alive_unrealize(sound_alive_handle pSAHandle)
        return TRUE;
 }
 
+/**
+ *
+ * @param pSAHandle
+ * @param pUserData
+ * @return
+ */
 bool vp_sound_alive_set_user_data(sound_alive_handle pSAHandle,
                                                                  void *pUserData)
 {
index b5d178b..23acebe 100644 (file)
@@ -51,12 +51,24 @@ static void __vp_sound_path_genlist_item_selected_cb(void *pUserData,
                                                                                                         pObject,
                                                                                                         void *pEventInfo);
 
+/**
+ *
+ * @param data
+ * @param obj
+ * @param event_info
+ */
 static void __vp_sound_genlist_realized(void *data, Evas_Object * obj,
                                                                                void *event_info)
 {
        VP_GENLIST_HIDE_BOTTOMLINE(data, obj, event_info);
 }
 
+/**
+ *
+ * @param data
+ * @param obj
+ * @param event_info
+ */
 static void __vp_sound_path_popup_rotate_cb(void *data, Evas_Object * obj,
                                                                                        void *event_info)
 {
@@ -73,6 +85,10 @@ static void __vp_sound_path_popup_rotate_cb(void *data, Evas_Object * obj,
 
 }
 
+/**
+ *
+ * @param pSoundPath
+ */
 static void _vp_sound_path_destroy_handle(SoundPathPopup * pSoundPath)
 {
        if (pSoundPath == NULL) {
@@ -104,6 +120,13 @@ static void _vp_sound_path_destroy_handle(SoundPathPopup * pSoundPath)
 }
 
 /* callback functions */
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pPart
+ * @return
+ */
 static char *__vp_sound_path_genlist_text_get_cb(const void *pUserData,
                                                                                                 Evas_Object * pObj,
                                                                                                 const char *pPart)
@@ -122,6 +145,13 @@ static char *__vp_sound_path_genlist_text_get_cb(const void *pUserData,
        return NULL;
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pPart
+ * @return
+ */
 static Evas_Object *__vp_sound_path_genlist_content_get_cb(const void
                                                                                                                   *pUserData,
                                                                                                                   Evas_Object *
@@ -191,6 +221,12 @@ static Evas_Object *__vp_sound_path_genlist_content_get_cb(const void
        return NULL;
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObject
+ * @param pEventInfo
+ */
 static void __vp_sound_path_genlist_item_selected_cb(void *pUserData,
                                                                                                         Evas_Object * pObject,
                                                                                                         void *pEventInfo)
@@ -254,6 +290,12 @@ static void __vp_sound_path_genlist_item_selected_cb(void *pUserData,
        }
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pEventInfo
+ */
 static void __vp_sound_path_popup_key_event_cb(void *pUserData,
                                                                                           Evas_Object * pObj,
                                                                                           void *pEventInfo)
@@ -271,6 +313,13 @@ static void __vp_sound_path_popup_key_event_cb(void *pUserData,
        }
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pEvas
+ * @param pObj
+ * @param pEventInfo
+ */
 static void __vp_sound_path_popup_mouse_event_cb(void *pUserData,
                                                                                                 Evas * pEvas,
                                                                                                 Evas_Object * pObj,
@@ -298,6 +347,11 @@ static void __vp_sound_path_popup_mouse_event_cb(void *pUserData,
        }
 }
 
+/**
+ *
+ * @param pParent
+ * @return
+ */
 static Evas_Object *_vp_sound_path_create_genlist(Evas_Object * pParent)
 {
        if (pParent == NULL) {
@@ -315,7 +369,12 @@ static Evas_Object *_vp_sound_path_create_genlist(Evas_Object * pParent)
        return pObj;
 }
 
-
+/**
+ *
+ * @param pObj
+ * @param pUserData
+ * @return
+ */
 static bool _vp_sound_path_add_genlist_item(Evas_Object * pObj,
                                                                                        void *pUserData)
 {
@@ -411,6 +470,12 @@ static bool _vp_sound_path_add_genlist_item(Evas_Object * pObj,
 }
 
 /* external functions */
+/**
+ *
+ * @param pParent
+ * @param pCloseCb
+ * @return
+ */
 sound_path_handle vp_sound_path_create(Evas_Object * pParent,
                                                                           PopupCloseCbFunc pCloseCb)
 {
@@ -492,6 +557,10 @@ sound_path_handle vp_sound_path_create(Evas_Object * pParent,
        return pSoundPath;
 }
 
+/**
+ *
+ * @param pSoundPathHandle
+ */
 void vp_sound_path_destroy(sound_path_handle pSoundPathHandle)
 {
        if (pSoundPathHandle == NULL) {
@@ -505,6 +574,11 @@ void vp_sound_path_destroy(sound_path_handle pSoundPathHandle)
 
 }
 
+/**
+ *
+ * @param pSoundPathHandle
+ * @return
+ */
 bool vp_sound_path_realize(sound_path_handle pSoundPathHandle)
 {
        if (pSoundPathHandle == NULL) {
@@ -519,6 +593,11 @@ bool vp_sound_path_realize(sound_path_handle pSoundPathHandle)
        return TRUE;
 }
 
+/**
+ *
+ * @param pSoundPathHandle
+ * @return
+ */
 bool vp_sound_path_unrealize(sound_path_handle pSoundPathHandle)
 {
        if (pSoundPathHandle == NULL) {
@@ -533,6 +612,12 @@ bool vp_sound_path_unrealize(sound_path_handle pSoundPathHandle)
        return TRUE;
 }
 
+/**
+ *
+ * @param pSoundPathHandle
+ * @param pUserData
+ * @return
+ */
 bool vp_sound_path_set_user_data(sound_path_handle pSoundPathHandle,
                                                                 void *pUserData)
 {
index 881691f..1f6d51c 100644 (file)
@@ -59,6 +59,12 @@ static void __vp_subtitle_alignment_genlist_realized(void *data,
        VP_GENLIST_HIDE_BOTTOMLINE(data, obj, event_info);
 }
 
+/**
+ *
+ * @param data
+ * @param obj
+ * @param event_info
+ */
 static void __vp_subtitle_alignment_popup_rotate_cb(void *data,
                                                                                                        Evas_Object * obj,
                                                                                                        void *event_info)
@@ -80,6 +86,13 @@ static void __vp_subtitle_alignment_popup_rotate_cb(void *data,
 }
 
 /* callback functions */
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pPart
+ * @return
+ */
 static char *__vp_subtitle_alignment_genlist_text_get_cb(const void
                                                                                                                 *pUserData,
                                                                                                                 Evas_Object *
@@ -100,6 +113,13 @@ static char *__vp_subtitle_alignment_genlist_text_get_cb(const void
        return NULL;
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pPart
+ * @return
+ */
 static Evas_Object *__vp_subtitle_alignment_genlist_content_get_cb(const
                                                                                                                                   void
                                                                                                                                   *pUserData,
@@ -152,6 +172,12 @@ static Evas_Object *__vp_subtitle_alignment_genlist_content_get_cb(const
        return NULL;
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObject
+ * @param pEventInfo
+ */
 static void __vp_subtitle_alignment_genlist_item_selected_cb(void
                                                                                                                         *pUserData,
                                                                                                                         Evas_Object *
@@ -202,6 +228,12 @@ static void __vp_subtitle_alignment_genlist_item_selected_cb(void
        }
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pEventInfo
+ */
 static void __vp_subtitle_alignment_popup_key_event_cb(void *pUserData,
                                                                                                           Evas_Object * pObj,
                                                                                                           void *pEventInfo)
@@ -221,6 +253,13 @@ static void __vp_subtitle_alignment_popup_key_event_cb(void *pUserData,
        }
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pEvas
+ * @param pObj
+ * @param pEventInfo
+ */
 static void __vp_subtitle_alignment_popup_mouse_event_cb(void *pUserData,
                                                                                                                 Evas * pEvas,
                                                                                                                 Evas_Object *
@@ -251,9 +290,11 @@ static void __vp_subtitle_alignment_popup_mouse_event_cb(void *pUserData,
        }
 }
 
-
-
 /* internal functions */
+/**
+ *
+ * @param pSubtitleAlignment
+ */
 static void _vp_subtitle_alignment_destroy_handle(SubtitleAlignmentPopup *
                                                                                                  pSubtitleAlignment)
 {
@@ -286,6 +327,11 @@ static void _vp_subtitle_alignment_destroy_handle(SubtitleAlignmentPopup *
        VP_FREE(pSubtitleAlignment);
 }
 
+/**
+ *
+ * @param pParent
+ * @return
+ */
 static Evas_Object *_vp_subtitle_alignment_create_genlist(Evas_Object *
                                                                                                                  pParent)
 {
@@ -304,7 +350,12 @@ static Evas_Object *_vp_subtitle_alignment_create_genlist(Evas_Object *
        return pObj;
 }
 
-
+/**
+ *
+ * @param pObj
+ * @param pUserData
+ * @return
+ */
 static bool _vp_subtitle_alignment_add_genlist_item(Evas_Object * pObj,
                                                                                                        void *pUserData)
 {
@@ -368,6 +419,13 @@ static bool _vp_subtitle_alignment_add_genlist_item(Evas_Object * pObj,
 }
 
 /* external functions */
+/**
+ *
+ * @param pParent
+ * @param pCloseCb
+ * @param nDefaultAlign
+ * @return
+ */
 subtitle_alignment_handle vp_subtitle_alignment_create(Evas_Object *
                                                                                                           pParent,
                                                                                                           PopupCloseCbFunc
@@ -448,6 +506,10 @@ subtitle_alignment_handle vp_subtitle_alignment_create(Evas_Object *
        return pSubtitleAlignment;
 }
 
+/**
+ *
+ * @param pSubtitleAlignmentHandle
+ */
 void vp_subtitle_alignment_destroy(subtitle_alignment_handle
                                                                   pSubtitleAlignmentHandle)
 {
@@ -463,6 +525,11 @@ void vp_subtitle_alignment_destroy(subtitle_alignment_handle
 
 }
 
+/**
+ *
+ * @param pSubtitleAlignmentHandle
+ * @return
+ */
 bool vp_subtitle_alignment_realize(subtitle_alignment_handle
                                                                   pSubtitleAlignmentHandle)
 {
@@ -479,6 +546,11 @@ bool vp_subtitle_alignment_realize(subtitle_alignment_handle
        return TRUE;
 }
 
+/**
+ *
+ * @param pSubtitleAlignmentHandle
+ * @return
+ */
 bool vp_subtitle_alignment_unrealize(subtitle_alignment_handle
                                                                         pSubtitleAlignmentHandle)
 {
@@ -495,6 +567,12 @@ bool vp_subtitle_alignment_unrealize(subtitle_alignment_handle
        return TRUE;
 }
 
+/**
+ *
+ * @param pSubtitleAlignmentHandle
+ * @param pUserData
+ * @return
+ */
 bool vp_subtitle_alignment_set_user_data(subtitle_alignment_handle
                                                                                 pSubtitleAlignmentHandle,
                                                                                 void *pUserData)
index c910a0a..238d96a 100644 (file)
@@ -56,6 +56,12 @@ static void __vp_subtitle_bg_color_genlist_item_selected_cb(void
                                                                                                                        *pEventInfo);
 
 
+/**
+ *
+ * @param data
+ * @param obj
+ * @param event_info
+ */
 static void __vp_subtitle_bg_color_genlist_realized(void *data,
                                                                                                        Evas_Object * obj,
                                                                                                        void *event_info)
@@ -63,6 +69,12 @@ static void __vp_subtitle_bg_color_genlist_realized(void *data,
        VP_GENLIST_HIDE_BOTTOMLINE(data, obj, event_info);
 }
 
+/**
+ *
+ * @param data
+ * @param obj
+ * @param event_info
+ */
 static void __vp_subtitle_bg_color_popup_rotate_cb(void *data,
                                                                                                   Evas_Object * obj,
                                                                                                   void *event_info)
@@ -82,8 +94,14 @@ static void __vp_subtitle_bg_color_popup_rotate_cb(void *data,
 
 }
 
-
 /* callback functions */
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pPart
+ * @return
+ */
 static char *__vp_subtitle_bg_color_genlist_text_get_cb(const void
                                                                                                                *pUserData,
                                                                                                                Evas_Object * pObj,
@@ -103,6 +121,13 @@ static char *__vp_subtitle_bg_color_genlist_text_get_cb(const void
        return NULL;
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pPart
+ * @return
+ */
 static Evas_Object *__vp_subtitle_bg_color_genlist_content_get_cb(const
                                                                                                                                  void
                                                                                                                                  *pUserData,
@@ -154,6 +179,12 @@ static Evas_Object *__vp_subtitle_bg_color_genlist_content_get_cb(const
        return NULL;
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObject
+ * @param pEventInfo
+ */
 static void __vp_subtitle_bg_color_genlist_item_selected_cb(void
                                                                                                                        *pUserData,
                                                                                                                        Evas_Object *
@@ -202,6 +233,12 @@ static void __vp_subtitle_bg_color_genlist_item_selected_cb(void
        }
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pEventInfo
+ */
 static void __vp_subtitle_bg_color_popup_key_event_cb(void *pUserData,
                                                                                                          Evas_Object * pObj,
                                                                                                          void *pEventInfo)
@@ -220,6 +257,13 @@ static void __vp_subtitle_bg_color_popup_key_event_cb(void *pUserData,
        }
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pEvas
+ * @param pObj
+ * @param pEventInfo
+ */
 static void __vp_subtitle_bg_color_popup_mouse_event_cb(void *pUserData,
                                                                                                                Evas * pEvas,
                                                                                                                Evas_Object * pObj,
@@ -249,9 +293,11 @@ static void __vp_subtitle_bg_color_popup_mouse_event_cb(void *pUserData,
        }
 }
 
-
-
 /* internal functions */
+/**
+ *
+ * @param pSubtitleBGColor
+ */
 static void _vp_subtitle_bg_color_destroy_handle(SubtitleBGColorPopup *
                                                                                                 pSubtitleBGColor)
 {
@@ -282,7 +328,11 @@ static void _vp_subtitle_bg_color_destroy_handle(SubtitleBGColorPopup *
        VP_FREE(pSubtitleBGColor);
 }
 
-
+/**
+ *
+ * @param pParent
+ * @return
+ */
 static Evas_Object *_vp_subtitle_bg_color_create_genlist(Evas_Object *
                                                                                                                 pParent)
 {
@@ -301,7 +351,12 @@ static Evas_Object *_vp_subtitle_bg_color_create_genlist(Evas_Object *
        return pObj;
 }
 
-
+/**
+ *
+ * @param pObj
+ * @param pUserData
+ * @return
+ */
 static bool _vp_subtitle_bg_color_add_genlist_item(Evas_Object * pObj,
                                                                                                   void *pUserData)
 {
@@ -365,6 +420,13 @@ static bool _vp_subtitle_bg_color_add_genlist_item(Evas_Object * pObj,
 }
 
 /* external functions */
+/**
+ *
+ * @param pParent
+ * @param pCloseCb
+ * @param nDefaultColor
+ * @return
+ */
 subtitle_bg_color_handle vp_subtitle_bg_color_create(Evas_Object *
                                                                                                         pParent,
                                                                                                         PopupCloseCbFunc
@@ -443,6 +505,10 @@ subtitle_bg_color_handle vp_subtitle_bg_color_create(Evas_Object *
        return pSubtitleBGColor;
 }
 
+/**
+ *
+ * @param pSubtitleBGColorHandle
+ */
 void vp_subtitle_bg_color_destroy(subtitle_bg_color_handle
                                                                  pSubtitleBGColorHandle)
 {
@@ -458,6 +524,11 @@ void vp_subtitle_bg_color_destroy(subtitle_bg_color_handle
 
 }
 
+/**
+ *
+ * @param pSubtitleBGColorHandle
+ * @return
+ */
 bool vp_subtitle_bg_color_realize(subtitle_bg_color_handle
                                                                  pSubtitleBGColorHandle)
 {
@@ -474,6 +545,11 @@ bool vp_subtitle_bg_color_realize(subtitle_bg_color_handle
        return TRUE;
 }
 
+/**
+ *
+ * @param pSubtitleBGColorHandle
+ * @return
+ */
 bool vp_subtitle_bg_color_unrealize(subtitle_bg_color_handle
                                                                        pSubtitleBGColorHandle)
 {
@@ -490,6 +566,12 @@ bool vp_subtitle_bg_color_unrealize(subtitle_bg_color_handle
        return TRUE;
 }
 
+/**
+ *
+ * @param pSubtitleBGColorHandle
+ * @param pUserData
+ * @return
+ */
 bool vp_subtitle_bg_color_set_user_data(subtitle_bg_color_handle
                                                                                pSubtitleBGColorHandle,
                                                                                void *pUserData)
index 2b380b6..853d547 100644 (file)
@@ -72,7 +72,10 @@ typedef struct _SubtitleColorPopup {
        char *pCurrentColorHex;
 } SubtitleColorPopup;
 
-
+/**
+ *
+ * @param pSubtitleColor
+ */
 static void _vp_subtitle_color_destroy_handle(SubtitleColorPopup *
                                                                                          pSubtitleColor);
 
@@ -89,6 +92,12 @@ static void __vp_subtitle_color_genlist_realized(void *data,
        VP_GENLIST_HIDE_BOTTOMLINE(data, obj, event_info);
 }
 #endif
+/**
+ *
+ * @param data
+ * @param obj
+ * @param event_info
+ */
 static void __vp_subtitle_color_popup_rotate_cb(void *data,
                                                                                                Evas_Object * obj,
                                                                                                void *event_info)
@@ -127,6 +136,13 @@ static void __vp_subtitle_color_popup_rotate_cb(void *data,
 #ifndef SUBTITLE_K_FEATURE
 
 /* callback functions */
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pPart
+ * @return
+ */
 static char *__vp_subtitle_color_genlist_text_get_cb(const void
                                                                                                         *pUserData,
                                                                                                         Evas_Object * pObj,
@@ -146,6 +162,13 @@ static char *__vp_subtitle_color_genlist_text_get_cb(const void
        return NULL;
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pPart
+ * @return
+ */
 static Evas_Object *__vp_subtitle_color_genlist_content_get_cb(const void
                                                                                                                           *pUserData,
                                                                                                                           Evas_Object
@@ -197,6 +220,12 @@ static Evas_Object *__vp_subtitle_color_genlist_content_get_cb(const void
        return NULL;
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObject
+ * @param pEventInfo
+ */
 static void __vp_subtitle_color_genlist_item_selected_cb(void *pUserData,
                                                                                                                 Evas_Object *
                                                                                                                 pObject,
@@ -246,6 +275,12 @@ static void __vp_subtitle_color_genlist_item_selected_cb(void *pUserData,
 
 #endif
 
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pEventInfo
+ */
 static void __vp_subtitle_color_popup_key_event_cb(void *pUserData,
                                                                                                   Evas_Object * pObj,
                                                                                                   void *pEventInfo)
@@ -268,6 +303,13 @@ static void __vp_subtitle_color_popup_key_event_cb(void *pUserData,
        }
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pEvas
+ * @param pObj
+ * @param pEventInfo
+ */
 static void __vp_subtitle_color_popup_mouse_event_cb(void *pUserData,
                                                                                                         Evas * pEvas,
                                                                                                         Evas_Object * pObj,
@@ -299,9 +341,12 @@ static void __vp_subtitle_color_popup_mouse_event_cb(void *pUserData,
        }
 }
 
-
-
 /* internal functions */
+/**
+ *
+ * @param colorHex
+ * @return
+ */
 int _vp_subtitle_color_get_opacity(char *colorHex)
 {
        if (colorHex == NULL) {
@@ -322,6 +367,11 @@ int _vp_subtitle_color_get_opacity(char *colorHex)
        return nOpacity;
 }
 
+/**
+ *
+ * @param colorHex
+ * @return
+ */
 int _vp_subtitle_color_get_platte_index(char *colorHex)
 {
        if (colorHex == NULL) {
@@ -369,6 +419,12 @@ int _vp_subtitle_color_get_platte_index(char *colorHex)
        return nIndex;
 }
 
+/**
+ *
+ * @param pColor
+ * @param nOpacity
+ * @return
+ */
 char *_vp_subtitle_color_get_select_color(char *pColor, int nOpacity)
 {
        if (pColor == NULL) {
@@ -390,6 +446,10 @@ char *_vp_subtitle_color_get_select_color(char *pColor, int nOpacity)
        return pColorHex;
 }
 
+/**
+ *
+ * @param pSubtitleColor
+ */
 static void _vp_subtitle_color_destroy_handle(SubtitleColorPopup *
                                                                                          pSubtitleColor)
 {
@@ -434,6 +494,11 @@ static void _vp_subtitle_color_destroy_handle(SubtitleColorPopup *
 }
 
 #ifndef SUBTITLE_K_FEATURE
+/**
+ *
+ * @param pParent
+ * @return
+ */
 static Evas_Object *_vp_subtitle_color_create_genlist(Evas_Object *
                                                                                                          pParent)
 {
@@ -452,7 +517,12 @@ static Evas_Object *_vp_subtitle_color_create_genlist(Evas_Object *
        return pObj;
 }
 
-
+/**
+ *
+ * @param pObj
+ * @param pUserData
+ * @return
+ */
 static bool _vp_subtitle_color_add_genlist_item(Evas_Object * pObj,
                                                                                                void *pUserData)
 {
@@ -517,7 +587,12 @@ static bool _vp_subtitle_color_add_genlist_item(Evas_Object * pObj,
 #else
 
 /* callback functions */
-
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pEventInfo
+ */
 static void __vp_play_subtitle_color_popup_ok_btn_cb(void *pUserData,
                                                                                                         Evas_Object * pObj,
                                                                                                         void *pEventInfo)
@@ -540,6 +615,12 @@ static void __vp_play_subtitle_color_popup_ok_btn_cb(void *pUserData,
        VP_FREE(pColorHex);
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pEventInfo
+ */
 static void __vp_play_subtitle_color_popup_cancel_btn_cb(void *pUserData,
                                                                                                                 Evas_Object *
                                                                                                                 pObj,
@@ -558,6 +639,12 @@ static void __vp_play_subtitle_color_popup_cancel_btn_cb(void *pUserData,
        }
 }
 
+/**
+ *
+ * @param pParent
+ * @param pUserData
+ * @return
+ */
 static Evas_Object
        *_vp_play_subtitle_color_popup_create_ok_button(Evas_Object *pParent,
                                                                                                         void *pUserData)
@@ -581,6 +668,12 @@ static Evas_Object
        return pObj;
 }
 
+/**
+ *
+ * @param pParent
+ * @param pUserData
+ * @return
+ */
 static Evas_Object
        *_vp_play_subtitle_color_popup_create_cancel_button(Evas_Object
                                                                                                                 *pParent,
@@ -605,6 +698,12 @@ static Evas_Object
        return pObj;
 }
 
+/**
+ *
+ * @param data
+ * @param obj
+ * @param event_info
+ */
 static void _vp_play_subtitle_color_popup_colorpalette_cb(void *data,
                                                                                                                  Evas_Object *
                                                                                                                  obj,
@@ -641,6 +740,12 @@ static void _vp_play_subtitle_color_popup_colorpalette_cb(void *data,
        VideoLogInfo("p = %s", pSubtitleColor->pCurrentColorHex);
 }
 
+/**
+ *
+ * @param data
+ * @param obj
+ * @param event_info
+ */
 static void _vp_play_subtitle_color_popup_colorplane_cb(void *data,
                                                                                                                Evas_Object * obj,
                                                                                                                void *event_info)
@@ -672,6 +777,11 @@ static void _vp_play_subtitle_color_popup_colorplane_cb(void *data,
 
 }
 
+/**
+ *
+ * @param layout
+ * @param pSubtitleColorPopup
+ */
 static void _vp_play_subtitle_color_popup_create_colorpalette(Evas_Object *
                                                                                                                          layout,
                                                                                                                          SubtitleColorPopup
@@ -742,6 +852,11 @@ static void _vp_play_subtitle_color_popup_create_colorpalette(Evas_Object *
 
 }
 
+/**
+ *
+ * @param pParent
+ * @return
+ */
 static Evas_Object
        *_vp_play_subtitle_color_popup_create_layout(Evas_Object * pParent)
 {
@@ -794,6 +909,10 @@ static Evas_Object
 
 }
 
+/**
+ *
+ * @param pSubtitleColorPopup
+ */
 static void _vp_play_subtitle_color_update_text(SubtitleColorPopup *
                                                                                                pSubtitleColorPopup)
 {
@@ -811,6 +930,12 @@ static void _vp_play_subtitle_color_update_text(SubtitleColorPopup *
 
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pEvent
+ */
 static void __vp_play_subtitle_color_btn_clicked_cb(void *pUserData,
                                                                                                        Evas_Object * pObj,
                                                                                                        void *pEvent)
@@ -852,6 +977,12 @@ static void __vp_play_subtitle_color_btn_clicked_cb(void *pUserData,
        }
 }
 
+/**
+ *
+ * @param pParent
+ * @param pUserData
+ * @return
+ */
 static bool _vp_play_subtitle_color_popup_create_button(Evas_Object *
                                                                                                                pParent,
                                                                                                                void *pUserData)
@@ -930,6 +1061,12 @@ static bool _vp_play_subtitle_color_popup_create_button(Evas_Object *
        return TRUE;
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pEventInfo
+ */
 static void __vp_play_subtitle_color_popup_slider_change_cb(void
                                                                                                                        *pUserData,
                                                                                                                        Evas_Object *
@@ -962,6 +1099,12 @@ static void __vp_play_subtitle_color_popup_slider_change_cb(void
 
 }
 
+/**
+ *
+ * @param pParent
+ * @param pUserData
+ * @return
+ */
 static Evas_Object
        *_vp_play_subtitle_color_popup_create_slider(Evas_Object * pParent,
                                                                                                  void *pUserData)
@@ -993,6 +1136,14 @@ subtitle_color_handle vp_subtitle_color_create(Evas_Object * pParent,
                                                                                           SubtitlePopupCloseCbFunc
                                                                                           pCloseCb, int nDefaultColor)
 #else
+
+/**
+ *
+ * @param pParent
+ * @param pCloseCb
+ * @param pDefaultColor
+ * @return
+ */
 subtitle_color_handle vp_subtitle_color_hex_create(Evas_Object * pParent,
                                                                                                   SubtitlePopupCloseCbFunc
                                                                                                   pCloseCb,
@@ -1184,6 +1335,10 @@ subtitle_color_handle vp_subtitle_color_hex_create(Evas_Object * pParent,
        return pSubtitleColor;
 }
 
+/**
+ *
+ * @param pSubtitleColorHandle
+ */
 void vp_subtitle_color_destroy(subtitle_color_handle pSubtitleColorHandle)
 {
        if (pSubtitleColorHandle == NULL) {
@@ -1198,6 +1353,11 @@ void vp_subtitle_color_destroy(subtitle_color_handle pSubtitleColorHandle)
 
 }
 
+/**
+ *
+ * @param pSubtitleColorHandle
+ * @return
+ */
 bool vp_subtitle_color_realize(subtitle_color_handle pSubtitleColorHandle)
 {
        if (pSubtitleColorHandle == NULL) {
@@ -1213,6 +1373,11 @@ bool vp_subtitle_color_realize(subtitle_color_handle pSubtitleColorHandle)
        return TRUE;
 }
 
+/**
+ *
+ * @param pSubtitleColorHandle
+ * @return
+ */
 bool vp_subtitle_color_unrealize(subtitle_color_handle
                                                                 pSubtitleColorHandle)
 {
@@ -1229,6 +1394,12 @@ bool vp_subtitle_color_unrealize(subtitle_color_handle
        return TRUE;
 }
 
+/**
+ *
+ * @param pSubtitleColorHandle
+ * @param pUserData
+ * @return
+ */
 bool vp_subtitle_color_set_user_data(subtitle_color_handle
                                                                         pSubtitleColorHandle, void *pUserData)
 {
index 7cc0287..8bd1bbd 100644 (file)
@@ -53,6 +53,12 @@ static void __vp_subtitle_edge_genlist_item_selected_cb(void *pUserData,
                                                                                                                pObject,
                                                                                                                void *pEventInfo);
 
+/**
+ *
+ * @param data
+ * @param obj
+ * @param event_info
+ */
 static void __vp_subtitle_edge_genlist_realized(void *data,
                                                                                                Evas_Object * obj,
                                                                                                void *event_info)
@@ -60,6 +66,12 @@ static void __vp_subtitle_edge_genlist_realized(void *data,
        VP_GENLIST_HIDE_BOTTOMLINE(data, obj, event_info);
 }
 
+/**
+ *
+ * @param data
+ * @param obj
+ * @param event_info
+ */
 static void __vp_subtitle_edge_popup_rotate_cb(void *data,
                                                                                           Evas_Object * obj,
                                                                                           void *event_info)
@@ -80,6 +92,13 @@ static void __vp_subtitle_edge_popup_rotate_cb(void *data,
 }
 
 /* callback functions */
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pPart
+ * @return
+ */
 static char *__vp_subtitle_edge_genlist_text_get_cb(const void *pUserData,
                                                                                                        Evas_Object * pObj,
                                                                                                        const char *pPart)
@@ -98,6 +117,13 @@ static char *__vp_subtitle_edge_genlist_text_get_cb(const void *pUserData,
        return NULL;
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pPart
+ * @return
+ */
 static Evas_Object *__vp_subtitle_edge_genlist_content_get_cb(const void
                                                                                                                          *pUserData,
                                                                                                                          Evas_Object *
@@ -149,6 +175,12 @@ static Evas_Object *__vp_subtitle_edge_genlist_content_get_cb(const void
        return NULL;
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObject
+ * @param pEventInfo
+ */
 static void __vp_subtitle_edge_genlist_item_selected_cb(void *pUserData,
                                                                                                                Evas_Object *
                                                                                                                pObject,
@@ -195,6 +227,12 @@ static void __vp_subtitle_edge_genlist_item_selected_cb(void *pUserData,
        }
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pEventInfo
+ */
 static void __vp_subtitle_edge_popup_key_event_cb(void *pUserData,
                                                                                                  Evas_Object * pObj,
                                                                                                  void *pEventInfo)
@@ -212,6 +250,13 @@ static void __vp_subtitle_edge_popup_key_event_cb(void *pUserData,
        }
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pEvas
+ * @param pObj
+ * @param pEventInfo
+ */
 static void __vp_subtitle_edge_popup_mouse_event_cb(void *pUserData,
                                                                                                        Evas * pEvas,
                                                                                                        Evas_Object * pObj,
@@ -239,9 +284,11 @@ static void __vp_subtitle_edge_popup_mouse_event_cb(void *pUserData,
        }
 }
 
-
-
 /* internal functions */
+/**
+ *
+ * @param pSubtitleEdge
+ */
 static void _vp_subtitle_edge_destroy_handle(SubtitleEdgePopup *
                                                                                         pSubtitleEdge)
 {
@@ -271,7 +318,11 @@ static void _vp_subtitle_edge_destroy_handle(SubtitleEdgePopup *
        VP_FREE(pSubtitleEdge);
 }
 
-
+/**
+ *
+ * @param pParent
+ * @return
+ */
 static Evas_Object *_vp_subtitle_edge_create_genlist(Evas_Object * pParent)
 {
        if (pParent == NULL) {
@@ -289,7 +340,12 @@ static Evas_Object *_vp_subtitle_edge_create_genlist(Evas_Object * pParent)
        return pObj;
 }
 
-
+/**
+ *
+ * @param pObj
+ * @param pUserData
+ * @return
+ */
 static bool _vp_subtitle_edge_add_genlist_item(Evas_Object * pObj,
                                                                                           void *pUserData)
 {
@@ -356,6 +412,13 @@ static bool _vp_subtitle_edge_add_genlist_item(Evas_Object * pObj,
 }
 
 /* external functions */
+/**
+ *
+ * @param pParent
+ * @param pCloseCb
+ * @param nDefaultSize
+ * @return
+ */
 subtitle_edge_handle vp_subtitle_edge_create(Evas_Object * pParent,
                                                                                         PopupCloseCbFunc pCloseCb,
                                                                                         int nDefaultSize)
@@ -429,6 +492,10 @@ subtitle_edge_handle vp_subtitle_edge_create(Evas_Object * pParent,
        return pSubtitleEdge;
 }
 
+/**
+ *
+ * @param pSubtitleEdgeHandle
+ */
 void vp_subtitle_edge_destroy(subtitle_edge_handle pSubtitleEdgeHandle)
 {
        if (pSubtitleEdgeHandle == NULL) {
@@ -443,6 +510,11 @@ void vp_subtitle_edge_destroy(subtitle_edge_handle pSubtitleEdgeHandle)
 
 }
 
+/**
+ *
+ * @param pSubtitleEdgeHandle
+ * @return
+ */
 bool vp_subtitle_edge_realize(subtitle_edge_handle pSubtitleEdgeHandle)
 {
        if (pSubtitleEdgeHandle == NULL) {
@@ -458,6 +530,11 @@ bool vp_subtitle_edge_realize(subtitle_edge_handle pSubtitleEdgeHandle)
        return TRUE;
 }
 
+/**
+ *
+ * @param pSubtitleEdgeHandle
+ * @return
+ */
 bool vp_subtitle_edge_unrealize(subtitle_edge_handle pSubtitleEdgeHandle)
 {
        if (pSubtitleEdgeHandle == NULL) {
@@ -473,6 +550,12 @@ bool vp_subtitle_edge_unrealize(subtitle_edge_handle pSubtitleEdgeHandle)
        return TRUE;
 }
 
+/**
+ *
+ * @param pSubtitleEdgeHandle
+ * @param pUserData
+ * @return
+ */
 bool vp_subtitle_edge_set_user_data(subtitle_edge_handle
                                                                        pSubtitleEdgeHandle, void *pUserData)
 {
index c9474da..dae7ded 100644 (file)
@@ -66,6 +66,12 @@ static void __vp_subtitle_font_genlist_item_selected_cb(void *pUserData,
                                                                                                                pObject,
                                                                                                                void *pEventInfo);
 
+/**
+ *
+ * @param data
+ * @param obj
+ * @param event_info
+ */
 static void __vp_subtitle_font_genlist_realized(void *data,
                                                                                                Evas_Object * obj,
                                                                                                void *event_info)
@@ -73,6 +79,12 @@ static void __vp_subtitle_font_genlist_realized(void *data,
        VP_GENLIST_HIDE_BOTTOMLINE(data, obj, event_info);
 }
 
+/**
+ *
+ * @param data
+ * @param obj
+ * @param event_info
+ */
 static void __vp_subtitle_font_popup_rotate_cb(void *data,
                                                                                           Evas_Object * obj,
                                                                                           void *event_info)
@@ -93,6 +105,13 @@ static void __vp_subtitle_font_popup_rotate_cb(void *data,
 }
 
 /* callback functions */
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pPart
+ * @return
+ */
 static char *__vp_subtitle_font_genlist_text_get_cb(const void *pUserData,
                                                                                                        Evas_Object * pObj,
                                                                                                        const char *pPart)
@@ -149,6 +168,13 @@ static char *__vp_subtitle_font_genlist_text_get_cb(const void *pUserData,
        return NULL;
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pPart
+ * @return
+ */
 static Evas_Object *__vp_subtitle_font_genlist_content_get_cb(const void
                                                                                                                          *pUserData,
                                                                                                                          Evas_Object *
@@ -207,6 +233,12 @@ static Evas_Object *__vp_subtitle_font_genlist_content_get_cb(const void
        return NULL;
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObject
+ * @param pEventInfo
+ */
 static void __vp_subtitle_font_genlist_item_selected_cb(void *pUserData,
                                                                                                                Evas_Object *
                                                                                                                pObject,
@@ -265,6 +297,12 @@ static void __vp_subtitle_font_genlist_item_selected_cb(void *pUserData,
        }
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pEventInfo
+ */
 static void __vp_subtitle_font_popup_key_event_cb(void *pUserData,
                                                                                                  Evas_Object * pObj,
                                                                                                  void *pEventInfo)
@@ -281,6 +319,13 @@ static void __vp_subtitle_font_popup_key_event_cb(void *pUserData,
        }
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pEvas
+ * @param pObj
+ * @param pEventInfo
+ */
 static void __vp_subtitle_font_popup_mouse_event_cb(void *pUserData,
                                                                                                        Evas * pEvas,
                                                                                                        Evas_Object * pObj,
@@ -308,9 +353,11 @@ static void __vp_subtitle_font_popup_mouse_event_cb(void *pUserData,
        }
 }
 
-
-
 /* internal functions */
+/**
+ *
+ * @param pSubtitleFont
+ */
 static void _vp_subtitle_font_destroy_handle(SubtitleFontPopup *
                                                                                         pSubtitleFont)
 {
@@ -353,7 +400,11 @@ static void _vp_subtitle_font_destroy_handle(SubtitleFontPopup *
 
 }
 
-
+/**
+ *
+ * @param pParent
+ * @return
+ */
 static Evas_Object *_vp_subtitle_font_create_genlist(Evas_Object * pParent)
 {
        if (pParent == NULL) {
@@ -371,6 +422,12 @@ static Evas_Object *_vp_subtitle_font_create_genlist(Evas_Object * pParent)
        return pObj;
 }
 
+/**
+ *
+ * @param pObj
+ * @param pUserData
+ * @return
+ */
 static bool _vp_subtitle_font_add_genlist_item(Evas_Object * pObj,
                                                                                           void *pUserData)
 {
@@ -429,6 +486,11 @@ static bool _vp_subtitle_font_add_genlist_item(Evas_Object * pObj,
        return TRUE;
 }
 
+/**
+ *
+ * @param pSubtitleFont
+ * @return
+ */
 static bool __vp_subtitle_font_load_font_list(SubtitleFontPopup *
                                                                                          pSubtitleFont)
 {
@@ -563,8 +625,14 @@ static bool __vp_subtitle_font_load_font_list(SubtitleFontPopup *
        return TRUE;
 }
 
-
 /* external functions */
+/**
+ *
+ * @param pParent
+ * @param pCloseCb
+ * @param szCurrentFont
+ * @return
+ */
 subtitle_font_handle vp_subtitle_font_create(Evas_Object * pParent,
                                                                                         SubtitleFontCbFunc pCloseCb,
                                                                                         char *szCurrentFont)
@@ -649,6 +717,10 @@ subtitle_font_handle vp_subtitle_font_create(Evas_Object * pParent,
        return pSubtitleFont;
 }
 
+/**
+ *
+ * @param pSubtitleFontHandle
+ */
 void vp_subtitle_font_destroy(subtitle_font_handle pSubtitleFontHandle)
 {
        if (pSubtitleFontHandle == NULL) {
@@ -663,6 +735,11 @@ void vp_subtitle_font_destroy(subtitle_font_handle pSubtitleFontHandle)
 
 }
 
+/**
+ *
+ * @param pSubtitleFontHandle
+ * @return
+ */
 bool vp_subtitle_font_realize(subtitle_font_handle pSubtitleFontHandle)
 {
        if (pSubtitleFontHandle == NULL) {
@@ -678,6 +755,11 @@ bool vp_subtitle_font_realize(subtitle_font_handle pSubtitleFontHandle)
        return TRUE;
 }
 
+/**
+ *
+ * @param pSubtitleFontHandle
+ * @return
+ */
 bool vp_subtitle_font_unrealize(subtitle_font_handle pSubtitleFontHandle)
 {
        if (pSubtitleFontHandle == NULL) {
@@ -693,6 +775,12 @@ bool vp_subtitle_font_unrealize(subtitle_font_handle pSubtitleFontHandle)
        return TRUE;
 }
 
+/**
+ *
+ * @param pSubtitleFontHandle
+ * @param pUserData
+ * @return
+ */
 bool vp_subtitle_font_set_user_data(subtitle_font_handle
                                                                        pSubtitleFontHandle, void *pUserData)
 {
index 42d868a..134b42c 100644 (file)
@@ -58,6 +58,12 @@ static void __vp_subtitle_select_genlist_item_selected_cb(void *pUserData,
                                                                                                                  void
                                                                                                                  *pEventInfo);
 
+/**
+ *
+ * @param data
+ * @param obj
+ * @param event_info
+ */
 static void __vp_subtitle_select_genlist_realized(void *data,
                                                                                                  Evas_Object * obj,
                                                                                                  void *event_info)
@@ -65,6 +71,12 @@ static void __vp_subtitle_select_genlist_realized(void *data,
        VP_GENLIST_HIDE_BOTTOMLINE(data, obj, event_info);
 }
 
+/**
+ *
+ * @param data
+ * @param obj
+ * @param event_info
+ */
 static void __vp_subtitle_select_popup_rotate_cb(void *data,
                                                                                                 Evas_Object * obj,
                                                                                                 void *event_info)
@@ -83,8 +95,14 @@ static void __vp_subtitle_select_popup_rotate_cb(void *data,
                                                                VIDEO_POPUP_2_TEXT_1_ICON);
 }
 
-
 /* callback functions */
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pPart
+ * @return
+ */
 static char *__vp_subtitle_select_genlist_text_get_cb(const void
                                                                                                          *pUserData,
                                                                                                          Evas_Object * pObj,
@@ -107,6 +125,13 @@ static char *__vp_subtitle_select_genlist_text_get_cb(const void
        return NULL;
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pPart
+ * @return
+ */
 static Evas_Object *__vp_subtitle_select_genlist_content_get_cb(const void
                                                                                                                                *pUserData,
                                                                                                                                Evas_Object
@@ -175,6 +200,12 @@ static Evas_Object *__vp_subtitle_select_genlist_content_get_cb(const void
        return NULL;
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObject
+ * @param pEventInfo
+ */
 static void __vp_subtitle_select_genlist_item_selected_cb(void *pUserData,
                                                                                                                  Evas_Object *
                                                                                                                  pObject,
@@ -235,7 +266,12 @@ static void __vp_subtitle_select_genlist_item_selected_cb(void *pUserData,
        }
 }
 
-
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pEventInfo
+ */
 static void __vp_subtitle_select_popup_cancel_cb(void *pUserData,
                                                                                                 Evas_Object * pObj,
                                                                                                 void *pEventInfo)
@@ -254,6 +290,12 @@ static void __vp_subtitle_select_popup_cancel_cb(void *pUserData,
        }
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pEventInfo
+ */
 static void __vp_subtitle_select_popup_settings_cb(void *pUserData,
                                                                                                   Evas_Object * pObj,
                                                                                                   void *pEventInfo)
@@ -272,8 +314,11 @@ static void __vp_subtitle_select_popup_settings_cb(void *pUserData,
        }
 }
 
-
 /* internal functions */
+/**
+ *
+ * @param pSubtitleSelect
+ */
 static void _vp_subtitle_select_destroy_handle(SubtitleSelectPopup *
                                                                                           pSubtitleSelect)
 {
@@ -316,7 +361,11 @@ static void _vp_subtitle_select_destroy_handle(SubtitleSelectPopup *
        VP_FREE(pSubtitleSelect);
 }
 
-
+/**
+ *
+ * @param pParent
+ * @return
+ */
 static Evas_Object *_vp_subtitle_select_create_genlist(Evas_Object *
                                                                                                           pParent)
 {
@@ -336,6 +385,12 @@ static Evas_Object *_vp_subtitle_select_create_genlist(Evas_Object *
 }
 
 
+/**
+ *
+ * @param pObj
+ * @param pUserData
+ * @return
+ */
 static bool _vp_subtitle_select_add_genlist_item(Evas_Object * pObj,
                                                                                                 void *pUserData)
 {
@@ -396,8 +451,17 @@ static bool _vp_subtitle_select_add_genlist_item(Evas_Object * pObj,
        return TRUE;
 }
 
-
 /* external functions */
+/**
+ *
+ * @param pParent
+ * @param pCloseCb
+ * @param pButtonCb
+ * @param pFileList
+ * @param szCurrentPath
+ * @param isSubtitleOff
+ * @return
+ */
 subtitle_select_handle vp_subtitle_select_create(Evas_Object * pParent,
                                                                                                 SubtitleCloseCbFunc
                                                                                                 pCloseCb,
@@ -540,6 +604,10 @@ subtitle_select_handle vp_subtitle_select_create(Evas_Object * pParent,
        return pSubtitleSelect;
 }
 
+/**
+ *
+ * @param pSubtitleSelectHandle
+ */
 void vp_subtitle_select_destroy(subtitle_select_handle
                                                                pSubtitleSelectHandle)
 {
@@ -554,6 +622,11 @@ void vp_subtitle_select_destroy(subtitle_select_handle
        _vp_subtitle_select_destroy_handle(pSubtitleSelect);
 }
 
+/**
+ *
+ * @param pSubtitleSelectHandle
+ * @return
+ */
 bool vp_subtitle_select_realize(subtitle_select_handle
                                                                pSubtitleSelectHandle)
 {
@@ -570,6 +643,11 @@ bool vp_subtitle_select_realize(subtitle_select_handle
        return TRUE;
 }
 
+/**
+ *
+ * @param pSubtitleSelectHandle
+ * @return
+ */
 bool vp_subtitle_select_unrealize(subtitle_select_handle
                                                                  pSubtitleSelectHandle)
 {
@@ -586,6 +664,12 @@ bool vp_subtitle_select_unrealize(subtitle_select_handle
        return TRUE;
 }
 
+/**
+ *
+ * @param pSubtitleSelectHandle
+ * @param pUserData
+ * @return
+ */
 bool vp_subtitle_select_set_user_data(subtitle_select_handle
                                                                          pSubtitleSelectHandle,
                                                                          void *pUserData)
index e388d5c..e4ac0c6 100644 (file)
@@ -52,6 +52,12 @@ static void __vp_subtitle_size_genlist_item_selected_cb(void *pUserData,
                                                                                                                pObject,
                                                                                                                void *pEventInfo);
 
+/**
+ * .
+ * @param data
+ * @param obj
+ * @param event_info
+ */
 static void __vp_subtitle_size_genlist_realized(void *data,
                                                                                                Evas_Object * obj,
                                                                                                void *event_info)
@@ -59,6 +65,12 @@ static void __vp_subtitle_size_genlist_realized(void *data,
        VP_GENLIST_HIDE_BOTTOMLINE(data, obj, event_info);
 }
 
+/**
+ *
+ * @param data
+ * @param obj
+ * @param event_info
+ */
 static void __vp_subtitle_size_popup_rotate_cb(void *data,
                                                                                           Evas_Object * obj,
                                                                                           void *event_info)
@@ -79,6 +91,13 @@ static void __vp_subtitle_size_popup_rotate_cb(void *data,
 }
 
 /* callback functions */
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pPart
+ * @return
+ */
 static char *__vp_subtitle_size_genlist_text_get_cb(const void *pUserData,
                                                                                                        Evas_Object * pObj,
                                                                                                        const char *pPart)
@@ -111,6 +130,13 @@ static char *__vp_subtitle_size_genlist_text_get_cb(const void *pUserData,
        return NULL;
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pPart
+ * @return
+ */
 static Evas_Object *__vp_subtitle_size_genlist_content_get_cb(const void
                                                                                                                          *pUserData,
                                                                                                                          Evas_Object *
@@ -160,6 +186,12 @@ static Evas_Object *__vp_subtitle_size_genlist_content_get_cb(const void
        return NULL;
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObject
+ * @param pEventInfo
+ */
 static void __vp_subtitle_size_genlist_item_selected_cb(void *pUserData,
                                                                                                                Evas_Object *
                                                                                                                pObject,
@@ -204,6 +236,12 @@ static void __vp_subtitle_size_genlist_item_selected_cb(void *pUserData,
        }
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pEventInfo
+ */
 static void __vp_subtitle_size_popup_key_event_cb(void *pUserData,
                                                                                                  Evas_Object * pObj,
                                                                                                  void *pEventInfo)
@@ -221,6 +259,13 @@ static void __vp_subtitle_size_popup_key_event_cb(void *pUserData,
        }
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pEvas
+ * @param pObj
+ * @param pEventInfo
+ */
 static void __vp_subtitle_size_popup_mouse_event_cb(void *pUserData,
                                                                                                        Evas * pEvas,
                                                                                                        Evas_Object * pObj,
@@ -248,9 +293,11 @@ static void __vp_subtitle_size_popup_mouse_event_cb(void *pUserData,
        }
 }
 
-
-
 /* internal functions */
+/**
+ *
+ * @param pSubtitleSize
+ */
 static void _vp_subtitle_size_destroy_handle(SubtitleSizePopup *
                                                                                         pSubtitleSize)
 {
@@ -280,7 +327,11 @@ static void _vp_subtitle_size_destroy_handle(SubtitleSizePopup *
        VP_FREE(pSubtitleSize);
 }
 
-
+/**
+ *
+ * @param pParent
+ * @return
+ */
 static Evas_Object *_vp_subtitle_size_create_genlist(Evas_Object * pParent)
 {
        if (pParent == NULL) {
@@ -298,7 +349,12 @@ static Evas_Object *_vp_subtitle_size_create_genlist(Evas_Object * pParent)
        return pObj;
 }
 
-
+/**
+ *
+ * @param pObj
+ * @param pUserData
+ * @return
+ */
 static bool _vp_subtitle_size_add_genlist_item(Evas_Object * pObj,
                                                                                           void *pUserData)
 {
@@ -356,6 +412,13 @@ static bool _vp_subtitle_size_add_genlist_item(Evas_Object * pObj,
 }
 
 /* external functions */
+/**
+ *
+ * @param pParent
+ * @param pCloseCb
+ * @param nDefaultSize
+ * @return
+ */
 subtitle_size_handle vp_subtitle_size_create(Evas_Object * pParent,
                                                                                         PopupCloseCbFunc pCloseCb,
                                                                                         int nDefaultSize)
@@ -429,6 +492,10 @@ subtitle_size_handle vp_subtitle_size_create(Evas_Object * pParent,
        return pSubtitleSize;
 }
 
+/**
+ *
+ * @param pSubtitleSizeHandle
+ */
 void vp_subtitle_size_destroy(subtitle_size_handle pSubtitleSizeHandle)
 {
        if (pSubtitleSizeHandle == NULL) {
@@ -443,6 +510,11 @@ void vp_subtitle_size_destroy(subtitle_size_handle pSubtitleSizeHandle)
 
 }
 
+/**
+ *
+ * @param pSubtitleSizeHandle
+ * @return
+ */
 bool vp_subtitle_size_realize(subtitle_size_handle pSubtitleSizeHandle)
 {
        if (pSubtitleSizeHandle == NULL) {
@@ -458,6 +530,11 @@ bool vp_subtitle_size_realize(subtitle_size_handle pSubtitleSizeHandle)
        return TRUE;
 }
 
+/**
+ *
+ * @param pSubtitleSizeHandle
+ * @return
+ */
 bool vp_subtitle_size_unrealize(subtitle_size_handle pSubtitleSizeHandle)
 {
        if (pSubtitleSizeHandle == NULL) {
@@ -473,6 +550,12 @@ bool vp_subtitle_size_unrealize(subtitle_size_handle pSubtitleSizeHandle)
        return TRUE;
 }
 
+/**
+ *
+ * @param pSubtitleSizeHandle
+ * @param pUserData
+ * @return
+ */
 bool vp_subtitle_size_set_user_data(subtitle_size_handle
                                                                        pSubtitleSizeHandle, void *pUserData)
 {
index 95b2378..2c77cbc 100644 (file)
@@ -55,7 +55,12 @@ static void _vp_subtitle_sync_update_text(SubtitleSyncPopup *
 
 
 /* callback functions */
-
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pEventInfo
+ */
 static void __vp_subtitle_sync_popup_ok_btn_cb(void *pUserData,
                                                                                           Evas_Object * pObj,
                                                                                           void *pEventInfo)
@@ -75,6 +80,12 @@ static void __vp_subtitle_sync_popup_ok_btn_cb(void *pUserData,
        }
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pEventInfo
+ */
 static void __vp_subtitle_sync_popup_cancel_btn_cb(void *pUserData,
                                                                                                   Evas_Object * pObj,
                                                                                                   void *pEventInfo)
@@ -94,7 +105,12 @@ static void __vp_subtitle_sync_popup_cancel_btn_cb(void *pUserData,
        }
 }
 
-
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pEventInfo
+ */
 static void __vp_subtitle_sync_popup_key_event_cb(void *pUserData,
                                                                                                  Evas_Object * pObj,
                                                                                                  void *pEventInfo)
@@ -115,6 +131,13 @@ static void __vp_subtitle_sync_popup_key_event_cb(void *pUserData,
 
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pEvas
+ * @param pObj
+ * @param pEventInfo
+ */
 static void __vp_subtitle_sync_popup_mouse_event_cb(void *pUserData,
                                                                                                        Evas * pEvas,
                                                                                                        Evas_Object * pObj,
@@ -145,6 +168,12 @@ static void __vp_subtitle_sync_popup_mouse_event_cb(void *pUserData,
        }
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pEventInfo
+ */
 static void __vp_subtitle_sync_popup_slider_change_cb(void *pUserData,
                                                                                                          Evas_Object * pObj,
                                                                                                          void *pEventInfo)
@@ -171,6 +200,12 @@ static void __vp_subtitle_sync_popup_slider_change_cb(void *pUserData,
        }
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pEvent
+ */
 static void __vp_subtitle_sync_btn_clicked_cb(void *pUserData,
                                                                                          Evas_Object * pObj,
                                                                                          void *pEvent)
@@ -218,9 +253,11 @@ static void __vp_subtitle_sync_btn_clicked_cb(void *pUserData,
        }
 }
 
-
-
 /* internal functions */
+/**
+ *
+ * @param pSubtitleSyncPopup
+ */
 static void _vp_subtitle_sync_popup_destroy_handle(SubtitleSyncPopup *
                                                                                                   pSubtitleSyncPopup)
 {
@@ -242,6 +279,10 @@ static void _vp_subtitle_sync_popup_destroy_handle(SubtitleSyncPopup *
        VP_FREE(pSubtitleSyncPopup);
 }
 
+/**
+ *
+ * @param pSubtitleSyncPopup
+ */
 static void _vp_subtitle_sync_update_text(SubtitleSyncPopup *
                                                                                  pSubtitleSyncPopup)
 {
@@ -259,6 +300,12 @@ static void _vp_subtitle_sync_update_text(SubtitleSyncPopup *
 }
 
 
+/**
+ *
+ * @param pParent
+ * @param pUserData
+ * @return
+ */
 static Evas_Object *_vp_subtitle_sync_popup_create_ok_button(Evas_Object *
                                                                                                                         pParent,
                                                                                                                         void
@@ -283,7 +330,12 @@ static Evas_Object *_vp_subtitle_sync_popup_create_ok_button(Evas_Object *
        return pObj;
 }
 
-
+/**
+ *
+ * @param pParent
+ * @param pUserData
+ * @return
+ */
 static Evas_Object
        *_vp_subtitle_sync_popup_create_cancel_button(Evas_Object * pParent,
                                                                                                   void *pUserData)
@@ -307,6 +359,12 @@ static Evas_Object
        return pObj;
 }
 
+/**
+ *
+ * @param pParent
+ * @param pUserData
+ * @return
+ */
 static Evas_Object *_vp_subtitle_sync_popup_create_slider(Evas_Object *
                                                                                                                  pParent,
                                                                                                                  void *pUserData)
@@ -332,6 +390,12 @@ static Evas_Object *_vp_subtitle_sync_popup_create_slider(Evas_Object *
        return pObj;
 }
 
+/**
+ *
+ * @param pParent
+ * @param pUserData
+ * @return
+ */
 static bool _vp_subtitle_sync_popup_create_button(Evas_Object * pParent,
                                                                                                  void *pUserData)
 {
@@ -410,6 +474,11 @@ static bool _vp_subtitle_sync_popup_create_button(Evas_Object * pParent,
        return TRUE;
 }
 
+/**
+ *
+ * @param pParent
+ * @return
+ */
 static Evas_Object *_vp_subtitle_sync_popup_create_layout(Evas_Object *
                                                                                                                  pParent)
 {
@@ -443,9 +512,15 @@ static Evas_Object *_vp_subtitle_sync_popup_create_layout(Evas_Object *
 
 }
 
-
-
 /* external functions */
+/**
+ *
+ * @param pParent
+ * @param fSyncVal
+ * @param pUpdateCb
+ * @param pDoneCb
+ * @return
+ */
 subtitle_sync_popup vp_subtitle_sync_popup_create(Evas_Object * pParent,
                                                                                                  float fSyncVal,
                                                                                                  SubtitleSyncUpdateCbFunc
@@ -542,6 +617,10 @@ subtitle_sync_popup vp_subtitle_sync_popup_create(Evas_Object * pParent,
        return pSubtitleSyncPopup;
 }
 
+/**
+ *
+ * @param pSubtitleSync
+ */
 void vp_subtitle_sync_popup_destroy(subtitle_sync_popup pSubtitleSync)
 {
        if (pSubtitleSync == NULL) {
@@ -556,6 +635,11 @@ void vp_subtitle_sync_popup_destroy(subtitle_sync_popup pSubtitleSync)
 
 }
 
+/**
+ *
+ * @param pSubtitleSync
+ * @return
+ */
 bool vp_subtitle_sync_popup_realize(subtitle_sync_popup pSubtitleSync)
 {
        if (pSubtitleSync == NULL) {
@@ -572,6 +656,11 @@ bool vp_subtitle_sync_popup_realize(subtitle_sync_popup pSubtitleSync)
 }
 
 
+/**
+ *
+ * @param pSubtitleSync
+ * @return
+ */
 bool vp_subtitle_sync_popup_unrealize(subtitle_sync_popup pSubtitleSync)
 {
        if (pSubtitleSync == NULL) {
@@ -588,7 +677,12 @@ bool vp_subtitle_sync_popup_unrealize(subtitle_sync_popup pSubtitleSync)
 }
 
 
-
+/**
+ *
+ * @param pSubtitleSync
+ * @param pUserData
+ * @return
+ */
 bool vp_subtitle_sync_popup_set_user_data(subtitle_sync_popup
                                                                                  pSubtitleSync, void *pUserData)
 {
index af50f3f..0633f37 100644 (file)
@@ -79,6 +79,12 @@ static void __vp_subtitle_track_genlist_item_selected_cb(void *pUserData,
                                                                                                                 pObject, void
                                                                                                                 *pEventInfo);
 #endif
+/**
+ *
+ * @param data
+ * @param obj
+ * @param event_info
+ */
 static void __vp_subtitle_track_genlist_realized(void *data,
                                                                                                 Evas_Object * obj,
                                                                                                 void *event_info)
@@ -86,6 +92,12 @@ static void __vp_subtitle_track_genlist_realized(void *data,
        VP_GENLIST_HIDE_BOTTOMLINE(data, obj, event_info);
 }
 
+/**
+ *
+ * @param data
+ * @param obj
+ * @param event_info
+ */
 static void __vp_subtitle_track_popup_rotate_cb(void *data,
                                                                                                Evas_Object * obj,
                                                                                                void *event_info)
@@ -106,6 +118,13 @@ static void __vp_subtitle_track_popup_rotate_cb(void *data,
 }
 
 /* callback functions */
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pPart
+ * @return
+ */
 static char *__vp_subtitle_track_genlist_text_get_cb(const void
                                                                                                         *pUserData,
                                                                                                         Evas_Object * pObj,
@@ -124,6 +143,13 @@ static char *__vp_subtitle_track_genlist_text_get_cb(const void
        return NULL;
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pPart
+ * @return
+ */
 static Evas_Object *__vp_subtitle_track_genlist_content_get_cb(const void
                                                                                                                           *pUserData,
                                                                                                                           Evas_Object
@@ -175,6 +201,11 @@ static Evas_Object *__vp_subtitle_track_genlist_content_get_cb(const void
 }
 
 #ifdef _SUBTITLE_MULTI_LANGUAGE
+/**
+ *
+ * @param pSubtitleTrackPopup
+ * @return
+ */
 static bool __vp_subtitle_track_select_no_item(SubtitleTrackPopup *
                                                                                           pSubtitleTrackPopup)
 {
@@ -204,6 +235,11 @@ static bool __vp_subtitle_track_select_no_item(SubtitleTrackPopup *
        return ret;
 }
 
+/**
+ *
+ * @param pSubtitleTrackPopup
+ * @param bDisabled
+ */
 static void __vp_subtitle_track_popup_disable_button(SubtitleTrackPopup *
                                                                                                         pSubtitleTrackPopup,
                                                                                                         bool bDisabled)
@@ -226,6 +262,12 @@ static void __vp_subtitle_track_popup_disable_button(SubtitleTrackPopup *
        }
 }
 #endif
+/**
+ *
+ * @param pUserData
+ * @param pObject
+ * @param pEventInfo
+ */
 static void __vp_subtitle_track_genlist_item_selected_cb(void *pUserData,
                                                                                                                 Evas_Object *
                                                                                                                 pObject,
@@ -284,6 +326,12 @@ static void __vp_subtitle_track_genlist_item_selected_cb(void *pUserData,
 }
 
 #ifdef _SUBTITLE_MULTI_LANGUAGE
+/**
+ *
+ * @param pUserData
+ * @param pObject
+ * @param pEventInfo
+ */
 static void __vp_subtitle_track_popup_check_state_change_cb(void
                                                                                                                        *pUserData,
                                                                                                                        Evas_Object *
@@ -317,6 +365,12 @@ static void __vp_subtitle_track_popup_check_state_change_cb(void
        }
 }
 #endif
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pEventInfo
+ */
 static void __vp_subtitle_track_popup_key_event_cb(void *pUserData,
                                                                                                   Evas_Object * pObj,
                                                                                                   void *pEventInfo)
@@ -335,6 +389,13 @@ static void __vp_subtitle_track_popup_key_event_cb(void *pUserData,
 }
 
 #ifndef _SUBTITLE_MULTI_LANGUAGE
+/**
+ *
+ * @param pUserData
+ * @param pEvas
+ * @param pObj
+ * @param pEventInfo
+ */
 static void __vp_subtitle_track_popup_mouse_event_cb(void *pUserData,
                                                                                                         Evas * pEvas,
                                                                                                         Evas_Object * pObj,
@@ -364,6 +425,10 @@ static void __vp_subtitle_track_popup_mouse_event_cb(void *pUserData,
 }
 #endif
 /* internal functions */
+/**
+ *
+ * @param pSubtitleTrack
+ */
 static void _vp_subtitle_track_clear_item_list(SubtitleTrackPopup *
                                                                                           pSubtitleTrack)
 {
@@ -399,6 +464,10 @@ static void _vp_subtitle_track_clear_item_list(SubtitleTrackPopup *
        pSubtitleTrack->pItemList = NULL;
 }
 
+/**
+ *
+ * @param pSubtitleTrack
+ */
 static void _vp_subtitle_track_destroy_handle(SubtitleTrackPopup *
                                                                                          pSubtitleTrack)
 {
@@ -431,6 +500,11 @@ static void _vp_subtitle_track_destroy_handle(SubtitleTrackPopup *
        VP_FREE(pSubtitleTrack);
 }
 
+/**
+ *
+ * @param pParent
+ * @return
+ */
 static Evas_Object *_vp_subtitle_track_create_genlist(Evas_Object *
                                                                                                          pParent)
 {
@@ -450,6 +524,12 @@ static Evas_Object *_vp_subtitle_track_create_genlist(Evas_Object *
 }
 
 
+/**
+ *
+ * @param pObj
+ * @param pUserData
+ * @return
+ */
 static bool _vp_subtitle_track_add_genlist_item(Evas_Object * pObj,
                                                                                                void *pUserData)
 {
@@ -505,6 +585,12 @@ static bool _vp_subtitle_track_add_genlist_item(Evas_Object * pObj,
 }
 
 #ifdef _SUBTITLE_MULTI_LANGUAGE
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pEventInfo
+ */
 static void __vp_subtitle_track_popup_left_button_cb(void *pUserData,
                                                                                                         Evas_Object * pObj,
                                                                                                         void *pEventInfo)
@@ -522,6 +608,12 @@ static void __vp_subtitle_track_popup_left_button_cb(void *pUserData,
        }
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pEventInfo
+ */
 static void __vp_subtitle_track_popup_right_button_cb(void *pUserData,
                                                                                                          Evas_Object * pObj,
                                                                                                          void *pEventInfo)
@@ -573,6 +665,13 @@ static void __vp_subtitle_track_popup_right_button_cb(void *pUserData,
 subtitle_track_handle vp_subtitle_track_create(Evas_Object * pParent,
                                                                                           PopupCloseCbFunc pCloseCb)
 #else
+/**
+ *
+ * @param pParent
+ * @param pCloseCb
+ * @param nDefaultIndex
+ * @return
+ */
 subtitle_track_handle vp_subtitle_track_create(Evas_Object * pParent,
                                                                                           PopupCloseCbFunc pCloseCb,
                                                                                           int nDefaultIndex)
@@ -653,6 +752,10 @@ subtitle_track_handle vp_subtitle_track_create(Evas_Object * pParent,
        return pSubtitleTrack;
 }
 
+/**
+ *
+ * @param pSubtitleTrackHandle
+ */
 void vp_subtitle_track_destroy(subtitle_track_handle pSubtitleTrackHandle)
 {
        if (pSubtitleTrackHandle == NULL) {
@@ -667,6 +770,11 @@ void vp_subtitle_track_destroy(subtitle_track_handle pSubtitleTrackHandle)
 
 }
 
+/**
+ *
+ * @param pSubtitleTrackHandle
+ * @return
+ */
 bool vp_subtitle_track_realize(subtitle_track_handle pSubtitleTrackHandle)
 {
        if (pSubtitleTrackHandle == NULL) {
@@ -705,6 +813,11 @@ bool vp_subtitle_track_realize(subtitle_track_handle pSubtitleTrackHandle)
        return TRUE;
 }
 
+/**
+ *
+ * @param pSubtitleTrackHandle
+ * @return
+ */
 bool vp_subtitle_track_unrealize(subtitle_track_handle
                                                                 pSubtitleTrackHandle)
 {
@@ -728,6 +841,13 @@ bool vp_subtitle_track_add_Item(subtitle_track_handle
                                                                pSubtitleTrackHandle, char *szCode,
                                                                int nIndex, bool bCheck)
 #else
+/**
+ *
+ * @param pSubtitleTrackHandle
+ * @param szCode
+ * @param nIndex
+ * @return
+ */
 bool vp_subtitle_track_add_Item(subtitle_track_handle
                                                                pSubtitleTrackHandle, char *szCode,
                                                                int nIndex)
@@ -767,6 +887,12 @@ bool vp_subtitle_track_add_Item(subtitle_track_handle
        return TRUE;
 }
 
+/**
+ *
+ * @param pSubtitleTrackHandle
+ * @param pUserData
+ * @return
+ */
 bool vp_subtitle_track_set_user_data(subtitle_track_handle
                                                                         pSubtitleTrackHandle, void *pUserData)
 {
@@ -784,6 +910,12 @@ bool vp_subtitle_track_set_user_data(subtitle_track_handle
 }
 
 #ifdef _SUBTITLE_MULTI_LANGUAGE
+/**
+ *
+ * @param pSubtitleTrackHandle
+ * @param pCallback
+ * @return
+ */
 bool vp_subtitle_track_set_add_language_cb(subtitle_track_handle
                                                                                   pSubtitleTrackHandle,
                                                                                   SubtitleLanguageChangeCbFunc
@@ -802,6 +934,12 @@ bool vp_subtitle_track_set_add_language_cb(subtitle_track_handle
        return TRUE;
 }
 
+/**
+ *
+ * @param pSubtitleTrackHandle
+ * @param pCallback
+ * @return
+ */
 bool vp_subtitle_track_set_remove_language_cb(subtitle_track_handle
                                                                                          pSubtitleTrackHandle,
                                                                                          SubtitleLanguageChangeCbFunc
@@ -820,6 +958,12 @@ bool vp_subtitle_track_set_remove_language_cb(subtitle_track_handle
        return TRUE;
 }
 #endif
+/**
+ *
+ * @param szCode
+ * @param szName
+ * @return
+ */
 bool vp_subtitle_track_get_name(char *szCode, char **szName)
 {
        if (szCode == NULL) {
index 7ed4892..4dbebd8 100644 (file)
@@ -82,6 +82,12 @@ static Evas_Object *_vp_subtitle_create_caption_layout(SubtitlePopup *
 static void _vp_subtitle_cancel_button_cb(void *data, Evas_Object * obj,
                                                                                  void *Event_info);
 
+/**
+ *
+ * @param data
+ * @param obj
+ * @param event_info
+ */
 static void __vp_subtitle_genlist_realized(void *data, Evas_Object * obj,
                                                                                   void *event_info)
 {
@@ -108,6 +114,10 @@ static void __vp_subtitle_genlist_realized(void *data, Evas_Object * obj,
        VP_GENLIST_HIDE_BOTTOMLINE(data, obj, event_info);
 }
 
+/**
+ *
+ * @param pSubtitle
+ */
 static void __vp_subtitle_popup_size_set(SubtitlePopup * pSubtitle)
 {
        if (!pSubtitle) {
@@ -146,6 +156,12 @@ static void __vp_subtitle_popup_size_set(SubtitlePopup * pSubtitle)
                                                                   VP_POPUP_TITLE_HEIGHT) * VP_SCALE);
 }
 
+/**
+ *
+ * @param data
+ * @param obj
+ * @param event_info
+ */
 static void __vp_subtitle_popup_rotate_cb(void *data, Evas_Object * obj,
                                                                                  void *event_info)
 {
@@ -160,8 +176,13 @@ static void __vp_subtitle_popup_rotate_cb(void *data, Evas_Object * obj,
        evas_object_show(pSubtitle->pPopup);
 }
 
-
 /* callback functions */
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pEventInfo
+ */
 static void __vp_subtitle_check_change_cb(void *pUserData,
                                                                                  Evas_Object * pObj,
                                                                                  void *pEventInfo)
@@ -189,6 +210,12 @@ static void __vp_subtitle_check_change_cb(void *pUserData,
        }
 }
 
+/**
+ *
+ * @param pSubtitleInfo
+ * @param bActivation
+ * @return
+ */
 static char *_vp_play_subtitle_text_get(SubtitleInfo * pSubtitleInfo,
                                                                                bool bActivation)
 {
@@ -291,6 +318,11 @@ static char *_vp_play_subtitle_text_get(SubtitleInfo * pSubtitleInfo,
        return szTxtFormat;
 }
 
+/**
+ *
+ * @param szColorHex
+ * @return
+ */
 static char *__vp_subtitle_get_color_and_opacity(char *szColorHex)
 {
        if (szColorHex == NULL) {
@@ -346,6 +378,13 @@ static char *__vp_subtitle_get_color_and_opacity(char *szColorHex)
        return szColorAndOpacity;
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pPart
+ * @return
+ */
 static char *__vp_subtitle_genlist_text_get_cb(const void *pUserData,
                                                                                           Evas_Object * pObj,
                                                                                           const char *pPart)
@@ -548,6 +587,13 @@ static char *__vp_subtitle_genlist_text_get_cb(const void *pUserData,
        return NULL;
 }
 
+/**
+ *
+ * @param data
+ * @param obj
+ * @param part
+ * @return
+ */
 static Evas_Object *__vp_subtitle_genlist_content_get_cb(void *data,
                                                                                                                 Evas_Object * obj,
                                                                                                                 const char *part)
@@ -615,7 +661,12 @@ static Evas_Object *__vp_subtitle_genlist_content_get_cb(void *data,
        return NULL;
 }
 
-
+/**
+ *
+ * @param pUserData
+ * @param pObject
+ * @param pEventInfo
+ */
 static void __vp_subtitle_genlist_item_selected_cb(void *pUserData,
                                                                                                   Evas_Object * pObject,
                                                                                                   void *pEventInfo)
@@ -741,6 +792,12 @@ static void __vp_subtitle_genlist_item_selected_cb(void *pUserData,
 
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pEventInfo
+ */
 static void __vp_subtitle_popup_key_event_cb(void *pUserData,
                                                                                         Evas_Object * pObj,
                                                                                         void *pEventInfo)
@@ -754,6 +811,13 @@ static void __vp_subtitle_popup_key_event_cb(void *pUserData,
        _vp_subtitle_cancel_button_cb(pSubtitle, NULL, NULL);
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pEvas
+ * @param pObj
+ * @param pEventInfo
+ */
 static void __vp_subtitle_popup_mouse_event_cb(void *pUserData,
                                                                                           Evas * pEvas,
                                                                                           Evas_Object * pObj,
@@ -777,8 +841,11 @@ static void __vp_subtitle_popup_mouse_event_cb(void *pUserData,
        }
 }
 
-
 /* internal functions */
+/**
+ *
+ * @param pSubtitle
+ */
 static void _vp_subtitle_destroy_subtitle_info(SubtitlePopup * pSubtitle)
 {
        if (pSubtitle == NULL) {
@@ -798,6 +865,10 @@ static void _vp_subtitle_destroy_subtitle_info(SubtitlePopup * pSubtitle)
        }
 }
 
+/**
+ *
+ * @param pSubtitle
+ */
 static void _vp_subtitle_destroy_handle(SubtitlePopup * pSubtitle)
 {
        if (pSubtitle == NULL) {
@@ -848,6 +919,11 @@ static void _vp_subtitle_destroy_handle(SubtitlePopup * pSubtitle)
        VP_FREE(pSubtitle);
 }
 
+/**
+ *
+ * @param pParent
+ * @return
+ */
 static Evas_Object *_vp_subtitle_create_genlist(Evas_Object * pParent)
 {
        if (pParent == NULL) {
@@ -865,6 +941,11 @@ static Evas_Object *_vp_subtitle_create_genlist(Evas_Object * pParent)
        return pObj;
 }
 
+/**
+ *
+ * @param pGenList
+ * @param bOn
+ */
 static void _vp_subtitle_genlist_disabled_set(Evas_Object * pGenList,
                                                                                          bool bOn)
 {
@@ -882,6 +963,12 @@ static void _vp_subtitle_genlist_disabled_set(Evas_Object * pGenList,
        }
 }
 
+/**
+ *
+ * @param pObj
+ * @param pUserData
+ * @return
+ */
 static bool _vp_subtitle_add_genlist_item(Evas_Object * pObj,
                                                                                  void *pUserData)
 {
@@ -1032,6 +1119,12 @@ static bool _vp_subtitle_add_genlist_item(Evas_Object * pObj,
        return TRUE;
 }
 
+/**
+ *
+ * @param data
+ * @param obj
+ * @param Event_info
+ */
 static void _vp_subtitle_done_button_cb(void *data, Evas_Object * obj,
                                                                                void *Event_info)
 {
@@ -1043,6 +1136,12 @@ static void _vp_subtitle_done_button_cb(void *data, Evas_Object * obj,
        }
 }
 
+/**
+ *
+ * @param data
+ * @param obj
+ * @param Event_info
+ */
 static void _vp_subtitle_cancel_button_cb(void *data, Evas_Object * obj,
                                                                                  void *Event_info)
 {
@@ -1077,6 +1176,10 @@ static void _vp_subtitle_cancel_button_cb(void *data, Evas_Object * obj,
        }
 }
 
+/**
+ *
+ * @param pSubtitle
+ */
 static void _vp_subtitle_create_title(SubtitlePopup * pSubtitle)
 {
        if (pSubtitle == NULL) {
@@ -1130,6 +1233,11 @@ static void _vp_subtitle_create_title(SubtitlePopup * pSubtitle)
        evas_object_show(pSubtitle->pPopupTitle);
 }
 
+/**
+ *
+ * @param parent
+ * @return
+ */
 static Evas_Object *_vp_subtitle_create_label(Evas_Object * parent)
 {
        Evas_Object *pLabel = elm_label_add(parent);
@@ -1148,6 +1256,12 @@ static Evas_Object *_vp_subtitle_create_label(Evas_Object * parent)
        return pLabel;
 }
 
+/**
+ *
+ * @param pSubtitle
+ * @param pParent
+ * @return
+ */
 static Evas_Object *_vp_subtitle_create_caption_layout(SubtitlePopup *
                                                                                                           pSubtitle,
                                                                                                           Evas_Object *
@@ -1202,6 +1316,12 @@ static Evas_Object *_vp_subtitle_create_caption_layout(SubtitlePopup *
        return pSubtitle->pCaptionLayout;
 }
 
+/**
+ *
+ * @param pSubtitle
+ * @param bActivation
+ * @return
+ */
 static bool _vp_subtitle_update_caption_layout(SubtitlePopup * pSubtitle,
                                                                                           bool bActivation)
 {
@@ -1238,6 +1358,14 @@ static bool _vp_subtitle_update_caption_layout(SubtitlePopup * pSubtitle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pParent
+ * @param pCancelKeyCb
+ * @param pCancelMouseCb
+ * @param pUserData
+ * @return
+ */
 static Evas_Object *_vp_subtitle_popup_create(Evas_Object * pParent,
                                                                                          Eext_Event_Cb pCancelKeyCb,
                                                                                          Evas_Object_Event_Cb
@@ -1264,6 +1392,11 @@ static Evas_Object *_vp_subtitle_popup_create(Evas_Object * pParent,
        return pObj;
 }
 
+/**
+ *
+ * @param pSubtitle
+ * @param pSubtitleInfo
+ */
 static void _vp_subtitle_get_subtitle_info(SubtitlePopup * pSubtitle,
                                                                                   SubtitleInfo * pSubtitleInfo)
 {
@@ -1315,6 +1448,11 @@ static void _vp_subtitle_get_subtitle_info(SubtitlePopup * pSubtitle,
                pSubtitleInfo->bSupportSelect;
 }
 
+/**
+ *
+ * @param gl_item
+ * @return
+ */
 Elm_Object_Item *_vp_subtitle_list_item_next_get(Elm_Object_Item * gl_item)
 {
        if (!gl_item) {
@@ -1330,6 +1468,11 @@ Elm_Object_Item *_vp_subtitle_list_item_next_get(Elm_Object_Item * gl_item)
        return next;
 }
 
+/**
+ *
+ * @param pSubtitle
+ * @param bOn
+ */
 static void _vp_subtitle_set_activation(SubtitlePopup * pSubtitle,
                                                                                bool bOn)
 {
@@ -1344,6 +1487,13 @@ static void _vp_subtitle_set_activation(SubtitlePopup * pSubtitle,
 }
 
 /* external functions */
+/**
+ *
+ * @param pParent
+ * @param pSubtitleInfo
+ * @param pCloseCb
+ * @return
+ */
 subtitle_popup_handle vp_subtitle_create(Evas_Object * pParent,
                                                                                 SubtitleInfo * pSubtitleInfo,
                                                                                 PopupCloseCbFunc pCloseCb)
@@ -1453,6 +1603,10 @@ subtitle_popup_handle vp_subtitle_create(Evas_Object * pParent,
        return pSubtitle;
 }
 
+/**
+ *
+ * @param pSubtitleHandle
+ */
 void vp_subtitle_destroy(subtitle_popup_handle pSubtitleHandle)
 {
        if (pSubtitleHandle == NULL) {
@@ -1466,6 +1620,11 @@ void vp_subtitle_destroy(subtitle_popup_handle pSubtitleHandle)
 
 }
 
+/**
+ *
+ * @param pSubtitleHandle
+ * @return
+ */
 bool vp_subtitle_realize(subtitle_popup_handle pSubtitleHandle)
 {
        if (pSubtitleHandle == NULL) {
@@ -1480,6 +1639,11 @@ bool vp_subtitle_realize(subtitle_popup_handle pSubtitleHandle)
        return TRUE;
 }
 
+/**
+ *
+ * @param pSubtitleHandle
+ * @return
+ */
 bool vp_subtitle_unrealize(subtitle_popup_handle pSubtitleHandle)
 {
        if (pSubtitleHandle == NULL) {
@@ -1494,6 +1658,12 @@ bool vp_subtitle_unrealize(subtitle_popup_handle pSubtitleHandle)
        return TRUE;
 }
 
+/**
+ *
+ * @param pSubtitleHandle
+ * @param pSubtitleInfo
+ * @return
+ */
 bool vp_subtitle_update(subtitle_popup_handle pSubtitleHandle,
                                                SubtitleInfo * pSubtitleInfo)
 {
@@ -1523,6 +1693,12 @@ bool vp_subtitle_update(subtitle_popup_handle pSubtitleHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pSubtitleHandle
+ * @param pUserData
+ * @return
+ */
 bool vp_subtitle_set_user_data(subtitle_popup_handle pSubtitleHandle,
                                                           void *pUserData)
 {
@@ -1538,6 +1714,11 @@ bool vp_subtitle_set_user_data(subtitle_popup_handle pSubtitleHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param colorHex
+ * @return
+ */
 char *_vp_subtitle_get_opacity(char *colorHex)
 {
        if (colorHex == NULL) {
index 455a3b4..b05fc78 100644 (file)
@@ -51,6 +51,11 @@ static void _vp_zoom_guide_update_item(ZoomGuideWidget * pZoomGuideWidget,
 
 
 /* callback functions */
+/**
+ *
+ * @param pUserData
+ * @return
+ */
 static Eina_Bool __vp_zoom_guide_hide_timer_cb(void *pUserData)
 {
        if (!pUserData) {
@@ -70,7 +75,13 @@ static Eina_Bool __vp_zoom_guide_hide_timer_cb(void *pUserData)
        return EINA_FALSE;
 }
 
-
+/**
+ *
+ * @param pUserData
+ * @param pEvas
+ * @param pObj
+ * @param pEvent
+ */
 static void __vp_zoom_guide_resize_cb(void *pUserData, Evas * pEvas,
                                                                          Evas_Object * pObj, void *pEvent)
 {
@@ -100,8 +111,12 @@ static void __vp_zoom_guide_resize_cb(void *pUserData, Evas * pEvas,
 
 }
 
-
 /* internal functions */
+/**
+ *
+ * @param pZoomGuideWidget
+ * @param bUpdate
+ */
 static void _vp_zoom_guide_update_item(ZoomGuideWidget * pZoomGuideWidget,
                                                                           bool bUpdate)
 {
@@ -174,6 +189,10 @@ static void _vp_zoom_guide_update_item(ZoomGuideWidget * pZoomGuideWidget,
 
 }
 
+/**
+ *
+ * @param pZoomGuideWidget
+ */
 static void _vp_zoom_guide_destory_handle(ZoomGuideWidget *
                                                                                  pZoomGuideWidget)
 {
@@ -190,6 +209,12 @@ static void _vp_zoom_guide_destory_handle(ZoomGuideWidget *
        VP_FREE(pZoomGuideWidget);
 }
 
+/**
+ *
+ * @param pParent
+ * @param pUserData
+ * @return
+ */
 static Evas_Object *_vp_zoom_guide_create_layout(Evas_Object * pParent,
                                                                                                 void *pUserData)
 {
@@ -231,7 +256,11 @@ static Evas_Object *_vp_zoom_guide_create_layout(Evas_Object * pParent,
 
 }
 
-
+/**
+ *
+ * @param pParent
+ * @return
+ */
 static Evas_Object *_vp_zoom_guide_create_item_layout(Evas_Object *
                                                                                                          pParent)
 {
@@ -268,7 +297,11 @@ static Evas_Object *_vp_zoom_guide_create_item_layout(Evas_Object *
 
 }
 
-
+/**
+ *
+ * @param pZoomGuideWidget
+ * @return
+ */
 static bool _vp_zoom_guide_init_layout(ZoomGuideWidget * pZoomGuideWidget)
 {
        if (pZoomGuideWidget == NULL) {
@@ -296,6 +329,11 @@ static bool _vp_zoom_guide_init_layout(ZoomGuideWidget * pZoomGuideWidget)
 }
 
 /* external functions */
+/**
+ *
+ * @param pParent
+ * @return
+ */
 zoom_guide_handle vp_zoom_guide_create(Evas_Object * pParent)
 {
        if (pParent == NULL) {
@@ -327,6 +365,10 @@ zoom_guide_handle vp_zoom_guide_create(Evas_Object * pParent)
        return (zoom_guide_handle) pZoomGuideWidget;
 }
 
+/**
+ *
+ * @param pWidgetHandle
+ */
 void vp_zoom_guide_destroy(zoom_guide_handle pWidgetHandle)
 {
        if (pWidgetHandle == NULL) {
@@ -343,7 +385,11 @@ void vp_zoom_guide_destroy(zoom_guide_handle pWidgetHandle)
        return;
 }
 
-
+/**
+ *
+ * @param pWidgetHandle
+ * @return
+ */
 bool vp_zoom_guide_realize(zoom_guide_handle pWidgetHandle)
 {
        if (pWidgetHandle == NULL) {
@@ -357,6 +403,11 @@ bool vp_zoom_guide_realize(zoom_guide_handle pWidgetHandle)
        return TRUE;
 }
 
+/**
+ *
+ * @param pWidgetHandle
+ * @return
+ */
 bool vp_zoom_guide_unrealize(zoom_guide_handle pWidgetHandle)
 {
        if (pWidgetHandle == NULL) {
@@ -371,6 +422,11 @@ bool vp_zoom_guide_unrealize(zoom_guide_handle pWidgetHandle)
        return TRUE;
 }
 
+/**
+ *
+ * @param pWidgetHandle
+ * @return
+ */
 Evas_Object *vp_zoom_guide_get_object(zoom_guide_handle pWidgetHandle)
 {
        if (pWidgetHandle == NULL) {
@@ -383,6 +439,12 @@ Evas_Object *vp_zoom_guide_get_object(zoom_guide_handle pWidgetHandle)
        return pZoomGuideWidget->pLayout;
 }
 
+/**
+ *
+ * @param pWidgetHandle
+ * @param fZoomVal
+ * @return
+ */
 bool vp_zoom_guide_set_zoom_value(zoom_guide_handle pWidgetHandle,
                                                                  double fZoomVal)
 {
@@ -400,6 +462,12 @@ bool vp_zoom_guide_set_zoom_value(zoom_guide_handle pWidgetHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pWidgetHandle
+ * @param fZoomVal
+ * @return
+ */
 bool vp_zoom_guide_get_zoom_value(zoom_guide_handle pWidgetHandle,
                                                                  double *fZoomVal)
 {
@@ -415,6 +483,13 @@ bool vp_zoom_guide_get_zoom_value(zoom_guide_handle pWidgetHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pWidgetHandle
+ * @param fPosX
+ * @param fPosY
+ * @return
+ */
 bool vp_zoom_guide_set_move_position(zoom_guide_handle pWidgetHandle,
                                                                         double fPosX, double fPosY)
 {
@@ -449,7 +524,13 @@ bool vp_zoom_guide_set_move_position(zoom_guide_handle pWidgetHandle,
        return TRUE;
 }
 
-
+/**
+ *
+ * @param pWidgetHandle
+ * @param fPosX
+ * @param fPosY
+ * @return
+ */
 bool vp_zoom_guide_get_move_position(zoom_guide_handle pWidgetHandle,
                                                                         double *fPosX, double *fPosY)
 {
@@ -466,6 +547,13 @@ bool vp_zoom_guide_get_move_position(zoom_guide_handle pWidgetHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pWidgetHandle
+ * @param fPosX
+ * @param fPosY
+ * @return
+ */
 bool vp_zoom_guide_get_real_position(zoom_guide_handle pWidgetHandle,
                                                                         double *fPosX, double *fPosY)
 {
@@ -482,7 +570,11 @@ bool vp_zoom_guide_get_real_position(zoom_guide_handle pWidgetHandle,
        return TRUE;
 }
 
-
+/**
+ *
+ * @param pWidgetHandle
+ * @return
+ */
 bool vp_zoom_guide_update(zoom_guide_handle pWidgetHandle)
 {
        if (pWidgetHandle == NULL) {
index 31d34a8..d60356c 100644 (file)
@@ -61,7 +61,11 @@ static void _vp_play_view_destroy_handle(PlayView * pPlayView);
 static void _vp_play_view_create_volume_timer(PlayView * pPlayView);
 
 
-
+/**
+ *
+ * @param pUserData
+ * @return
+ */
 static Eina_Bool __vp_play_view_volume_timer_cb(void *pUserData)
 {
        if (!pUserData) {
@@ -86,6 +90,11 @@ static Eina_Bool __vp_play_view_volume_timer_cb(void *pUserData)
        return EINA_FALSE;
 }
 
+/**
+ *
+ * @param pUserData
+ * @return
+ */
 static Eina_Bool __vp_play_view_hw_key_long_press_timer_cb(void *pUserData)
 {
        if (!pUserData) {
@@ -99,6 +108,11 @@ static Eina_Bool __vp_play_view_hw_key_long_press_timer_cb(void *pUserData)
        return EINA_FALSE;
 }
 
+/**
+ *
+ * @param pUserData
+ * @return
+ */
 static Eina_Bool __vp_play_view_media_long_press_timer_cb(void *pUserData)
 {
        if (!pUserData) {
@@ -113,6 +127,11 @@ static Eina_Bool __vp_play_view_media_long_press_timer_cb(void *pUserData)
        return EINA_FALSE;
 }
 
+/**
+ *
+ * @param pUserData
+ * @return
+ */
 static Eina_Bool __vp_play_view_media_key_timer_cb(void *pUserData)
 {
        if (!pUserData) {
@@ -143,6 +162,12 @@ static Eina_Bool __vp_play_view_media_key_timer_cb(void *pUserData)
        return EINA_FALSE;
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pBuf
+ * @param nByte
+ */
 static void __vp_play_view_noti_pipe_cb(void *pUserData, void *pBuf,
                                                                                int nByte)
 {
@@ -159,6 +184,12 @@ static void __vp_play_view_noti_pipe_cb(void *pUserData, void *pBuf,
        }
 }
 
+/**
+ *
+ * @param nRoute
+ * @param bAvailable
+ * @param pUserData
+ */
 static void __vp_play_sound_route_change_cb(int nRoute, bool bAvailable,
                                                                                        void *pUserData)
 {
@@ -175,6 +206,12 @@ static void __vp_play_sound_route_change_cb(int nRoute, bool bAvailable,
        }
 }
 
+/**
+ *
+ * @param nType
+ * @param nVolume
+ * @param pUserData
+ */
 static void __vp_play_sound_volume_change_cb(int nType, int nVolume,
                                                                                         void *pUserData)
 {
@@ -190,6 +227,12 @@ static void __vp_play_sound_volume_change_cb(int nType, int nVolume,
        }
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pEventInfo
+ */
 static void __vp_play_rotate_changed_cb(void *pUserData,
                                                                                Evas_Object * pObj,
                                                                                void *pEventInfo)
@@ -228,6 +271,10 @@ static void __vp_play_rotate_changed_cb(void *pUserData,
        }
 }
 
+/**
+ *
+ * @param pUserData
+ */
 static void __vp_play_view_realize_cb(void *pUserData)
 {
        if (!pUserData) {
@@ -254,6 +301,10 @@ static void __vp_play_view_realize_cb(void *pUserData)
        pPlayView->pCallback->pRealizeCb(pPlayView->pUserData);
 }
 
+/**
+ *
+ * @param pUserData
+ */
 static void __vp_play_view_destroy_cb(void *pUserData)
 {
        if (!pUserData) {
@@ -291,6 +342,13 @@ static void __vp_play_view_destroy_cb(void *pUserData)
        elm_exit();
 }
 
+/**
+ *
+ * @param pUserData
+ * @param nType
+ * @param pEvent
+ * @return
+ */
 static Eina_Bool __vp_play_view_event_key_down_cb(void *pUserData,
                                                                                                  int nType, void *pEvent)
 {
@@ -575,6 +633,13 @@ static Eina_Bool __vp_play_view_event_key_down_cb(void *pUserData,
        return EINA_FALSE;
 }
 
+/**
+ *
+ * @param pUserData
+ * @param nType
+ * @param pEvent
+ * @return
+ */
 static Eina_Bool __vp_play_view_event_key_up_cb(void *pUserData, int nType,
                                                                                                void *pEvent)
 {
@@ -752,6 +817,11 @@ static void __vp_play_view_sensor_event_cb(vp_sensor_type_t nType,
 }
 #endif
 
+/**
+ *
+ * @param key
+ * @param pUserData
+ */
 static void __vp_play_view_rotate_lock_key_changed_cb(system_settings_key_e
                                                                                                          key, void *pUserData)
 {
@@ -776,6 +846,11 @@ static void __vp_play_view_rotate_lock_key_changed_cb(system_settings_key_e
        }
 }
 
+/**
+ *
+ * @param pUserData
+ * @return
+ */
 static Eina_Bool _vp_lockscreenmini_hide_video_mini_controller(void
                                                                                                                           *pUserData)
 {
@@ -793,7 +868,11 @@ static Eina_Bool _vp_lockscreenmini_hide_video_mini_controller(void
        return EINA_FALSE;
 }
 
-
+/**
+ *
+ * @param key
+ * @param pUserData
+ */
 static void __vp_play_view_lock_state_key_changed_cb(system_settings_key_e
                                                                                                         key, void *pUserData)
 {
@@ -829,6 +908,12 @@ static void __vp_play_view_lock_state_key_changed_cb(system_settings_key_e
        }
 }
 
+/**
+ *
+ * @param state
+ * @param ap
+ * @param user_data
+ */
 static void
 __vp_play_view_wifi_key_changed_cb(wifi_manager_connection_state_e state,
                                                                   wifi_manager_ap_h ap, void *user_data)
@@ -836,6 +921,12 @@ __vp_play_view_wifi_key_changed_cb(wifi_manager_connection_state_e state,
        VideoLogError("not supported");
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pEvasObject
+ * @param pEvent
+ */
 static void __vp_play_view_delete_request_cb(void *pUserData,
                                                                                         Evas_Object * pEvasObject,
                                                                                         void *pEvent)
@@ -857,6 +948,14 @@ static void __vp_play_view_delete_request_cb(void *pUserData,
 }
 
 /* internal functions */
+/**
+ *
+ * @param pViewHandle
+ * @param nMode
+ * @param szMediaURL
+ * @param nStartPos
+ * @param bManualPause
+ */
 static void __vp_play_view_func_change_mode(void *pViewHandle,
                                                                                        video_play_mode_t nMode,
                                                                                        const char *szMediaURL,
@@ -959,6 +1058,10 @@ static void __vp_play_view_func_change_mode(void *pViewHandle,
 
 }
 
+/**
+ *
+ * @param pViewHandle
+ */
 static void __vp_play_view_func_exit(void *pViewHandle)
 {
        if (!pViewHandle) {
@@ -999,6 +1102,10 @@ static void __vp_play_view_sensor_popup_close_cb(int nType, bool bPause,
 
 
 /* internal functions */
+/**
+ *
+ * @param pPlayView
+ */
 static void _vp_play_view_init_config(PlayView * pPlayView)
 {
        if (!pPlayView) {
@@ -1014,6 +1121,10 @@ static void _vp_play_view_init_config(PlayView * pPlayView)
        elm_theme_extension_add(NULL, edj_path);
 }
 
+/**
+ *
+ * @param pPlayView
+ */
 static void _vp_play_view_deinit_config(PlayView * pPlayView)
 {
        char edj_path[1024] = { 0 };
@@ -1026,6 +1137,10 @@ static void _vp_play_view_deinit_config(PlayView * pPlayView)
        elm_theme_extension_del(NULL, edj_path);
 }
 
+/**
+ *
+ * @param pPlayView
+ */
 static void _vp_play_view_create_volume_timer(PlayView * pPlayView)
 {
        if (!pPlayView) {
@@ -1041,6 +1156,12 @@ static void _vp_play_view_create_volume_timer(PlayView * pPlayView)
 
 }
 
+/**
+ *
+ * @param pParent
+ * @param pName
+ * @return
+ */
 static Evas_Object *_vp_play_view_create_window(Evas_Object * pParent,
                                                                                                const char *pName)
 {
@@ -1067,6 +1188,11 @@ static Evas_Object *_vp_play_view_create_window(Evas_Object * pParent,
        return pObj;
 }
 
+/**
+ *
+ * @param pParent
+ * @return
+ */
 static Evas_Object *_vp_play_view_create_render_rect(Evas_Object * pParent)
 {
        if (!pParent) {
@@ -1091,6 +1217,11 @@ static Evas_Object *_vp_play_view_create_render_rect(Evas_Object * pParent)
        return pObj;
 }
 
+/**
+ *
+ * @param pParent
+ * @return
+ */
 static Evas_Object *_vp_play_view_create_conformant(Evas_Object * pParent)
 {
        if (!pParent) {
@@ -1119,6 +1250,11 @@ static Evas_Object *_vp_play_view_create_conformant(Evas_Object * pParent)
        return pObj;
 }
 
+/**
+ *
+ * @param pParent
+ * @return
+ */
 static Evas_Object *_vp_play_view_create_layout(Evas_Object * pParent)
 {
        if (!pParent) {
@@ -1150,6 +1286,11 @@ static Evas_Object *_vp_play_view_create_layout(Evas_Object * pParent)
        return pObj;
 }
 
+/**
+ *
+ * @param pParent
+ * @return
+ */
 static Evas_Object *_vp_play_view_create_naviframe(Evas_Object * pParent)
 {
        if (!pParent) {
@@ -1179,6 +1320,11 @@ static Evas_Object *_vp_play_view_create_naviframe(Evas_Object * pParent)
        return pObj;
 }
 
+/**
+ *
+ * @param pPlayView
+ * @return
+ */
 static bool _vp_play_view_init_layout(PlayView * pPlayView)
 {
        if (!pPlayView) {
@@ -1258,6 +1404,11 @@ static bool _vp_play_view_init_layout(PlayView * pPlayView)
        return TRUE;
 }
 
+/**
+ *
+ * @param pPlayView
+ * @return
+ */
 static bool _vp_play_view_create_mode(PlayView * pPlayView)
 {
        if (!pPlayView) {
@@ -1278,6 +1429,11 @@ static bool _vp_play_view_create_mode(PlayView * pPlayView)
        return TRUE;
 }
 
+/**
+ *
+ * @param pPlayView
+ * @return
+ */
 static bool _vp_play_view_destroy_mode(PlayView * pPlayView)
 {
        if (!pPlayView) {
@@ -1302,6 +1458,10 @@ static bool _vp_play_view_destroy_mode(PlayView * pPlayView)
        return TRUE;
 }
 
+/**
+ *
+ * @param pPlayView
+ */
 static void _vp_play_view_create_callback(PlayView * pPlayView)
 {
        if (!pPlayView) {
@@ -1325,6 +1485,10 @@ static void _vp_play_view_create_callback(PlayView * pPlayView)
        return;
 }
 
+/**
+ *
+ * @param pPlayView
+ */
 static void _vp_play_view_destroy_callback(PlayView * pPlayView)
 {
        if (!pPlayView) {
@@ -1345,6 +1509,10 @@ static void _vp_play_view_destroy_callback(PlayView * pPlayView)
        VP_FREE(pPlayView->pCallback);
 }
 
+/**
+ *
+ * @param pPlayView
+ */
 static void _vp_play_view_create_func(PlayView * pPlayView)
 {
        if (!pPlayView) {
@@ -1365,6 +1533,10 @@ static void _vp_play_view_create_func(PlayView * pPlayView)
 
 }
 
+/**
+ *
+ * @param pPlayView
+ */
 static void _vp_play_view_destroy_func(PlayView * pPlayView)
 {
        if (!pPlayView) {
@@ -1383,6 +1555,10 @@ static void _vp_play_view_destroy_func(PlayView * pPlayView)
        VP_FREE(pPlayView->pFunc);
 }
 
+/**
+ *
+ * @param pPlayView
+ */
 static void _vp_play_view_destroy_handle(PlayView * pPlayView)
 {
        if (!pPlayView) {
@@ -1449,6 +1625,11 @@ static void _vp_play_view_destroy_handle(PlayView * pPlayView)
        pPlayView = NULL;
 }
 
+/**
+ *
+ * @param type
+ * @param pUserData
+ */
 static void _vp_play_view_net_status_changed_cb(connection_type_e type,
                                                                                                void *pUserData)
 {
@@ -1498,6 +1679,11 @@ static void _vp_play_view_net_status_changed_cb(connection_type_e type,
        }
 }
 
+/**
+ *
+ * @param bCover_state
+ * @param pUserData
+ */
 static void __vp_play_view_holl_ic_changed_cb(bool bCover_state,
                                                                                          void *pUserData)
 {
@@ -1526,6 +1712,10 @@ static void __vp_play_view_holl_ic_changed_cb(bool bCover_state,
        }
 }
 
+/**
+ *
+ * @param pUserData
+ */
 static void _vp_play_view_ignore_callbacks(void *pUserData)
 {
        if (!pUserData) {
@@ -1552,6 +1742,11 @@ static void _vp_play_view_ignore_callbacks(void *pUserData)
        }
 }
 
+/**
+ *
+ * @param pUserData
+ * @return
+ */
 static Eina_Bool __vp_play_view_db_update_timer_cb(void *pUserData)
 {
        if (!pUserData) {
@@ -1568,6 +1763,10 @@ static Eina_Bool __vp_play_view_db_update_timer_cb(void *pUserData)
        return ECORE_CALLBACK_CANCEL;
 }
 
+/**
+ *
+ * @param pUserData
+ */
 static void __vp_playview_media_update_cb(void *pUserData)
 {
        if (!pUserData) {
@@ -1583,6 +1782,14 @@ static void __vp_playview_media_update_cb(void *pUserData)
                                                (void *) pUserData);
 }
 
+/**
+ *
+ * @param pParent
+ * @param nParentXID
+ * @param nMode
+ * @param nLaunchingType
+ * @return
+ */
 play_view_handle vp_play_view_create(Evas_Object * pParent,
                                                                         Ecore_X_Window nParentXID,
                                                                         video_play_mode_t nMode,
@@ -1689,6 +1896,10 @@ void vp_play_view_reset(play_view_handle pViewHandle, int nMode)
 }
 #endif
 
+/**
+ *
+ * @param pViewHandle
+ */
 void vp_play_view_destroy(play_view_handle pViewHandle)
 {
        if (!pViewHandle) {
@@ -1719,6 +1930,11 @@ void vp_play_view_destroy(play_view_handle pViewHandle)
        VideoLogInfo("<< Play View : Destroy");
 }
 
+/**
+ *
+ * @param pViewHandle
+ * @return
+ */
 bool vp_play_view_live_stream_realize(play_view_handle pViewHandle)
 {
        if (!pViewHandle) {
@@ -1758,6 +1974,11 @@ bool vp_play_view_live_stream_realize(play_view_handle pViewHandle)
        return TRUE;
 }
 
+/**
+ *
+ * @param pViewHandle
+ * @return
+ */
 bool vp_play_view_realize(play_view_handle pViewHandle)
 {
        int error = SOUND_MANAGER_ERROR_NONE;
@@ -1942,6 +2163,11 @@ bool vp_play_view_realize(play_view_handle pViewHandle)
        return TRUE;
 }
 
+/**
+ *
+ * @param pViewHandle
+ * @return
+ */
 bool vp_play_view_unrealize(play_view_handle pViewHandle)
 {
        int error = SOUND_MANAGER_ERROR_NONE;
@@ -2086,6 +2312,12 @@ bool vp_play_view_unrealize(play_view_handle pViewHandle)
        return TRUE;
 }
 
+/**
+ *
+ * @param pViewHandle
+ * @param bRealized
+ * @return
+ */
 bool vp_play_view_is_realize(play_view_handle pViewHandle,
                                                         bool * bRealized)
 {
@@ -2109,6 +2341,12 @@ bool vp_play_view_is_realize(play_view_handle pViewHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pViewHandle
+ * @param pUserData
+ * @return
+ */
 bool vp_play_view_set_user_data(play_view_handle pViewHandle,
                                                                void *pUserData)
 {
@@ -2124,6 +2362,12 @@ bool vp_play_view_set_user_data(play_view_handle pViewHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pViewHandle
+ * @param szMediaURL
+ * @return
+ */
 bool vp_play_view_set_url(play_view_handle pViewHandle,
                                                  const char *szMediaURL)
 {
@@ -2170,6 +2414,12 @@ bool vp_play_view_set_url(play_view_handle pViewHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pViewHandle
+ * @param szMediaURL
+ * @return
+ */
 bool vp_play_view_get_url(play_view_handle pViewHandle, char **szMediaURL)
 {
        if (!pViewHandle) {
@@ -2188,6 +2438,12 @@ bool vp_play_view_get_url(play_view_handle pViewHandle, char **szMediaURL)
        return TRUE;
 }
 
+/**
+ *
+ * @param pViewHandle
+ * @param bVisible
+ * @return
+ */
 bool vp_play_view_get_visible_status(play_view_handle pViewHandle,
                                                                         bool * bVisible)
 {
@@ -2203,6 +2459,17 @@ bool vp_play_view_get_visible_status(play_view_handle pViewHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pViewHandle
+ * @param szURL
+ * @param szTitle
+ * @param szSubTitle
+ * @param nPosition
+ * @param nDuration
+ * @param bIsSameAP
+ * @return
+ */
 bool vp_play_view_add_multi_path(play_view_handle pViewHandle,
                                                                 const char *szURL,
                                                                 char *szTitle,
@@ -2237,6 +2504,12 @@ bool vp_play_view_add_multi_path(play_view_handle pViewHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pViewHandle
+ * @param szDeviceID
+ * @return
+ */
 bool vp_play_view_set_device_id(play_view_handle pViewHandle,
                                                                const char *szDeviceID)
 {
@@ -2256,6 +2529,12 @@ bool vp_play_view_set_device_id(play_view_handle pViewHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pViewHandle
+ * @param autoplay
+ * @return
+ */
 bool vp_play_view_set_auto_play_setting(play_view_handle pViewHandle,
                                                                                const char *autoplay)
 {
@@ -2274,6 +2553,12 @@ bool vp_play_view_set_auto_play_setting(play_view_handle pViewHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pViewHandle
+ * @param szDMRID
+ * @return
+ */
 bool vp_play_view_set_dmr_id(play_view_handle pViewHandle,
                                                         const char *szDMRID)
 {
@@ -2294,6 +2579,12 @@ bool vp_play_view_set_dmr_id(play_view_handle pViewHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pViewHandle
+ * @param szMediaTitle
+ * @return
+ */
 bool vp_play_view_set_media_title(play_view_handle pViewHandle,
                                                                  const char *szMediaTitle)
 {
@@ -2314,6 +2605,12 @@ bool vp_play_view_set_media_title(play_view_handle pViewHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pViewHandle
+ * @param nPosition
+ * @return
+ */
 bool vp_play_view_set_start_position(play_view_handle pViewHandle,
                                                                         int nPosition)
 {
@@ -2336,6 +2633,12 @@ bool vp_play_view_set_start_position(play_view_handle pViewHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pViewHandle
+ * @param nRotate
+ * @return
+ */
 bool vp_play_view_set_rotate(play_view_handle pViewHandle,
                                                         video_play_rotate_t nRotate)
 {
@@ -2358,6 +2661,12 @@ bool vp_play_view_set_rotate(play_view_handle pViewHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pViewHandle
+ * @param bPopupMode
+ * @return
+ */
 bool vp_play_view_get_popup_mode(play_view_handle pViewHandle,
                                                                 bool * bPopupMode)
 {
@@ -2371,6 +2680,12 @@ bool vp_play_view_get_popup_mode(play_view_handle pViewHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pViewHandle
+ * @param bRelaunch
+ * @return
+ */
 bool vp_play_view_set_relaunch_caller(play_view_handle pViewHandle,
                                                                          bool bRelaunch)
 {
@@ -2386,6 +2701,12 @@ bool vp_play_view_set_relaunch_caller(play_view_handle pViewHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pViewHandle
+ * @param nLaunchingType
+ * @return
+ */
 bool vp_play_view_set_launching_mode(play_view_handle pViewHandle,
                                                                         video_play_launching_type_t
                                                                         nLaunchingType)
@@ -2410,6 +2731,12 @@ bool vp_play_view_set_launching_mode(play_view_handle pViewHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pViewHandle
+ * @param nListType
+ * @return
+ */
 bool vp_play_view_set_list_mode(play_view_handle pViewHandle,
                                                                video_play_list_type_t nListType)
 {
@@ -2425,6 +2752,12 @@ bool vp_play_view_set_list_mode(play_view_handle pViewHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pViewHandle
+ * @param szCookie
+ * @return
+ */
 bool vp_play_view_set_cookie(play_view_handle pViewHandle,
                                                         const char *szCookie)
 {
@@ -2442,6 +2775,12 @@ bool vp_play_view_set_cookie(play_view_handle pViewHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pViewHandle
+ * @param szProxy
+ * @return
+ */
 bool vp_play_view_set_proxy(play_view_handle pViewHandle,
                                                        const char *szProxy)
 {
@@ -2459,6 +2798,12 @@ bool vp_play_view_set_proxy(play_view_handle pViewHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pViewHandle
+ * @param bStoreDownload
+ * @return
+ */
 bool vp_play_view_set_store_download_mode(play_view_handle pViewHandle,
                                                                                  bool bStoreDownload)
 {
@@ -2474,6 +2819,12 @@ bool vp_play_view_set_store_download_mode(play_view_handle pViewHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pViewHandle
+ * @param bStopAfterRepeat
+ * @return
+ */
 bool vp_play_view_set_stop_after_repeat_mode(play_view_handle pViewHandle,
                                                                                         bool bStopAfterRepeat)
 {
@@ -2489,6 +2840,12 @@ bool vp_play_view_set_stop_after_repeat_mode(play_view_handle pViewHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pViewHandle
+ * @param dStoreDL_FileSize
+ * @return
+ */
 bool vp_play_view_set_store_download_filesize(play_view_handle pViewHandle,
                                                                                          double dStoreDL_FileSize)
 {
@@ -2504,6 +2861,15 @@ bool vp_play_view_set_store_download_filesize(play_view_handle pViewHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pViewHandle
+ * @param pStoreOrderId
+ * @param pStoreServerId
+ * @param pStoreAppId
+ * @param pStoreMvId
+ * @return
+ */
 bool vp_play_view_set_store_order_info(play_view_handle pViewHandle,
                                                                           char *pStoreOrderId,
                                                                           char *pStoreServerId,
@@ -2556,6 +2922,11 @@ bool vp_play_view_set_store_order_info(play_view_handle pViewHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pViewHandle
+ * @return
+ */
 bool vp_play_view_update(play_view_handle pViewHandle)
 {
        if (!pViewHandle) {
@@ -2570,6 +2941,13 @@ bool vp_play_view_update(play_view_handle pViewHandle)
        return TRUE;
 }
 
+/**
+ *
+ * @param pViewHandle
+ * @param nCbType
+ * @param pFunc
+ * @return
+ */
 bool vp_play_view_set_callback(play_view_handle pViewHandle,
                                                           video_play_callback_type_t nCbType,
                                                           void *pFunc)
@@ -2598,6 +2976,12 @@ bool vp_play_view_set_callback(play_view_handle pViewHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pViewHandle
+ * @param nCbType
+ * @return
+ */
 bool vp_play_view_unset_callback(play_view_handle pViewHandle,
                                                                 video_play_callback_type_t nCbType)
 {
@@ -2625,6 +3009,11 @@ bool vp_play_view_unset_callback(play_view_handle pViewHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pViewHandle
+ * @return
+ */
 Evas_Object *vp_play_view_get_main_window(play_view_handle pViewHandle)
 {
        if (!pViewHandle) {
@@ -2636,6 +3025,12 @@ Evas_Object *vp_play_view_get_main_window(play_view_handle pViewHandle)
        return pPlayView->pWin;
 }
 
+/**
+ *
+ * @param pViewHandle
+ * @param nLaunchingType
+ * @return
+ */
 bool vp_play_view_change_style_minimode_to_fullmode(play_view_handle
                                                                                                        pViewHandle,
                                                                                                        video_play_launching_type_t
@@ -2657,7 +3052,11 @@ bool vp_play_view_change_style_minimode_to_fullmode(play_view_handle
        return TRUE;
 }
 
-
+/**
+ *
+ * @param pPlayViewHandle
+ * @return
+ */
 bool vp_play_view_reset_audio_only(play_view_handle * pPlayViewHandle)
 {
        PlayView *pPlayView = (PlayView *) pPlayViewHandle;
@@ -2665,7 +3064,11 @@ bool vp_play_view_reset_audio_only(play_view_handle * pPlayViewHandle)
        return TRUE;
 }
 
-
+/**
+ *
+ * @param pPlayViewHandle
+ * @return
+ */
 bool vp_play_view_handle_language_change(play_view_handle * pPlayViewHandle)
 {
        PlayView *pPlayView = (PlayView *) pPlayViewHandle;
index 1361485..31a9700 100644 (file)
@@ -82,7 +82,12 @@ static void _vp_play_bookmark_gengrid_item_update(BookmarkWidget *
 static void _vp_play_bookmark_gengrid_item_clear(BookmarkWidget *
                                                                                                 pBookmarkWidget);
 /* callbackk functions */
-
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pEvent
+ */
 static void __vp_play_bookmark_delete_btn_clicked_cb(void *pUserData,
                                                                                                         Evas_Object * pObj,
                                                                                                         void *pEvent)
@@ -99,6 +104,12 @@ static void __vp_play_bookmark_delete_btn_clicked_cb(void *pUserData,
        VideoLogError("clicked");
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pEvent
+ */
 static void __vp_play_bookmark_delete_btn_press_cb(void *pUserData,
                                                                                                   Evas_Object * pObj,
                                                                                                   void *pEvent)
@@ -163,6 +174,12 @@ static void __vp_play_bookmark_delete_btn_press_cb(void *pUserData,
 
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pEvent
+ */
 static void __vp_play_bookmark_delete_btn_unpress_cb(void *pUserData,
                                                                                                         Evas_Object * pObj,
                                                                                                         void *pEvent)
@@ -196,6 +213,13 @@ static void __vp_play_bookmark_delete_btn_unpress_cb(void *pUserData,
 
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pPart
+ * @return
+ */
 static Evas_Object *__vp_play_bookmark_gengrid_icon_get_cb(const void
                                                                                                                   *pUserData,
                                                                                                                   Evas_Object *
@@ -322,7 +346,12 @@ static Evas_Object *__vp_play_bookmark_gengrid_icon_get_cb(const void
 
 }
 
-
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pEvent
+ */
 static void __vp_play_bookmark_longpress_cb(void *pUserData,
                                                                                        Evas_Object * pObj,
                                                                                        void *pEvent)
@@ -348,12 +377,24 @@ static void __vp_play_bookmark_longpress_cb(void *pUserData,
 
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pEvent
+ */
 static void __vp_play_bookmark_scroll_cb(void *pUserData,
                                                                                 Evas_Object * pObj, void *pEvent)
 {
        return;
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pEvent
+ */
 static void __vp_play_bookmark_change_cb(void *pUserData,
                                                                                 Evas_Object * pObj, void *pEvent)
 {
@@ -372,6 +413,12 @@ static void __vp_play_bookmark_change_cb(void *pUserData,
        pBookmarkWidget->pLastItem = NULL;
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pEvent
+ */
 static void __vp_play_bookmark_pressed_cb(void *pUserData,
                                                                                  Evas_Object * pObj, void *pEvent)
 {
@@ -388,7 +435,12 @@ static void __vp_play_bookmark_pressed_cb(void *pUserData,
        }
 }
 
-
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pEvent
+ */
 static void __vp_play_bookmark_released_cb(void *pUserData,
                                                                                   Evas_Object * pObj,
                                                                                   void *pEvent)
@@ -402,7 +454,12 @@ static void __vp_play_bookmark_released_cb(void *pUserData,
        pBookmarkWidget->bPressed = FALSE;
 }
 
-
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pEvent
+ */
 static void __vp_play_bookmark_item_select_cb(void *pUserData,
                                                                                          Evas_Object * pObj,
                                                                                          void *pEvent)
@@ -443,7 +500,12 @@ static void __vp_play_bookmark_item_select_cb(void *pUserData,
        }
 }
 
-
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pEvent
+ */
 static void __vp_play_bookmark_btn_clicked_cb(void *pUserData,
                                                                                          Evas_Object * pObj,
                                                                                          void *pEvent)
@@ -468,6 +530,12 @@ static void __vp_play_bookmark_btn_clicked_cb(void *pUserData,
        }
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pEvent
+ */
 static void __vp_play_bookmark_btn_press_cb(void *pUserData,
                                                                                        Evas_Object * pObj,
                                                                                        void *pEvent)
@@ -507,6 +575,12 @@ static void __vp_play_bookmark_btn_press_cb(void *pUserData,
        }
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pEvent
+ */
 static void __vp_play_bookmark_btn_unpress_cb(void *pUserData,
                                                                                          Evas_Object * pObj,
                                                                                          void *pEvent)
@@ -546,9 +620,11 @@ static void __vp_play_bookmark_btn_unpress_cb(void *pUserData,
        }
 }
 
-
 /* internal functions */
-
+/**
+ *
+ * @param pBookmarkWidget
+ */
 static void _vp_play_bookmark_destory_handle(BookmarkWidget *
                                                                                         pBookmarkWidget)
 {
@@ -574,6 +650,13 @@ static void _vp_play_bookmark_destory_handle(BookmarkWidget *
        VP_FREE(pBookmarkWidget);
 }
 
+/**
+ *
+ * @param pList
+ * @param nPosition
+ * @param nPos
+ * @return
+ */
 static Elm_Object_Item *_vp_play_bookmark_find_before_item(GList * pList,
                                                                                                                   int nPosition,
                                                                                                                   int *nPos)
@@ -603,7 +686,12 @@ static Elm_Object_Item *_vp_play_bookmark_find_before_item(GList * pList,
        return NULL;
 }
 
-
+/**
+ *
+ * @param pItem1
+ * @param pItem2
+ * @return
+ */
 static gint __vp_play_bookmark_compare_cb(BookmarkItem * pItem1,
                                                                                  BookmarkItem * pItem2)
 {
@@ -624,7 +712,11 @@ static gint __vp_play_bookmark_compare_cb(BookmarkItem * pItem1,
        }
 }
 
-
+/**
+ *
+ * @param pBookmarkWidget
+ * @param pItem
+ */
 static void _vp_play_bookmark_gengrid_item_append(BookmarkWidget *
                                                                                                  pBookmarkWidget,
                                                                                                  BookmarkItem * pItem)
@@ -683,6 +775,10 @@ static void _vp_play_bookmark_gengrid_item_append(BookmarkWidget *
                                                         __vp_play_bookmark_compare_cb);
 }
 
+/**
+ *
+ * @param pBookmarkWidget
+ */
 static void _vp_play_bookmark_gengrid_item_update(BookmarkWidget *
                                                                                                  pBookmarkWidget)
 {
@@ -715,6 +811,10 @@ static void _vp_play_bookmark_gengrid_item_update(BookmarkWidget *
        }
 }
 
+/**
+ *
+ * @param pBookmarkWidget
+ */
 static void _vp_play_bookmark_gengrid_item_clear(BookmarkWidget *
                                                                                                 pBookmarkWidget)
 {
@@ -748,7 +848,11 @@ static void _vp_play_bookmark_gengrid_item_clear(BookmarkWidget *
        pBookmarkWidget->pItemList = NULL;
 }
 
-
+/**
+ *
+ * @param pParent
+ * @return
+ */
 static Evas_Object *_vp_play_bookmark_create_layout(Evas_Object * pParent)
 {
        if (!pParent) {
@@ -779,7 +883,11 @@ static Evas_Object *_vp_play_bookmark_create_layout(Evas_Object * pParent)
        return pObj;
 }
 
-
+/**
+ *
+ * @param pParent
+ * @return
+ */
 static Evas_Object *_vp_play_bookmark_create_gengrid(Evas_Object * pParent)
 {
        if (!pParent) {
@@ -808,6 +916,13 @@ static Evas_Object *_vp_play_bookmark_create_gengrid(Evas_Object * pParent)
        return pObj;
 }
 
+/**
+ *
+ * @param data
+ * @param e
+ * @param obj
+ * @param event_info
+ */
 static void _vp_play_bookmark_layout_del_cb(void *data, Evas * e,
                                                                                        Evas_Object * obj,
                                                                                        void *event_info)
@@ -823,6 +938,11 @@ static void _vp_play_bookmark_layout_del_cb(void *data, Evas * e,
        pBookmarkWidget->pGengrid = NULL;
 }
 
+/**
+ *
+ * @param pBookmarkWidget
+ * @return
+ */
 static bool _vp_play_bookmark_init_layout(BookmarkWidget * pBookmarkWidget)
 {
        if (pBookmarkWidget == NULL) {
@@ -906,8 +1026,12 @@ static bool _vp_play_bookmark_init_layout(BookmarkWidget * pBookmarkWidget)
        return TRUE;
 }
 
-
 /* external functions */
+/**
+ *
+ * @param pParent
+ * @return
+ */
 bookmark_handle vp_play_bookmark_create(Evas_Object * pParent)
 {
        if (pParent == NULL) {
@@ -939,7 +1063,10 @@ bookmark_handle vp_play_bookmark_create(Evas_Object * pParent)
 
 }
 
-
+/**
+ *
+ * @param pWidgetHandle
+ */
 void vp_play_bookmark_destroy(bookmark_handle pWidgetHandle)
 {
        if (pWidgetHandle == NULL) {
@@ -953,7 +1080,11 @@ void vp_play_bookmark_destroy(bookmark_handle pWidgetHandle)
 
 }
 
-
+/**
+ *
+ * @param pWidgetHandle
+ * @return
+ */
 bool vp_play_bookmark_realize(bookmark_handle pWidgetHandle)
 {
        if (pWidgetHandle == NULL) {
@@ -1030,6 +1161,11 @@ bool vp_play_bookmark_realize(bookmark_handle pWidgetHandle)
        return TRUE;
 }
 
+/**
+ *
+ * @param pWidgetHandle
+ * @return
+ */
 bool vp_play_bookmark_unrealize(bookmark_handle pWidgetHandle)
 {
        if (pWidgetHandle == NULL) {
@@ -1051,6 +1187,12 @@ bool vp_play_bookmark_unrealize(bookmark_handle pWidgetHandle)
        return TRUE;
 }
 
+/**
+ *
+ * @param pWidgetHandle
+ * @param bIsRealize
+ * @return
+ */
 bool vp_play_bookmark_is_realize(bookmark_handle pWidgetHandle,
                                                                 bool * bIsRealize)
 {
@@ -1066,6 +1208,11 @@ bool vp_play_bookmark_is_realize(bookmark_handle pWidgetHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pWidgetHandle
+ * @return
+ */
 Evas_Object *vp_play_bookmark_get_object(bookmark_handle pWidgetHandle)
 {
        if (pWidgetHandle == NULL) {
@@ -1079,6 +1226,12 @@ Evas_Object *vp_play_bookmark_get_object(bookmark_handle pWidgetHandle)
 
 }
 
+/**
+ *
+ * @param pWidgetHandle
+ * @param func
+ * @return
+ */
 bool vp_play_bookmark_set_capture_callback(bookmark_handle pWidgetHandle,
                                                                                   BookmarkCaptureStartCbFunc func)
 {
@@ -1094,6 +1247,12 @@ bool vp_play_bookmark_set_capture_callback(bookmark_handle pWidgetHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pWidgetHandle
+ * @param func
+ * @return
+ */
 bool vp_play_bookmark_set_item_select_callback(bookmark_handle
                                                                                           pWidgetHandle,
                                                                                           BookmarkItemSelectCbFunc
@@ -1111,6 +1270,12 @@ bool vp_play_bookmark_set_item_select_callback(bookmark_handle
        return TRUE;
 }
 
+/**
+ *
+ * @param pWidgetHandle
+ * @param pUserData
+ * @return
+ */
 bool vp_play_bookmark_set_user_param(bookmark_handle pWidgetHandle,
                                                                         void *pUserData)
 {
@@ -1126,6 +1291,12 @@ bool vp_play_bookmark_set_user_param(bookmark_handle pWidgetHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pWidgetHandle
+ * @param szMediaURL
+ * @return
+ */
 bool vp_play_bookmark_set_media_url(bookmark_handle pWidgetHandle,
                                                                        const char *szMediaURL)
 {
@@ -1155,6 +1326,12 @@ bool vp_play_bookmark_set_media_url(bookmark_handle pWidgetHandle,
 
 }
 
+/**
+ *
+ * @param pWidgetHandle
+ * @param bEditMode
+ * @return
+ */
 bool vp_play_bookmark_set_edit_mode(bookmark_handle pWidgetHandle,
                                                                        bool bEditMode)
 {
@@ -1173,6 +1350,12 @@ bool vp_play_bookmark_set_edit_mode(bookmark_handle pWidgetHandle,
 
 }
 
+/**
+ *
+ * @param pWidgetHandle
+ * @param bEditMode
+ * @return
+ */
 bool vp_play_bookmark_get_edit_mode(bookmark_handle pWidgetHandle,
                                                                        bool * bEditMode)
 {
@@ -1188,6 +1371,12 @@ bool vp_play_bookmark_get_edit_mode(bookmark_handle pWidgetHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pWidgetHandle
+ * @param bPressed
+ * @return
+ */
 bool vp_play_bookmark_get_pressed_status(bookmark_handle pWidgetHandle,
                                                                                 bool * bPressed)
 {
@@ -1204,6 +1393,12 @@ bool vp_play_bookmark_get_pressed_status(bookmark_handle pWidgetHandle,
 
 }
 
+/**
+ *
+ * @param pWidgetHandle
+ * @param nCount
+ * @return
+ */
 bool vp_play_bookmark_get_item_count(bookmark_handle pWidgetHandle,
                                                                         int *nCount)
 {
index f97c592..e98a5f2 100644 (file)
@@ -75,6 +75,13 @@ static void _vp_play_brightness_create_timer(BrightnessWidget *
                                                                                         pBrightnessWidget);
 
 /* callback functions */
+/**
+ *
+ * @param pUserData
+ * @param e
+ * @param pObj
+ * @param pEvent
+ */
 static void __vp_brightness_mouse_down_cb(void *pUserData, Evas * e,
                                                                                  Evas_Object * pObj, void *pEvent)
 {
@@ -106,6 +113,13 @@ static void __vp_brightness_mouse_down_cb(void *pUserData, Evas * e,
        pBrightnessWidget->bMouseDown = TRUE;
 }
 
+/**
+ *
+ * @param pUserData
+ * @param e
+ * @param pObj
+ * @param pEvent
+ */
 static void __vp_brightness_mouse_up_cb(void *pUserData, Evas * e,
                                                                                Evas_Object * pObj, void *pEvent)
 {
@@ -135,6 +149,13 @@ static void __vp_brightness_mouse_up_cb(void *pUserData, Evas * e,
        pBrightnessWidget->bMouseDown = FALSE;
 }
 
+/**
+ *
+ * @param pUserData
+ * @param e
+ * @param pObj
+ * @param pEvent
+ */
 static void __vp_brightness_mouse_move_cb(void *pUserData, Evas * e,
                                                                                  Evas_Object * pObj, void *pEvent)
 {
@@ -168,6 +189,11 @@ static void __vp_brightness_mouse_move_cb(void *pUserData, Evas * e,
 
 }
 
+/**
+ *
+ * @param pUserData
+ * @return
+ */
 static Eina_Bool __vp_brightness_hide_timer_cb(void *pUserData)
 {
        if (!pUserData) {
@@ -187,9 +213,11 @@ static Eina_Bool __vp_brightness_hide_timer_cb(void *pUserData)
        return EINA_FALSE;
 }
 
-
-
 /* internal functions */
+/**
+ *
+ * @param pBrightnessWidget
+ */
 static void _vp_play_brightness_destory_handle(BrightnessWidget *
                                                                                           pBrightnessWidget)
 {
@@ -205,6 +233,13 @@ static void _vp_play_brightness_destory_handle(BrightnessWidget *
        VP_FREE(pBrightnessWidget);
 }
 
+/**
+ *
+ * @param pObj
+ * @param bLandscape
+ * @param nCurY
+ * @return
+ */
 static double _vp_play_brightness_get_mouse_pos_ratio(Evas_Object * pObj,
                                                                                                          bool bLandscape,
                                                                                                          int nCurY)
@@ -240,6 +275,10 @@ static double _vp_play_brightness_get_mouse_pos_ratio(Evas_Object * pObj,
 }
 
 
+/**
+ *
+ * @param pBrightnessWidget
+ */
 static void _vp_play_brightness_set_widget_position(BrightnessWidget *
                                                                                                        pBrightnessWidget)
 {
@@ -267,6 +306,11 @@ static void _vp_play_brightness_set_widget_position(BrightnessWidget *
        }
 }
 
+/**
+ *
+ * @param pBrightnessWidget
+ * @param nValueRatio
+ */
 static void _vp_play_brightness_update_icon(BrightnessWidget *
                                                                                        pBrightnessWidget,
                                                                                        double nValueRatio)
@@ -298,6 +342,10 @@ static void _vp_play_brightness_update_icon(BrightnessWidget *
        g_free(popup_path);
 }
 
+/**
+ *
+ * @param pBrightnessWidget
+ */
 static void _vp_play_brightness_update_value(BrightnessWidget *
                                                                                         pBrightnessWidget)
 {
@@ -330,6 +378,10 @@ static void _vp_play_brightness_update_value(BrightnessWidget *
        _vp_play_brightness_update_icon(pBrightnessWidget, nValueRatio);
 }
 
+/**
+ *
+ * @param pBrightnessWidget
+ */
 static void _vp_play_brightness_create_timer(BrightnessWidget *
                                                                                         pBrightnessWidget)
 {
@@ -346,6 +398,11 @@ static void _vp_play_brightness_create_timer(BrightnessWidget *
                                                (void *) pBrightnessWidget);
 }
 
+/**
+ *
+ * @param pUserData
+ * @return
+ */
 static Eina_Bool __vp_brightness_popup_device_timer_cb(void *pUserData)
 {
        if (!pUserData) {
@@ -365,6 +422,11 @@ static Eina_Bool __vp_brightness_popup_device_timer_cb(void *pUserData)
        return EINA_FALSE;
 }
 
+/**
+ *
+ * @param pBrightnessWidget
+ * @param nValue
+ */
 static void _vp_play_brightness_set_value(BrightnessWidget *
                                                                                  pBrightnessWidget, int nValue)
 {
@@ -387,7 +449,11 @@ static void _vp_play_brightness_set_value(BrightnessWidget *
        }
 }
 
-
+/**
+ *
+ * @param pParent
+ * @return
+ */
 static Evas_Object *_vp_play_brightness_create_layout(Evas_Object *
                                                                                                          pParent)
 {
@@ -423,6 +489,11 @@ static Evas_Object *_vp_play_brightness_create_layout(Evas_Object *
        return pObj;
 }
 
+/**
+ *
+ * @param pParent
+ * @return
+ */
 static Evas_Object *_vp_play_brightness_create_icon(Evas_Object * pParent)
 {
        if (!pParent) {
@@ -442,6 +513,11 @@ static Evas_Object *_vp_play_brightness_create_icon(Evas_Object * pParent)
        return pIcon;
 }
 
+/**
+ *
+ * @param pBrightnessWidget
+ * @return
+ */
 static bool _vp_play_brightness_init_layout(BrightnessWidget *
                                                                                        pBrightnessWidget)
 {
@@ -484,9 +560,12 @@ static bool _vp_play_brightness_init_layout(BrightnessWidget *
        return TRUE;
 }
 
-
-
 /* external functions */
+/**
+ *
+ * @param pParent
+ * @return
+ */
 brightness_handle vp_play_brightness_create(Evas_Object * pParent)
 {
        if (pParent == NULL) {
@@ -538,6 +617,10 @@ brightness_handle vp_play_brightness_create(Evas_Object * pParent)
        return (brightness_handle) pBrightnessWidget;
 }
 
+/**
+ *
+ * @param pBrightnessHandle
+ */
 void vp_play_brightness_destroy(brightness_handle pBrightnessHandle)
 {
        if (pBrightnessHandle == NULL) {
@@ -551,6 +634,11 @@ void vp_play_brightness_destroy(brightness_handle pBrightnessHandle)
        _vp_play_brightness_destory_handle(pBrightnessWidget);
 }
 
+/**
+ *
+ * @param pBrightnessHandle
+ * @return
+ */
 bool vp_play_brightness_realize(brightness_handle pBrightnessHandle)
 {
        if (pBrightnessHandle == NULL) {
@@ -575,6 +663,11 @@ bool vp_play_brightness_realize(brightness_handle pBrightnessHandle)
        return TRUE;
 }
 
+/**
+ *
+ * @param pBrightnessHandle
+ * @return
+ */
 bool vp_play_brightness_unrealize(brightness_handle pBrightnessHandle)
 {
        if (pBrightnessHandle == NULL) {
@@ -592,6 +685,12 @@ bool vp_play_brightness_unrealize(brightness_handle pBrightnessHandle)
        return TRUE;
 }
 
+/**
+ *
+ * @param pBrightnessHandle
+ * @param bLandscape
+ * @return
+ */
 bool vp_play_brightness_set_landscape_mode(brightness_handle
                                                                                   pBrightnessHandle,
                                                                                   bool bLandscape)
@@ -612,6 +711,12 @@ bool vp_play_brightness_set_landscape_mode(brightness_handle
        return TRUE;
 }
 
+/**
+ *
+ * @param pBrightnessHandle
+ * @param bIsRealize
+ * @return
+ */
 bool vp_play_brightness_is_realize(brightness_handle pBrightnessHandle,
                                                                   bool * bIsRealize)
 {
@@ -628,6 +733,12 @@ bool vp_play_brightness_is_realize(brightness_handle pBrightnessHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pBrightnessHandle
+ * @param nCurVal
+ * @return
+ */
 bool vp_play_brightness_set_value(brightness_handle pBrightnessHandle,
                                                                  int nCurVal)
 {
@@ -659,6 +770,11 @@ bool vp_play_brightness_set_value(brightness_handle pBrightnessHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param nCurVal
+ * @return
+ */
 bool vp_play_brightness_get_value(int *nCurVal)
 {
 
@@ -674,6 +790,11 @@ bool vp_play_brightness_get_value(int *nCurVal)
        return TRUE;
 }
 
+/**
+ *
+ * @param nMaxVal
+ * @return
+ */
 bool vp_play_brightness_get_max_value(int *nMaxVal)
 {
        int nVal = 0;
@@ -688,6 +809,11 @@ bool vp_play_brightness_get_max_value(int *nMaxVal)
        return TRUE;
 }
 
+/**
+ *
+ * @param nMinVal
+ * @return
+ */
 bool vp_play_brightness_get_min_value(int *nMinVal)
 {
        int nVal = 0;
index 7a9240b..a6f048a 100644 (file)
 /* check temp */
 #include "vp-play-log.h"
 
+/**
+ *
+ * @param pParent
+ * @param pStyle
+ * @param pTxt
+ * @param pClickFunc
+ * @param pPressFunc
+ * @param pUnpressFunc
+ * @param pUserData
+ * @return
+ */
 Evas_Object *vp_button_create(Evas_Object * pParent, const char *pStyle,
                                                          const char *pTxt, Evas_Smart_Cb pClickFunc,
                                                          Evas_Smart_Cb pPressFunc,
@@ -57,6 +68,13 @@ Evas_Object *vp_button_create(Evas_Object * pParent, const char *pStyle,
        return pObj;
 }
 
+/**
+ *
+ * @param pParent
+ * @param pEdjPath
+ * @param pGroupName
+ * @return
+ */
 Evas_Object *vp_button_create_icon(Evas_Object * pParent,
                                                                   const char *pEdjPath,
                                                                   const char *pGroupName)
@@ -80,6 +98,13 @@ Evas_Object *vp_button_create_icon(Evas_Object * pParent,
 }
 
 
+/**
+ *
+ * @param pParent
+ * @param pEdjPath
+ * @param pGroupName
+ * @return
+ */
 Evas_Object *vp_button_create_image(Evas_Object * pParent,
                                                                        const char *pEdjPath,
                                                                        const char *pGroupName)
@@ -99,6 +124,16 @@ Evas_Object *vp_button_create_image(Evas_Object * pParent,
        return pObj;
 }
 
+/**
+ *
+ * @param pParent
+ * @param pStyle
+ * @param pEdjPath
+ * @param pGroupName
+ * @param pClickFunc
+ * @param pUserData
+ * @return
+ */
 Evas_Object *vp_navirame_button_create(Evas_Object * pParent,
                                                                           const char *pStyle,
                                                                           const char *pEdjPath,
index afbffcc..d471ce4 100644 (file)
 #include "vp-play-log.h"
 
 
+/**
+ *
+ * @param pParent
+ * @param nSize
+ * @return
+ */
 Evas_Object *vp_play_loading_ani_create(Evas_Object * pParent,
                                                                                video_loading_size_t nSize)
 {
@@ -51,6 +57,10 @@ Evas_Object *vp_play_loading_ani_create(Evas_Object * pParent,
 
 }
 
+/**
+ *
+ * @param pProgress
+ */
 void vp_play_loading_ani_destroy(Evas_Object * pProgress)
 {
        if (pProgress == NULL) {
index fbd19cb..930919f 100644 (file)
@@ -48,6 +48,13 @@ static Eina_Bool _vp_lockscreenmini_hide_video_mini_controller(void
                                                                                                                           *pUserData);
 
 
+/**
+ *
+ * @param parent
+ * @param file
+ * @param group
+ * @return
+ */
 static Evas_Object *_load_edj(Evas_Object * parent, const char *file,
                                                          const char *group)
 {
@@ -81,12 +88,21 @@ static Evas_Object *_load_edj(Evas_Object * parent, const char *file,
        return eo;
 }
 
+/**
+ *
+ * @param event_type
+ * @param event_arg
+ */
 static void _lockscreen_cb(minicontrol_viewer_event_e event_type,
                                                   bundle * event_arg)
 {
        /*Need to handle events */
 }
 
+/**
+ *
+ * @param pPlayView
+ */
 static void _load_lockscreenmini(PlayView * pPlayView)
 {
        if (!pPlayView) {
@@ -115,6 +131,10 @@ static void _load_lockscreenmini(PlayView * pPlayView)
 }
 
 
+/**
+ *
+ * @param pPlayView
+ */
 void vp_lockscreenmini_update_winmini_size(PlayView * pPlayView)
 {
        if (!pPlayView) {
@@ -144,6 +164,11 @@ void vp_lockscreenmini_update_winmini_size(PlayView * pPlayView)
        return;
 }
 
+/**
+ *
+ * @param pPlayView
+ * @return
+ */
 int vp_lockscreenmini_create(PlayView * pPlayView)
 {
        if (!pPlayView) {
@@ -165,6 +190,11 @@ int vp_lockscreenmini_create(PlayView * pPlayView)
 }
 
 
+/**
+ *
+ * @param pPlayView
+ * @return
+ */
 int vp_lockscreenmini_show(PlayView * pPlayView)
 {
        VideoLogDebug("minicontroller view show!!");
@@ -184,6 +214,10 @@ int vp_lockscreenmini_show(PlayView * pPlayView)
        return 0;
 }
 
+/**
+ *
+ * @param pPlayView
+ */
 static void _vp_lockscreenmini_update_btn(PlayView * pPlayView)
 {
        if (!pPlayView) {
@@ -216,6 +250,11 @@ static void _vp_lockscreenmini_update_btn(PlayView * pPlayView)
        }
 }
 
+/**
+ *
+ * @param data
+ * @return
+ */
 static Eina_Bool _vp_lockscreenmini_btn_update_timer(void *data)
 {
        PlayView *pPlayView = (PlayView *) data;
@@ -230,6 +269,10 @@ static Eina_Bool _vp_lockscreenmini_btn_update_timer(void *data)
        return EINA_FALSE;
 }
 
+/**
+ *
+ * @param pPlayView
+ */
 static void _vp_lockscreenmini_update_playpause_btn(PlayView * pPlayView)
 {
        VP_EVAS_TIMER_DEL(pPlayView->lockmini_button_timer);
@@ -248,6 +291,10 @@ static void _vp_lockscreenmini_update_playpause_btn(PlayView * pPlayView)
        }
 }
 
+/**
+ *
+ * @param pPlayView
+ */
 void vp_lockscreenmini_update_control(PlayView * pPlayView)
 {
        if (!pPlayView) {
@@ -262,6 +309,12 @@ void vp_lockscreenmini_update_control(PlayView * pPlayView)
        _vp_lockscreenmini_update_playpause_btn(pPlayView);
 }
 
+/**
+ *
+ * @param data
+ * @param obj
+ * @param event_info
+ */
 static void _vp_lockscreenmini_play_pause_btn_clicked_cb(void *data,
                                                                                                                 Evas_Object * obj,
                                                                                                                 void *event_info)
@@ -316,6 +369,12 @@ static void _vp_lockscreenmini_play_pause_btn_clicked_cb(void *data,
        }
 }
 
+/**
+ *
+ * @param data
+ * @param obj
+ * @param event_info
+ */
 static void _vp_lockscreenmini_ff_btn_pressed_cb(void *data,
                                                                                                 Evas_Object * obj,
                                                                                                 void *event_info)
@@ -324,6 +383,12 @@ static void _vp_lockscreenmini_ff_btn_pressed_cb(void *data,
        time(&press_time);
 }
 
+/**
+ *
+ * @param data
+ * @param obj
+ * @param event_info
+ */
 static void _vp_lockscreenmini_ff_btn_unpressed_cb(void *data,
                                                                                                   Evas_Object * obj,
                                                                                                   void *event_info)
@@ -345,6 +410,12 @@ static void _vp_lockscreenmini_ff_btn_unpressed_cb(void *data,
                                                   "signal.button.unpressed", "ff_btn");
 }
 
+/**
+ * .
+ * @param data
+ * @param obj
+ * @param event_info
+ */
 static void _vp_lockscreenmini_ff_btn_clicked_cb(void *data,
                                                                                                 Evas_Object * obj,
                                                                                                 void *event_info)
@@ -359,6 +430,12 @@ static void _vp_lockscreenmini_ff_btn_clicked_cb(void *data,
                                                                                                   LC_CONTROLLER_FF_BUTTON);
 }
 
+/**
+ *
+ * @param data
+ * @param obj
+ * @param event_info
+ */
 static void _vp_lockscreenmini_rew_btn_pressed_cb(void *data,
                                                                                                  Evas_Object * obj,
                                                                                                  void *event_info)
@@ -367,6 +444,12 @@ static void _vp_lockscreenmini_rew_btn_pressed_cb(void *data,
        time(&press_time);
 }
 
+/**
+ *
+ * @param data
+ * @param obj
+ * @param event_info
+ */
 static void _vp_lockscreenmini_rew_btn_unpressed_cb(void *data,
                                                                                                        Evas_Object * obj,
                                                                                                        void *event_info)
@@ -389,6 +472,12 @@ static void _vp_lockscreenmini_rew_btn_unpressed_cb(void *data,
 
 }
 
+/**
+ *
+ * @param data
+ * @param obj
+ * @param event_info
+ */
 static void _vp_lockscreenmini_rew_btn_clicked_cb(void *data,
                                                                                                  Evas_Object * obj,
                                                                                                  void *event_info)
@@ -405,6 +494,11 @@ static void _vp_lockscreenmini_rew_btn_clicked_cb(void *data,
 
 /*end of focused UI callbacks*/
 
+/**
+ *
+ * @param pPlayView
+ * @param landscape
+ */
 static void
 _vp_lockscreenmini_update_layout(PlayView * pPlayView, bool landscape)
 {
@@ -505,6 +599,10 @@ _vp_lockscreenmini_update_layout(PlayView * pPlayView, bool landscape)
        _vp_lockscreenmini_update_btn(pPlayView);
 }
 
+/**
+ *
+ * @param pPlayView
+ */
 static void _vp_lockscreenmini_title_set(PlayView * pPlayView)
 {
        VideoLogDebug("title set");
@@ -569,6 +667,11 @@ static void _vp_lockscreenmini_title_set(PlayView * pPlayView)
        evas_object_show(label);
 }
 
+/**
+ *
+ * @param pUserData
+ * @return
+ */
 static Eina_Bool _vp_lockscreenmini_hide_video_mini_controller(void
                                                                                                                           *pUserData)
 {
@@ -583,7 +686,10 @@ static Eina_Bool _vp_lockscreenmini_hide_video_mini_controller(void
        return EINA_FALSE;
 }
 
-
+/**
+ *
+ * @param pPlayView
+ */
 void vp_lockscreenmini_update(PlayView * pPlayView)
 {
        if (!pPlayView) {
@@ -609,6 +715,11 @@ void vp_lockscreenmini_update(PlayView * pPlayView)
 
 }
 
+/**
+ *
+ * @param pPlayView
+ * @return
+ */
 int vp_lockscreenmini_hide(PlayView * pPlayView)
 {
        if (!pPlayView || !pPlayView->win_lockmini)
@@ -622,7 +733,11 @@ int vp_lockscreenmini_hide(PlayView * pPlayView)
        return 0;
 }
 
-
+/**
+ *
+ * @param pPlayView
+ * @return
+ */
 int vp_lockscreenmini_destroy(PlayView * pPlayView)
 {
        VideoLogDebug("lockscreenmini view destroy!!");
index 4304395..cbe2565 100644 (file)
@@ -55,6 +55,10 @@ static void _vp_minicontroller_title_set(PlayView * pPlayView);
 
 PlayView *app_data;
 
+/**
+ *
+ * @return
+ */
 static bool _vp_minicontroller_is_long_press()
 {
        bool result = false;
@@ -71,6 +75,12 @@ static bool _vp_minicontroller_is_long_press()
        return result;
 }
 
+/**
+ *
+ * @param pPlayView
+ * @param angle
+ * @return
+ */
 static bool
 _vp_minicontroller_landscape_is(PlayView * pPlayView, int angle)
 {
@@ -92,6 +102,10 @@ _vp_minicontroller_landscape_is(PlayView * pPlayView, int angle)
        return landscape;
 }
 
+/**
+ *
+ * @param pPlayView
+ */
 static void
 _vp_minicontroller_action_show_player_view(PlayView * pPlayView)
 {
@@ -106,6 +120,13 @@ _vp_minicontroller_action_show_player_view(PlayView * pPlayView)
 
 }
 
+/**
+ *
+ * @param data
+ * @param obj
+ * @param emission
+ * @param source
+ */
 static void
 _minicontroller_action_cb(void *data, Evas_Object * obj,
                                                  const char *emission, const char *source)
@@ -127,6 +148,13 @@ _minicontroller_action_cb(void *data, Evas_Object * obj,
 
 }
 
+/**
+ *
+ * @param parent
+ * @param file
+ * @param group
+ * @return
+ */
 static Evas_Object *_load_edj(Evas_Object * parent, const char *file,
                                                          const char *group)
 {
@@ -159,6 +187,11 @@ static Evas_Object *_load_edj(Evas_Object * parent, const char *file,
        return eo;
 }
 
+/**
+ *
+ * @param event_type
+ * @param event_arg
+ */
 static void _quick_panel_cb(minicontrol_viewer_event_e event_type,
                                                        bundle * event_arg)
 {
@@ -183,6 +216,10 @@ static void _quick_panel_cb(minicontrol_viewer_event_e event_type,
        }
 }
 
+/**
+ *
+ * @param pPlayView
+ */
 static void _load_minicontroller(PlayView * pPlayView)
 {
        if (!pPlayView) {
@@ -215,7 +252,10 @@ static void _load_minicontroller(PlayView * pPlayView)
        return;
 }
 
-
+/**
+ *
+ * @param pPlayView
+ */
 void vp_minicontroller_update_winmini_size(PlayView * pPlayView)
 {
        if (!pPlayView) {
@@ -258,6 +298,11 @@ void vp_minicontroller_update_winmini_size(PlayView * pPlayView)
        return;
 }
 
+/**
+ *
+ * @param pPlayView
+ * @return
+ */
 int vp_minicontroller_create(PlayView * pPlayView)
 {
        if (!pPlayView) {
@@ -283,7 +328,11 @@ int vp_minicontroller_create(PlayView * pPlayView)
        return 0;
 }
 
-
+/**
+ *
+ * @param pPlayView
+ * @return
+ */
 int vp_minicontroller_show(PlayView * pPlayView)
 {
        VideoLogDebug("Showing controller!");
@@ -303,6 +352,10 @@ int vp_minicontroller_show(PlayView * pPlayView)
 
 }
 
+/**
+ *
+ * @param pPlayView
+ */
 static void _vp_minicontroller_update_btn(PlayView * pPlayView)
 {
        VideoLogError("Updating play/pause button!!!!!!!!!!!");
@@ -329,6 +382,11 @@ static void _vp_minicontroller_update_btn(PlayView * pPlayView)
 
 }
 
+/**
+ *
+ * @param data
+ * @return
+ */
 static Eina_Bool _vp_minicontroller_btn_update_timer(void *data)
 {
        PlayView *pPlayView = (PlayView *) data;
@@ -343,6 +401,10 @@ static Eina_Bool _vp_minicontroller_btn_update_timer(void *data)
        return EINA_FALSE;
 }
 
+/**
+ *
+ * @param pPlayView
+ */
 static void _vp_minicontroller_update_playpause_btn(PlayView * pPlayView)
 {
        VP_EVAS_TIMER_DEL(pPlayView->minicon_button_timer);
@@ -361,6 +423,10 @@ static void _vp_minicontroller_update_playpause_btn(PlayView * pPlayView)
        }
 }
 
+/**
+ *
+ * @param pPlayView
+ */
 void vp_minicontroller_update_control(PlayView * pPlayView)
 {
        VideoLogDebug("Updating controller!!!!");
@@ -376,6 +442,10 @@ void vp_minicontroller_update_control(PlayView * pPlayView)
        _vp_minicontroller_update_playpause_btn(pPlayView);
 }
 
+/**
+ *
+ * @return
+ */
 int _vp_is_current_focus_available()
 {
        sound_stream_focus_change_reason_e changed_by =
@@ -430,6 +500,12 @@ int _vp_is_current_focus_available()
        return 0;
 }
 
+/**
+ *
+ * @param data
+ * @param obj
+ * @param event_info
+ */
 static void _vp_minicontroller_play_pause_btn_clicked_cb(void *data,
                                                                                                                 Evas_Object * obj,
                                                                                                                 void *event_info)
@@ -468,6 +544,12 @@ static void _vp_minicontroller_play_pause_btn_clicked_cb(void *data,
        }
 }
 
+/**
+ *
+ * @param data
+ * @param obj
+ * @param event_info
+ */
 static void _vp_minicontroller_ff_btn_pressed_cb(void *data,
                                                                                                 Evas_Object * obj,
                                                                                                 void *event_info)
@@ -476,6 +558,12 @@ static void _vp_minicontroller_ff_btn_pressed_cb(void *data,
        time(&press_time);
 }
 
+/**
+ *
+ * @param data
+ * @param obj
+ * @param event_info
+ */
 static void _vp_minicontroller_ff_btn_unpressed_cb(void *data,
                                                                                                   Evas_Object * obj,
                                                                                                   void *event_info)
@@ -497,6 +585,12 @@ static void _vp_minicontroller_ff_btn_unpressed_cb(void *data,
                                                   "ff_btn_unpressed", "c_source");
 }
 
+/**
+ *
+ * @param data
+ * @param obj
+ * @param event_info
+ */
 static void _vp_minicontroller_ff_btn_clicked_cb(void *data,
                                                                                                 Evas_Object * obj,
                                                                                                 void *event_info)
@@ -518,6 +612,13 @@ static void _vp_minicontroller_ff_btn_clicked_cb(void *data,
                                                                                                   CONTROLLER_FF_BUTTON);
 }
 
+/**
+ *
+ * @param data
+ * @param e
+ * @param obj
+ * @param event_info
+ */
 static void
 _vp_minicontroller_ff_btn_del_cb(void *data, Evas * e, Evas_Object * obj,
                                                                 void *event_info)
@@ -525,6 +626,12 @@ _vp_minicontroller_ff_btn_del_cb(void *data, Evas * e, Evas_Object * obj,
        /* Forward button remove cb */
 }
 
+/**
+ *
+ * @param data
+ * @param obj
+ * @param event_info
+ */
 static void _vp_minicontroller_rew_btn_pressed_cb(void *data,
                                                                                                  Evas_Object * obj,
                                                                                                  void *event_info)
@@ -533,6 +640,12 @@ static void _vp_minicontroller_rew_btn_pressed_cb(void *data,
        time(&press_time);
 }
 
+/**
+ *
+ * @param data
+ * @param obj
+ * @param event_info
+ */
 static void _vp_minicontroller_rew_btn_unpressed_cb(void *data,
                                                                                                        Evas_Object * obj,
                                                                                                        void *event_info)
@@ -555,6 +668,12 @@ static void _vp_minicontroller_rew_btn_unpressed_cb(void *data,
 
 }
 
+/**
+ *
+ * @param data
+ * @param obj
+ * @param event_info
+ */
 static void _vp_minicontroller_rew_btn_clicked_cb(void *data,
                                                                                                  Evas_Object * obj,
                                                                                                  void *event_info)
@@ -576,6 +695,13 @@ static void _vp_minicontroller_rew_btn_clicked_cb(void *data,
                                                                                                   CONTROLLER_REW_BUTTON);
 }
 
+/**
+ *
+ * @param data
+ * @param e
+ * @param obj
+ * @param event_info
+ */
 static void
 _vp_minicontroller_rew_btn_del_cb(void *data, Evas * e, Evas_Object * obj,
                                                                  void *event_info)
@@ -585,6 +711,11 @@ _vp_minicontroller_rew_btn_del_cb(void *data, Evas * e, Evas_Object * obj,
 
 /*end of focused UI callbacks*/
 
+/**
+ *
+ * @param pPlayView
+ * @param landscape
+ */
 static void
 _vp_minicontroller_update_layout(PlayView * pPlayView, bool landscape)
 {
@@ -716,6 +847,10 @@ _vp_minicontroller_update_layout(PlayView * pPlayView, bool landscape)
 
 }
 
+/**
+ *
+ * @param pPlayView
+ */
 static void _vp_minicontroller_title_set(PlayView * pPlayView)
 {
        if (!pPlayView) {
@@ -773,6 +908,11 @@ static void _vp_minicontroller_title_set(PlayView * pPlayView)
 
 }
 
+/**
+ *
+ * @param pPlayView
+ * @param with_title
+ */
 void vp_minicontroller_update(PlayView * pPlayView, bool with_title)
 {
        if (!pPlayView) {
@@ -816,6 +956,11 @@ void vp_minicontroller_update(PlayView * pPlayView, bool with_title)
        evas_object_show(pPlayView->minicontroller_layout);
 }
 
+/**
+ *
+ * @param pPlayView
+ * @return
+ */
 int vp_minicontroller_destroy(PlayView * pPlayView)
 {
        VideoLogDebug("minicontroller view destroy!!");
@@ -860,6 +1005,11 @@ int vp_minicontroller_destroy(PlayView * pPlayView)
        return 0;
 }
 
+/**
+ *
+ * @param pPlayView
+ * @param angle
+ */
 void vp_minicontroller_rotate(PlayView * pPlayView, int angle)
 {
        if (!pPlayView) {
index ed8f11a..e20c75f 100644 (file)
 /* check temp */
 #include "vp-play-log.h"
 
+/**
+ *
+ * @param pParent
+ * @param nStyle
+ * @param szTitle
+ * @param szContent
+ * @param dTimeOut
+ * @param pTimeoutFunc
+ * @param pCancelKeyCb
+ * @param pCancelMouseCb
+ * @param pUserData
+ * @return
+ */
 Evas_Object *vp_popup_create(Evas_Object * pParent,
                                                         video_popup_style_t nStyle, char *szTitle,
                                                         char *szContent, double dTimeOut,
@@ -92,7 +105,18 @@ Evas_Object *vp_popup_create(Evas_Object * pParent,
        return pObj;
 }
 
-
+/**
+ *
+ * @param pParent
+ * @param szTitle
+ * @param szContent
+ * @param pLeftButtonText
+ * @param leftButtonCb
+ * @param pRightButtonText
+ * @param rightButtonCb
+ * @param pUserData
+ * @return
+ */
 Evas_Object *vp_two_button_popup_create(Evas_Object * pParent,
                                                                                char *szTitle,
                                                                                char *szContent,
@@ -151,6 +175,18 @@ Evas_Object *vp_two_button_popup_create(Evas_Object * pParent,
 }
 
 #ifdef _SUBTITLE_MULTI_LANGUAGE
+/**
+ *
+ * @param pParent
+ * @param szTitle
+ * @param szContent
+ * @param pLeftButtonText
+ * @param leftButtonCb
+ * @param pRightButtonText
+ * @param rightButtonCb
+ * @param pUserData
+ * @return
+ */
 Evas_Object *vp_title_two_button_popup_create(Evas_Object * pParent,
                                                                                          char *szTitle,
                                                                                          char *szContent,
@@ -173,6 +209,11 @@ Evas_Object *vp_title_two_button_popup_create(Evas_Object * pParent,
        return pPopup;
 }
 #endif
+/**
+ *
+ * @param pWin
+ * @return
+ */
 bool vp_popup_check_landspace_by_win(Evas_Object * pWin)
 {
        if (!pWin) {
@@ -187,6 +228,13 @@ bool vp_popup_check_landspace_by_win(Evas_Object * pWin)
        return bLandSpace;
 }
 
+/**
+ *
+ * @param pWin
+ * @param pBox
+ * @param nListCount
+ * @param eStyle
+ */
 void vp_popup_set_popup_min_size(Evas_Object * pWin, Evas_Object * pBox,
                                                                 int nListCount,
                                                                 video_list_popup_style_t eStyle)
index 10cb75d..d5ddbf8 100644 (file)
@@ -46,13 +46,18 @@ typedef struct _ProgressWidget {
 } ProgressWidget;
 
 
-
 static void _vp_play_progressbar_destory_handle(ProgressWidget *
                                                                                                pProgressWidget);
 
 
 
 /* callback functions */
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pEventInfo
+ */
 static void __vp_play_progressbar_key_focus_cb(void *pUserData,
                                                                                           Evas_Object * pObj,
                                                                                           void *pEventInfo)
@@ -75,6 +80,12 @@ static void __vp_play_progressbar_key_focus_cb(void *pUserData,
        VideoLogInfo("progress focus in");
 }
 
+/**
+ *
+ * @param pUserData
+ * @param pObj
+ * @param pEventInfo
+ */
 static void __vp_play_progressbar_key_unfocus_cb(void *pUserData,
                                                                                                 Evas_Object * pObj,
                                                                                                 void *pEventInfo)
@@ -97,7 +108,10 @@ static void __vp_play_progressbar_key_unfocus_cb(void *pUserData,
 }
 
 /* internal functions */
-
+/**
+ *
+ * @param pProgressWidget
+ */
 static void _vp_play_progressbar_value_update(ProgressWidget *
                                                                                          pProgressWidget)
 {
@@ -138,6 +152,10 @@ static void _vp_play_progressbar_value_update(ProgressWidget *
 
 }
 
+/**
+ *
+ * @param pProgressWidget
+ */
 static void _vp_play_progressbar_destory_handle(ProgressWidget *
                                                                                                pProgressWidget)
 {
@@ -165,6 +183,12 @@ static void _vp_play_progressbar_destory_handle(ProgressWidget *
        VP_FREE(pProgressWidget);
 }
 
+/**
+ *
+ * @param pParent
+ * @param nType
+ * @return
+ */
 static Evas_Object *_vp_play_progressbar_create_layout(Evas_Object *
                                                                                                           pParent,
                                                                                                           video_progressbar_type_t
@@ -206,6 +230,13 @@ static Evas_Object *_vp_play_progressbar_create_layout(Evas_Object *
 
 }
 
+/**
+ *
+ * @param pUserData
+ * @param e
+ * @param pObject
+ * @param pEventInfo
+ */
 static void _vp_play_progressbar_layout_del_cb(void *pUserData, Evas * e,
                                                                                           Evas_Object * pObject,
                                                                                           void *pEventInfo)
@@ -222,6 +253,11 @@ static void _vp_play_progressbar_layout_del_cb(void *pUserData, Evas * e,
 
 }
 
+/**
+ *
+ * @param pProgressWidget
+ * @return
+ */
 static bool _vp_play_progressbar_init_layout(ProgressWidget *
                                                                                         pProgressWidget)
 {
@@ -277,7 +313,12 @@ static bool _vp_play_progressbar_init_layout(ProgressWidget *
        return TRUE;
 }
 
-
+/**
+ *
+ * @param pParent
+ * @param nType
+ * @return
+ */
 progressbar_handle vp_play_progressbar_create(Evas_Object * pParent,
                                                                                          video_progressbar_type_t
                                                                                          nType)
@@ -311,6 +352,10 @@ progressbar_handle vp_play_progressbar_create(Evas_Object * pParent,
        return (progressbar_handle) pProgressWidget;
 }
 
+/**
+ *
+ * @param pWidgetHandle
+ */
 void vp_play_progressbar_destroy(progressbar_handle pWidgetHandle)
 {
        if (pWidgetHandle == NULL) {
@@ -324,7 +369,11 @@ void vp_play_progressbar_destroy(progressbar_handle pWidgetHandle)
        return;
 }
 
-
+/**
+ *
+ * @param pWidgetHandle
+ * @return
+ */
 bool vp_play_progressbar_realize(progressbar_handle pWidgetHandle)
 {
        if (pWidgetHandle == NULL) {
@@ -338,6 +387,11 @@ bool vp_play_progressbar_realize(progressbar_handle pWidgetHandle)
        return TRUE;
 }
 
+/**
+ *
+ * @param pWidgetHandle
+ * @return
+ */
 bool vp_play_progressbar_unrealize(progressbar_handle pWidgetHandle)
 {
        if (pWidgetHandle == NULL) {
@@ -351,6 +405,11 @@ bool vp_play_progressbar_unrealize(progressbar_handle pWidgetHandle)
        return TRUE;
 }
 
+/**
+ *
+ * @param pWidgetHandle
+ * @return
+ */
 Evas_Object *vp_play_progressbar_get_object(progressbar_handle
                                                                                        pWidgetHandle)
 {
@@ -363,6 +422,11 @@ Evas_Object *vp_play_progressbar_get_object(progressbar_handle
        return pProgressWidget->pLayout;
 }
 
+/**
+ *
+ * @param pWidgetHandle
+ * @return
+ */
 Evas_Object *vp_play_progressbar_get_focus_object(progressbar_handle
                                                                                                  pWidgetHandle)
 {
@@ -375,6 +439,12 @@ Evas_Object *vp_play_progressbar_get_focus_object(progressbar_handle
        return pProgressWidget->pFocusPoint;
 }
 
+/**
+ *
+ * @param pWidgetHandle
+ * @param nDuration
+ * @return
+ */
 bool vp_play_progressbar_set_duration(progressbar_handle pWidgetHandle,
                                                                          int nDuration)
 {
@@ -404,6 +474,12 @@ bool vp_play_progressbar_set_duration(progressbar_handle pWidgetHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pWidgetHandle
+ * @param nPosition
+ * @return
+ */
 bool vp_play_progressbar_set_position(progressbar_handle pWidgetHandle,
                                                                          int nPosition)
 {
@@ -421,6 +497,12 @@ bool vp_play_progressbar_set_position(progressbar_handle pWidgetHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pWidgetHandle
+ * @param nBufferinPosition
+ * @return
+ */
 bool vp_play_progressbar_set_buffering_position(progressbar_handle
                                                                                                pWidgetHandle,
                                                                                                int nBufferinPosition)
@@ -439,6 +521,12 @@ bool vp_play_progressbar_set_buffering_position(progressbar_handle
        return TRUE;
 }
 
+/**
+ *
+ * @param pWidgetHandle
+ * @param bLandscape
+ * @return
+ */
 bool vp_play_progressbar_set_landscape_mode(progressbar_handle
                                                                                        pWidgetHandle, bool bLandscape)
 {
@@ -467,6 +555,12 @@ bool vp_play_progressbar_set_landscape_mode(progressbar_handle
 
 }
 
+/**
+ *
+ * @param pWidgetHandle
+ * @param bOpacity
+ * @return
+ */
 bool vp_play_progressbar_set_opacity(progressbar_handle pWidgetHandle,
                                                                         bool bOpacity)
 {
index 55aee92..a329484 100644 (file)
@@ -51,6 +51,10 @@ void _vp_play_subtitle_destroy_handle(Subtitle * pSubtitle);
 /* callback functions */
 
 /* internal functions */
+/**
+ *
+ * @param pSubtitle
+ */
 void _vp_play_subtitle_destroy_handle(Subtitle * pSubtitle)
 {
        if (pSubtitle == NULL) {
@@ -70,6 +74,12 @@ void _vp_play_subtitle_destroy_handle(Subtitle * pSubtitle)
        VP_FREE(pSubtitle);
 }
 
+/**
+ *
+ * @param pParent
+ * @param nType
+ * @return
+ */
 static Evas_Object *_vp_play_subtitle_create_layout(Evas_Object * pParent,
                                                                                                        vp_subtitle_type_t
                                                                                                        nType)
@@ -111,6 +121,13 @@ static Evas_Object *_vp_play_subtitle_create_layout(Evas_Object * pParent,
        return pObj;
 }
 
+/**
+ *
+ * @param pUserData
+ * @param e
+ * @param pObject
+ * @param pEventInfo
+ */
 static void _vp_play_subtitle_layout_del_cb(void *pUserData, Evas * e,
                                                                                        Evas_Object * pObject,
                                                                                        void *pEventInfo)
@@ -124,6 +141,12 @@ static void _vp_play_subtitle_layout_del_cb(void *pUserData, Evas * e,
 
 }
 
+/**
+ *
+ * @param pSubtitle
+ * @param nType
+ * @return
+ */
 static bool _vp_play_subtitle_init_layout(Subtitle * pSubtitle,
                                                                                  vp_subtitle_type_t nType)
 {
@@ -148,6 +171,11 @@ static bool _vp_play_subtitle_init_layout(Subtitle * pSubtitle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pSubtitle
+ * @param szTxt
+ */
 void vp_play_subtitle_text_update(Subtitle * pSubtitle, const char *szTxt)
 {
        if (!pSubtitle || !pSubtitle->pLayout) {
@@ -284,8 +312,13 @@ void vp_play_subtitle_text_update(Subtitle * pSubtitle, const char *szTxt)
 #endif
 }
 
-
 /* external functions */
+/**
+ *
+ * @param pParent
+ * @param nType
+ * @return
+ */
 subtitle_handle vp_play_subtitle_create(Evas_Object * pParent,
                                                                                vp_subtitle_type_t nType)
 {
@@ -315,6 +348,10 @@ subtitle_handle vp_play_subtitle_create(Evas_Object * pParent,
        return pSubtitle;
 }
 
+/**
+ *
+ * @param pWidgetHandle
+ */
 void vp_play_subtitle_destroy(subtitle_handle pWidgetHandle)
 {
        if (pWidgetHandle == NULL) {
@@ -329,6 +366,11 @@ void vp_play_subtitle_destroy(subtitle_handle pWidgetHandle)
        _vp_play_subtitle_destroy_handle(pSubtitle);
 }
 
+/**
+ *
+ * @param pWidgetHandle
+ * @return
+ */
 bool vp_play_subtitle_realize(subtitle_handle pWidgetHandle)
 {
        if (pWidgetHandle == NULL) {
@@ -349,6 +391,11 @@ bool vp_play_subtitle_realize(subtitle_handle pWidgetHandle)
        return TRUE;
 }
 
+/**
+ *
+ * @param pWidgetHandle
+ * @return
+ */
 bool vp_play_subtitle_unrealize(subtitle_handle pWidgetHandle)
 {
        if (pWidgetHandle == NULL) {
@@ -369,6 +416,12 @@ bool vp_play_subtitle_unrealize(subtitle_handle pWidgetHandle)
        return TRUE;
 }
 
+/**
+ *
+ * @param pWidgetHandle
+ * @param bIsRealize
+ * @return
+ */
 bool vp_play_subtitle_is_realize(subtitle_handle pWidgetHandle,
                                                                 bool * bIsRealize)
 {
@@ -385,6 +438,11 @@ bool vp_play_subtitle_is_realize(subtitle_handle pWidgetHandle,
 
 }
 
+/**
+ *
+ * @param pWidgetHandle
+ * @return
+ */
 Evas_Object *vp_play_subtitle_get_object(subtitle_handle pWidgetHandle)
 {
        if (pWidgetHandle == NULL) {
@@ -397,6 +455,12 @@ Evas_Object *vp_play_subtitle_get_object(subtitle_handle pWidgetHandle)
        return pSubtitle->pLayout;
 }
 
+/**
+ *
+ * @param pWidgetHandle
+ * @param szFontName
+ * @return
+ */
 bool vp_play_subtitle_set_font(subtitle_handle pWidgetHandle,
                                                           char *szFontName)
 {
@@ -423,6 +487,12 @@ bool vp_play_subtitle_set_font(subtitle_handle pWidgetHandle,
 
 }
 
+/**
+ *
+ * @param pWidgetHandle
+ * @param szFontName
+ * @return
+ */
 bool vp_play_subtitle_get_font(subtitle_handle pWidgetHandle,
                                                           char **szFontName)
 {
@@ -443,6 +513,12 @@ bool vp_play_subtitle_get_font(subtitle_handle pWidgetHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pWidgetHandle
+ * @param nEdge
+ * @return
+ */
 bool vp_play_subtitle_set_edge(subtitle_handle pWidgetHandle, int nEdge)
 {
        if (pWidgetHandle == NULL) {
@@ -461,6 +537,12 @@ bool vp_play_subtitle_set_edge(subtitle_handle pWidgetHandle, int nEdge)
        return TRUE;
 }
 
+/**
+ *
+ * @param pWidgetHandle
+ * @param nEdge
+ * @return
+ */
 bool vp_play_subtitle_get_edge(subtitle_handle pWidgetHandle, int *nEdge)
 {
        if (pWidgetHandle == NULL) {
@@ -475,6 +557,12 @@ bool vp_play_subtitle_get_edge(subtitle_handle pWidgetHandle, int *nEdge)
        return TRUE;
 }
 
+/**
+ *
+ * @param pWidgetHandle
+ * @param nSize
+ * @return
+ */
 bool vp_play_subtitle_set_size(subtitle_handle pWidgetHandle,
                                                           video_subtitle_size_t nSize)
 {
@@ -495,6 +583,12 @@ bool vp_play_subtitle_set_size(subtitle_handle pWidgetHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pWidgetHandle
+ * @param nSize
+ * @return
+ */
 bool vp_play_subtitle_get_size(subtitle_handle pWidgetHandle,
                                                           video_subtitle_size_t * nSize)
 {
@@ -510,6 +604,12 @@ bool vp_play_subtitle_get_size(subtitle_handle pWidgetHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pWidgetHandle
+ * @param fZoom
+ * @return
+ */
 bool vp_play_subtitle_set_size_zoom(subtitle_handle pWidgetHandle,
                                                                        float fZoom)
 {
@@ -532,6 +632,12 @@ bool vp_play_subtitle_set_size_zoom(subtitle_handle pWidgetHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pWidgetHandle
+ * @param fZoom
+ * @return
+ */
 bool vp_play_subtitle_get_size_zoom(subtitle_handle pWidgetHandle,
                                                                        float *fZoom)
 {
@@ -548,6 +654,12 @@ bool vp_play_subtitle_get_size_zoom(subtitle_handle pWidgetHandle,
 }
 
 #ifndef SUBTITLE_K_FEATURE
+/**
+ *
+ * @param pWidgetHandle
+ * @param nColor
+ * @return
+ */
 bool vp_play_subtitle_set_color(subtitle_handle pWidgetHandle,
                                                                video_subtitle_color_t nColor)
 {
@@ -567,6 +679,12 @@ bool vp_play_subtitle_set_color(subtitle_handle pWidgetHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pWidgetHandle
+ * @param nColor
+ * @return
+ */
 bool vp_play_subtitle_get_color(subtitle_handle pWidgetHandle,
                                                                video_subtitle_color_t * nColor)
 {
@@ -582,6 +700,12 @@ bool vp_play_subtitle_get_color(subtitle_handle pWidgetHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pWidgetHandle
+ * @param nColor
+ * @return
+ */
 bool vp_play_subtitle_set_bg_color(subtitle_handle pWidgetHandle,
                                                                   video_subtitle_color_t nColor)
 {
@@ -602,6 +726,12 @@ bool vp_play_subtitle_set_bg_color(subtitle_handle pWidgetHandle,
 
 }
 
+/**
+ *
+ * @param pWidgetHandle
+ * @param nColor
+ * @return
+ */
 bool vp_play_subtitle_get_bg_color(subtitle_handle pWidgetHandle,
                                                                   video_subtitle_color_t * nColor)
 {
@@ -617,6 +747,12 @@ bool vp_play_subtitle_get_bg_color(subtitle_handle pWidgetHandle,
        return TRUE;
 }
 #else
+/**
+ *
+ * @param pWidgetHandle
+ * @param pColorHex
+ * @return
+ */
 bool vp_play_subtitle_get_color(subtitle_handle pWidgetHandle,
                                                                char **pColorHex)
 {
@@ -637,6 +773,12 @@ bool vp_play_subtitle_get_color(subtitle_handle pWidgetHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pWidgetHandle
+ * @param pColorHex
+ * @return
+ */
 bool vp_play_subtitle_set_color(subtitle_handle pWidgetHandle,
                                                                char *pColorHex)
 {
@@ -657,6 +799,12 @@ bool vp_play_subtitle_set_color(subtitle_handle pWidgetHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pWidgetHandle
+ * @param pColorHex
+ * @return
+ */
 bool vp_play_subtitle_get_bg_color(subtitle_handle pWidgetHandle,
                                                                   char **pColorHex)
 {
@@ -677,6 +825,12 @@ bool vp_play_subtitle_get_bg_color(subtitle_handle pWidgetHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pWidgetHandle
+ * @param pColorHex
+ * @return
+ */
 bool vp_play_subtitle_set_bg_color(subtitle_handle pWidgetHandle,
                                                                   char *pColorHex)
 {
@@ -698,6 +852,12 @@ bool vp_play_subtitle_set_bg_color(subtitle_handle pWidgetHandle,
 }
 #endif
 
+/**
+ *
+ * @param pWidgetHandle
+ * @param szText
+ * @return
+ */
 bool vp_play_subtitle_set_text(subtitle_handle pWidgetHandle,
                                                           const char *szText)
 {
@@ -718,6 +878,12 @@ bool vp_play_subtitle_set_text(subtitle_handle pWidgetHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pWidgetHandle
+ * @param szText
+ * @return
+ */
 bool vp_play_subtitle_get_text(subtitle_handle pWidgetHandle,
                                                           char **szText)
 {
@@ -733,6 +899,12 @@ bool vp_play_subtitle_get_text(subtitle_handle pWidgetHandle,
 }
 
 #ifdef SUBTITLE_K_FEATURE
+/**
+ *
+ * @param pWidgetHandle
+ * @param nAlignment
+ * @return
+ */
 bool vp_play_subtitle_set_alignment(subtitle_handle pWidgetHandle,
                                                                        vp_subtitle_alignment_t nAlignment)
 {
@@ -754,6 +926,12 @@ bool vp_play_subtitle_set_alignment(subtitle_handle pWidgetHandle,
 
 }
 
+/**
+ *
+ * @param pWidgetHandle
+ * @param nAlignment
+ * @return
+ */
 bool vp_play_subtitle_get_alignment(subtitle_handle pWidgetHandle,
                                                                        vp_subtitle_alignment_t * nAlignment)
 {
@@ -769,6 +947,12 @@ bool vp_play_subtitle_get_alignment(subtitle_handle pWidgetHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pWidgetHandle
+ * @param bShowCaption
+ * @return
+ */
 bool vp_play_subtitle_set_caption_win_color(subtitle_handle pWidgetHandle,
                                                                                        bool bShowCaption)
 {
@@ -827,6 +1011,16 @@ bool vp_play_subtitle_set_caption_win_color(subtitle_handle pWidgetHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pWidgetHandle
+ * @param bLandscape
+ * @param x
+ * @param y
+ * @param w
+ * @param h
+ * @return
+ */
 bool vp_play_subtitle_get_geometry(subtitle_handle pWidgetHandle,
                                                                   bool bLandscape, Evas_Coord * x,
                                                                   Evas_Coord * y, Evas_Coord * w,
@@ -860,6 +1054,13 @@ bool vp_play_subtitle_get_geometry(subtitle_handle pWidgetHandle,
 }
 #endif
 
+/**
+ *
+ * @param pWidgetHandle
+ * @param ww
+ * @param hh
+ * @return
+ */
 bool vp_play_subtitle_get_size_formatted(subtitle_handle pWidgetHandle,
                                                                                 Evas_Coord * ww, Evas_Coord * hh)
 {
index 9390986..1f3558b 100644 (file)
@@ -66,6 +66,13 @@ static void _vp_play_volume_popup_create_timer(VolumePopupWidget *
                                                                                           pVolumeWidget);
 
 /* callback functions */
+/**
+ *
+ * @param pUserData
+ * @param e
+ * @param pObj
+ * @param pEvent
+ */
 static void __vp_volume_popup_mouse_down_cb(void *pUserData, Evas * e,
                                                                                        Evas_Object * pObj,
                                                                                        void *pEvent)
@@ -99,6 +106,13 @@ static void __vp_volume_popup_mouse_down_cb(void *pUserData, Evas * e,
        pVolumeWidget->bMouseDown = TRUE;
 }
 
+/**
+ *
+ * @param pUserData
+ * @param e
+ * @param pObj
+ * @param pEvent
+ */
 static void __vp_volume_popup_mouse_up_cb(void *pUserData, Evas * e,
                                                                                  Evas_Object * pObj, void *pEvent)
 {
@@ -128,6 +142,13 @@ static void __vp_volume_popup_mouse_up_cb(void *pUserData, Evas * e,
        pVolumeWidget->bMouseDown = FALSE;
 }
 
+/**
+ *
+ * @param pUserData
+ * @param e
+ * @param pObj
+ * @param pEvent
+ */
 static void __vp_volume_popup_mouse_move_cb(void *pUserData, Evas * e,
                                                                                        Evas_Object * pObj,
                                                                                        void *pEvent)
@@ -162,6 +183,11 @@ static void __vp_volume_popup_mouse_move_cb(void *pUserData, Evas * e,
 
 }
 
+/**
+ *
+ * @param pUserData
+ * @return
+ */
 static Eina_Bool __vp_volume_popup_hide_timer_cb(void *pUserData)
 {
        if (!pUserData) {
@@ -181,9 +207,11 @@ static Eina_Bool __vp_volume_popup_hide_timer_cb(void *pUserData)
        return EINA_FALSE;
 }
 
-
-
 /* internal functions */
+/**
+ *
+ * @param pVolumeWidget
+ */
 static void _vp_play_volume_popup_destory_handle(VolumePopupWidget *
                                                                                                 pVolumeWidget)
 {
@@ -199,6 +227,13 @@ static void _vp_play_volume_popup_destory_handle(VolumePopupWidget *
        VP_FREE(pVolumeWidget);
 }
 
+/**
+ *
+ * @param pObj
+ * @param bLandscape
+ * @param nCurY
+ * @return
+ */
 static double _vp_play_volume_popup_get_mouse_pos_ratio(Evas_Object *
                                                                                                                pObj,
                                                                                                                bool bLandscape,
@@ -234,7 +269,10 @@ static double _vp_play_volume_popup_get_mouse_pos_ratio(Evas_Object *
        return dRatio;
 }
 
-
+/**
+ *
+ * @param pVolumeWidget
+ */
 static void _vp_play_volume_popup_set_widget_position(VolumePopupWidget *
                                                                                                          pVolumeWidget)
 {
@@ -256,7 +294,10 @@ static void _vp_play_volume_popup_set_widget_position(VolumePopupWidget *
        }
 }
 
-
+/**
+ *
+ * @param pVolumeWidget
+ */
 static void _vp_play_volume_popup_update_value(VolumePopupWidget *
                                                                                           pVolumeWidget)
 {
@@ -294,6 +335,11 @@ static void _vp_play_volume_popup_update_value(VolumePopupWidget *
        }
 }
 
+/**
+ *
+ * @param pUserData
+ * @return
+ */
 static Eina_Bool __vp_volume_popup_device_timer_cb(void *pUserData)
 {
        if (!pUserData) {
@@ -314,6 +360,11 @@ static Eina_Bool __vp_volume_popup_device_timer_cb(void *pUserData)
        return EINA_FALSE;
 }
 
+/**
+ *
+ * @param pVolumeWidget
+ * @param nValue
+ */
 static void _vp_play_volume_popup_set_value(VolumePopupWidget *
                                                                                        pVolumeWidget, int nValue)
 {
@@ -334,6 +385,10 @@ static void _vp_play_volume_popup_set_value(VolumePopupWidget *
        }
 }
 
+/**
+ *
+ * @param pVolumeWidget
+ */
 static void _vp_play_volume_popup_create_timer(VolumePopupWidget *
                                                                                           pVolumeWidget)
 {
@@ -350,6 +405,11 @@ static void _vp_play_volume_popup_create_timer(VolumePopupWidget *
                                                (void *) pVolumeWidget);
 }
 
+/**
+ *
+ * @param pParent
+ * @return
+ */
 static Evas_Object *_vp_play_volume_popup_create_layout(Evas_Object *
                                                                                                                pParent)
 {
@@ -385,7 +445,11 @@ static Evas_Object *_vp_play_volume_popup_create_layout(Evas_Object *
        return pObj;
 }
 
-
+/**
+ *
+ * @param pVolumeWidget
+ * @return
+ */
 static bool _vp_play_volume_popup_init_layout(VolumePopupWidget *
                                                                                          pVolumeWidget)
 {
@@ -419,9 +483,12 @@ static bool _vp_play_volume_popup_init_layout(VolumePopupWidget *
        return TRUE;
 }
 
-
-
 /* external functions */
+/**
+ *
+ * @param pParent
+ * @return
+ */
 volume_popup_handle vp_play_volume_popup_create(Evas_Object * pParent)
 {
        if (pParent == NULL) {
@@ -464,6 +531,10 @@ volume_popup_handle vp_play_volume_popup_create(Evas_Object * pParent)
        return (volume_popup_handle) pVolumeWidget;
 }
 
+/**
+ *
+ * @param pVolumeHandle
+ */
 void vp_play_volume_popup_destroy(volume_popup_handle pVolumeHandle)
 {
        if (pVolumeHandle == NULL) {
@@ -476,6 +547,11 @@ void vp_play_volume_popup_destroy(volume_popup_handle pVolumeHandle)
        _vp_play_volume_popup_destory_handle(pVolumeWidget);
 }
 
+/**
+ *
+ * @param pVolumeHandle
+ * @return
+ */
 bool vp_play_volume_popup_realize(volume_popup_handle pVolumeHandle)
 {
        if (pVolumeHandle == NULL) {
@@ -497,6 +573,11 @@ bool vp_play_volume_popup_realize(volume_popup_handle pVolumeHandle)
        return TRUE;
 }
 
+/**
+ *
+ * @param pVolumeHandle
+ * @return
+ */
 bool vp_play_volume_popup_unrealize(volume_popup_handle pVolumeHandle)
 {
        if (pVolumeHandle == NULL) {
@@ -513,6 +594,12 @@ bool vp_play_volume_popup_unrealize(volume_popup_handle pVolumeHandle)
        return TRUE;
 }
 
+/**
+ *
+ * @param pVolumeHandle
+ * @param bLandscape
+ * @return
+ */
 bool vp_play_volume_popup_set_landscape_mode(volume_popup_handle
                                                                                         pVolumeHandle,
                                                                                         bool bLandscape)
@@ -532,6 +619,12 @@ bool vp_play_volume_popup_set_landscape_mode(volume_popup_handle
        return TRUE;
 }
 
+/**
+ *
+ * @param pVolumeHandle
+ * @param bIsRealize
+ * @return
+ */
 bool vp_play_volume_popup_is_realize(volume_popup_handle pVolumeHandle,
                                                                         bool * bIsRealize)
 {
@@ -547,7 +640,12 @@ bool vp_play_volume_popup_is_realize(volume_popup_handle pVolumeHandle,
        return TRUE;
 }
 
-
+/**
+ *
+ * @param pVolumeHandle
+ * @param nCurVal
+ * @return
+ */
 bool vp_play_volume_popup_set_value(volume_popup_handle pVolumeHandle,
                                                                        int nCurVal)
 {
@@ -577,6 +675,11 @@ bool vp_play_volume_popup_set_value(volume_popup_handle pVolumeHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param nCurVal
+ * @return
+ */
 bool vp_play_volume_popup_get_value(int *nCurVal)
 {
 
@@ -592,6 +695,11 @@ bool vp_play_volume_popup_get_value(int *nCurVal)
        return TRUE;
 }
 
+/**
+ *
+ * @param nMaxVal
+ * @return
+ */
 bool vp_play_volume_popup_get_max_value(int *nMaxVal)
 {
        int nVal = 0;
@@ -606,7 +714,12 @@ bool vp_play_volume_popup_get_max_value(int *nMaxVal)
        return TRUE;
 }
 
-
+/**
+ *
+ * @param pVolumeHandle
+ * @param bIsMute
+ * @return
+ */
 bool vp_play_volume_popup_is_mute(volume_popup_handle pVolumeHandle,
                                                                  bool * bIsMute)
 {
index 339297e..5ec46f5 100644 (file)
@@ -74,6 +74,13 @@ static bool _vp_play_volume_set_value(VolumeWidget * pVolumeWidget,
 static void _vp_play_volume_create_timer(VolumeWidget * pVolumeWidget);
 
 /* callback functions */
+/**
+ *
+ * @param pUserData
+ * @param e
+ * @param pObj
+ * @param pEvent
+ */
 static void __vp_volume_focus_key_down_cb(void *pUserData, Evas * e,
                                                                                  Evas_Object * pObj, void *pEvent)
 {
@@ -102,6 +109,13 @@ static void __vp_volume_focus_key_down_cb(void *pUserData, Evas * e,
        }
 }
 
+/**
+ *
+ * @param pUserData
+ * @param e
+ * @param pObj
+ * @param pEvent
+ */
 static void __vp_volume_mouse_down_cb(void *pUserData, Evas * e,
                                                                          Evas_Object * pObj, void *pEvent)
 {
@@ -134,6 +148,13 @@ static void __vp_volume_mouse_down_cb(void *pUserData, Evas * e,
        pVolumeWidget->bMouseDown = TRUE;
 }
 
+/**
+ *
+ * @param pUserData
+ * @param e
+ * @param pObj
+ * @param pEvent
+ */
 static void __vp_volume_mouse_up_cb(void *pUserData, Evas * e,
                                                                        Evas_Object * pObj, void *pEvent)
 {
@@ -164,6 +185,13 @@ static void __vp_volume_mouse_up_cb(void *pUserData, Evas * e,
        pVolumeWidget->bMouseDown = FALSE;
 }
 
+/**
+ *
+ * @param pUserData
+ * @param e
+ * @param pObj
+ * @param pEvent
+ */
 static void __vp_volume_mouse_move_cb(void *pUserData, Evas * e,
                                                                          Evas_Object * pObj, void *pEvent)
 {
@@ -197,6 +225,11 @@ static void __vp_volume_mouse_move_cb(void *pUserData, Evas * e,
 
 }
 
+/**
+ *
+ * @param pUserData
+ * @return
+ */
 static Eina_Bool __vp_volume_hide_timer_cb(void *pUserData)
 {
        if (!pUserData) {
@@ -215,9 +248,11 @@ static Eina_Bool __vp_volume_hide_timer_cb(void *pUserData)
        return EINA_FALSE;
 }
 
-
-
 /* internal functions */
+/**
+ *
+ * @param pVolumeWidget
+ */
 static void _vp_play_volume_destory_handle(VolumeWidget * pVolumeWidget)
 {
        if (pVolumeWidget == NULL) {
@@ -235,6 +270,14 @@ static void _vp_play_volume_destory_handle(VolumeWidget * pVolumeWidget)
        VP_FREE(pVolumeWidget);
 }
 
+/**
+ *
+ * @param pObj
+ * @param bLandscape
+ * @param nCurY
+ * @param pWin
+ * @return
+ */
 static double _vp_play_volume_get_mouse_pos_ratio(Evas_Object * pObj,
                                                                                                  bool bLandscape,
                                                                                                  int nCurY,
@@ -302,7 +345,11 @@ static double _vp_play_volume_get_mouse_pos_ratio(Evas_Object * pObj,
        return dRatio;
 }
 
-
+/**
+ *
+ * @param pVolumeWidget
+ * @param pWin
+ */
 static void _vp_play_volume_set_widget_position(VolumeWidget *
                                                                                                pVolumeWidget,
                                                                                                Evas_Object * pWin)
@@ -357,7 +404,10 @@ static void _vp_play_volume_set_widget_position(VolumeWidget *
        }
 }
 
-
+/**
+ *
+ * @param pVolumeWidget
+ */
 static void _vp_play_volume_update_value(VolumeWidget * pVolumeWidget)
 {
        if (pVolumeWidget == NULL) {
@@ -386,6 +436,11 @@ static void _vp_play_volume_update_value(VolumeWidget * pVolumeWidget)
                                                         szPlayingTime);
 }
 
+/**
+ *
+ * @param pUserData
+ * @return
+ */
 static Eina_Bool __vp_volume_device_timer_cb(void *pUserData)
 {
        if (!pUserData) {
@@ -421,6 +476,12 @@ static Eina_Bool __vp_volume_device_timer_cb(void *pUserData)
        return EINA_FALSE;
 }
 
+/**
+ *
+ * @param pVolumeWidget
+ * @param nValue
+ * @return
+ */
 static bool _vp_play_volume_set_value(VolumeWidget * pVolumeWidget,
                                                                          int nValue)
 {
@@ -449,6 +510,10 @@ static bool _vp_play_volume_set_value(VolumeWidget * pVolumeWidget,
        return TRUE;
 }
 
+/**
+ *
+ * @param pVolumeWidget
+ */
 static void _vp_play_volume_create_timer(VolumeWidget * pVolumeWidget)
 {
        if (pVolumeWidget == NULL) {
@@ -463,6 +528,11 @@ static void _vp_play_volume_create_timer(VolumeWidget * pVolumeWidget)
                                                __vp_volume_hide_timer_cb, (void *) pVolumeWidget);
 }
 
+/**
+ *
+ * @param pParent
+ * @return
+ */
 static Evas_Object *_vp_play_volume_create_layout(Evas_Object * pParent)
 {
        if (!pParent) {
@@ -495,7 +565,11 @@ static Evas_Object *_vp_play_volume_create_layout(Evas_Object * pParent)
        return pObj;
 }
 
-
+/**
+ *
+ * @param pVolumeWidget
+ * @return
+ */
 static bool _vp_play_volume_init_layout(VolumeWidget * pVolumeWidget)
 {
        if (pVolumeWidget == NULL) {
@@ -527,6 +601,13 @@ static bool _vp_play_volume_init_layout(VolumeWidget * pVolumeWidget)
 }
 
 /* external functions */
+/**
+ *
+ * @param pParent
+ * @param pPlayerHandle
+ * @param pFunc
+ * @return
+ */
 volume_handle vp_play_volume_create(Evas_Object * pParent,
                                                                        void *pPlayerHandle,
                                                                        NormalVolumeChangeCbFunc pFunc)
@@ -578,6 +659,10 @@ volume_handle vp_play_volume_create(Evas_Object * pParent,
        return (volume_handle) pVolumeWidget;
 }
 
+/**
+ *
+ * @param pVolumeHandle
+ */
 void vp_play_volume_destroy(volume_handle pVolumeHandle)
 {
        if (pVolumeHandle == NULL) {
@@ -592,6 +677,12 @@ void vp_play_volume_destroy(volume_handle pVolumeHandle)
        _vp_play_volume_destory_handle(pVolumeWidget);
 }
 
+/**
+ *
+ * @param pVolumeHandle
+ * @param pWin
+ * @return
+ */
 bool vp_play_volume_realize(volume_handle pVolumeHandle,
                                                        Evas_Object * pWin)
 {
@@ -615,6 +706,11 @@ bool vp_play_volume_realize(volume_handle pVolumeHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pVolumeHandle
+ * @return
+ */
 bool vp_play_volume_unrealize(volume_handle pVolumeHandle)
 {
        VideoLogInfo("");
@@ -633,6 +729,13 @@ bool vp_play_volume_unrealize(volume_handle pVolumeHandle)
        return TRUE;
 }
 
+/**
+ *
+ * @param pVolumeHandle
+ * @param bLandscape
+ * @param pWin
+ * @return
+ */
 bool vp_play_volume_set_landscape_mode(volume_handle pVolumeHandle,
                                                                           bool bLandscape, Evas_Object * pWin)
 {
@@ -651,6 +754,12 @@ bool vp_play_volume_set_landscape_mode(volume_handle pVolumeHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pVolumeHandle
+ * @param pUserData
+ * @return
+ */
 bool vp_play_volume_set_user_data(volume_handle pVolumeHandle,
                                                                  void *pUserData)
 {
@@ -666,6 +775,12 @@ bool vp_play_volume_set_user_data(volume_handle pVolumeHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pVolumeHandle
+ * @param bIsRealize
+ * @return
+ */
 bool vp_play_volume_is_realize(volume_handle pVolumeHandle,
                                                           bool * bIsRealize)
 {
@@ -681,6 +796,11 @@ bool vp_play_volume_is_realize(volume_handle pVolumeHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pVolumeHandle
+ * @return
+ */
 bool vp_play_volume_increase_value(volume_handle pVolumeHandle)
 {
        if (pVolumeHandle == NULL) {
@@ -715,6 +835,11 @@ bool vp_play_volume_increase_value(volume_handle pVolumeHandle)
 
 }
 
+/**
+ *
+ * @param pVolumeHandle
+ * @return
+ */
 bool vp_play_volume_decrease_value(volume_handle pVolumeHandle)
 {
        if (pVolumeHandle == NULL) {
@@ -749,6 +874,11 @@ bool vp_play_volume_decrease_value(volume_handle pVolumeHandle)
 
 }
 
+/**
+ *
+ * @param pVolumeHandle
+ * @return
+ */
 bool vp_play_volume_update_value(volume_handle pVolumeHandle)
 {
        if (pVolumeHandle == NULL) {
@@ -779,6 +909,12 @@ bool vp_play_volume_update_value(volume_handle pVolumeHandle)
 }
 
 
+/**
+ *
+ * @param pVolumeHandle
+ * @param bIsMute
+ * @return
+ */
 bool vp_play_volume_is_mute(volume_handle pVolumeHandle, bool * bIsMute)
 {
        if (pVolumeHandle == NULL) {
@@ -798,6 +934,11 @@ bool vp_play_volume_is_mute(volume_handle pVolumeHandle, bool * bIsMute)
 
 }
 
+/**
+ *
+ * @param pVolumeHandle
+ * @return
+ */
 int vp_play_volume_get_max_value(volume_handle pVolumeHandle)
 {
        if (NULL == pVolumeHandle) {
@@ -810,6 +951,11 @@ int vp_play_volume_get_max_value(volume_handle pVolumeHandle)
        return pVolumeWidget->nMaxVal;
 }
 
+/**
+ *
+ * @param pVolumeHandle
+ * @return
+ */
 int vp_play_volume_get_value(volume_handle pVolumeHandle)
 {
        if (NULL == pVolumeHandle) {
@@ -822,6 +968,12 @@ int vp_play_volume_get_value(volume_handle pVolumeHandle)
        return pVolumeWidget->nCurVal;
 }
 
+/**
+ *
+ * @param pVolumeHandle
+ * @param nVolumeVal
+ * @return
+ */
 bool vp_play_volume_set_value(volume_handle pVolumeHandle, int nVolumeVal)
 {
        if (pVolumeHandle == NULL) {
@@ -848,6 +1000,11 @@ bool vp_play_volume_set_value(volume_handle pVolumeHandle, int nVolumeVal)
        return TRUE;
 }
 
+/**
+ *
+ * @param pVolumeHandle
+ * @return
+ */
 int vp_play_volume_get_mute_value(volume_handle pVolumeHandle)
 {
        if (NULL == pVolumeHandle) {
@@ -860,6 +1017,11 @@ int vp_play_volume_get_mute_value(volume_handle pVolumeHandle)
        return pVolumeWidget->nMuteVal;
 }
 
+/**
+ *
+ * @param pVolumeHandle
+ * @return
+ */
 bool vp_play_volume_set_mute_value(volume_handle pVolumeHandle)
 {
        if (pVolumeHandle == NULL) {
@@ -876,6 +1038,11 @@ bool vp_play_volume_set_mute_value(volume_handle pVolumeHandle)
        return TRUE;
 }
 
+/**
+ *
+ * @param pVolumeHandle
+ * @return
+ */
 bool vp_play_volume_set_focus_in(volume_handle pVolumeHandle)
 {
        if (pVolumeHandle == NULL) {
@@ -906,6 +1073,12 @@ bool vp_play_volume_set_focus_in(volume_handle pVolumeHandle)
        return TRUE;
 }
 
+/**
+ *
+ * @param pVolumeHandle
+ * @param pWin
+ * @return
+ */
 bool vp_play_volume_set_mouse_callbacks(volume_handle pVolumeHandle,
                                                                                Evas_Object * pWin)
 {
@@ -934,6 +1107,12 @@ bool vp_play_volume_set_mouse_callbacks(volume_handle pVolumeHandle,
        return TRUE;
 }
 
+/**
+ *
+ * @param pVolumeHandle
+ * @param pWin
+ * @return
+ */
 bool vp_play_volume_unset_mouse_callbacks(volume_handle pVolumeHandle,
                                                                                  Evas_Object * pWin)
 {