From: Seungbae Shin Date: Mon, 8 May 2023 06:50:31 +0000 (+0900) Subject: Fix typos X-Git-Tag: accepted/tizen/unified/20230531.034435^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=24058db2bbc2992fd76806db4ab67cd22d84432c;p=platform%2Fcore%2Fmultimedia%2Fpulseaudio-modules-tizen.git Fix typos [Version] 15.0.40 [Issue Type] Cleanup Change-Id: If7c751c3aa28b411487ef3029a8ac76f8e810b43 --- diff --git a/packaging/pulseaudio-modules-tizen.spec b/packaging/pulseaudio-modules-tizen.spec index 5082fab..98e5213 100644 --- a/packaging/pulseaudio-modules-tizen.spec +++ b/packaging/pulseaudio-modules-tizen.spec @@ -2,7 +2,7 @@ Name: pulseaudio-modules-tizen Summary: Pulseaudio modules for Tizen -Version: 15.0.39 +Version: 15.0.40 Release: 0 Group: Multimedia/Audio License: LGPL-2.1+ diff --git a/src/device-manager.c b/src/device-manager.c index 0aa07f9..2d697ff 100644 --- a/src/device-manager.c +++ b/src/device-manager.c @@ -152,7 +152,7 @@ struct device_status_info { struct pulse_device_prop { /* roles related to (device_type + device_file)*/ pa_idxset *roles; - /* For save that this devie_type is activated or not on sink/source */ + /* For save that this device_type is activated or not on sink/source */ int status; }; @@ -298,7 +298,7 @@ static void find_device_and_set_running(pa_device_manager *dm, const char *type, else pa_log_warn("this device [%s] does not use internal codec, skip it", type); } else { - pa_log_warn("cound not find a device of [%s]", type); + pa_log_warn("could not find a device of [%s]", type); } } @@ -2302,7 +2302,7 @@ static pa_tz_device* _load_forwarding_device(pa_device_manager *dm) { /* Handle device connection detected through dbus. First, update device-status hashmap. - And if correnspondent sink/sources for device_type exist, should make device and notify it. + And if correspondent sink/sources for device_type exist, should make device and notify it. Use [device_type->roles] mappings in sink/source for find proper sink/source. */ void handle_device_connected(pa_device_manager *dm, const char *type, const char *name, @@ -2464,7 +2464,7 @@ static pa_hashmap* parse_device_role_object(json_object *device_role_o) { pa_log_info("- Role '%s' -> '%s'", device_role, params); if (device_role_is_valid(device_role)) { if (pa_hashmap_put(roles, (void *)device_role, (void *)params)) { - pa_log_error("put new role to hashmap faild"); + pa_log_error("put new role to hashmap failed"); goto fail; } } else { @@ -2637,7 +2637,7 @@ static pa_hashmap* parse_device_role_map(json_object *device_role_map_o) { pa_log_info("- Role '%s' -> '%s'", device_role, device_string); if (device_role_is_valid(device_role)) { if (pa_hashmap_put(roles, (void *)device_role, (void *)device_string)) { - pa_log_error("put new role to hashmap faild"); + pa_log_error("put new role to hashmap failed"); goto fail; } } else { @@ -3217,7 +3217,7 @@ pa_device_manager* pa_device_manager_get(pa_core *c) { device_type_status_init(dm); if (load_builtin_devices(dm) != 0) { - pa_log_error("Load Builtin Devices faled"); + pa_log_error("Load Builtin Devices failed"); return NULL; } diff --git a/src/stream-manager.c b/src/stream-manager.c index c01afbb..34698e9 100644 --- a/src/stream-manager.c +++ b/src/stream-manager.c @@ -3202,7 +3202,7 @@ static void check_and_move_streams_by_device_connection_change(pa_stream_manager device_type = pa_tz_device_get_type(device); if (stream_route_type == STREAM_ROUTE_TYPE_AUTO || stream_route_type == STREAM_ROUTE_TYPE_AUTO_LAST_CONNECTED) { - pa_log_debug("[SM][UPDATE_SINK_SOURCE][AUTO] route_type(%d), deivce_type(%s), is_connected(%d))", + pa_log_debug("[SM][UPDATE_SINK_SOURCE][AUTO] route_type(%d), device_type(%s), is_connected(%d))", stream_route_type, device_type, is_connected); if (stream_type == STREAM_SINK_INPUT) sink = pa_tz_device_get_sink(device, NULL); @@ -3366,7 +3366,7 @@ static void check_and_move_streams_by_device_connection_change(pa_stream_manager } } else if (stream_route_type == STREAM_ROUTE_TYPE_MANUAL_EXT) { - pa_log_debug("[SM][UPDATE_SINK_SOURCE][EXT] deivce_type(%s), is_connected(%d))", device_type, is_connected); + pa_log_debug("[SM][UPDATE_SINK_SOURCE][EXT] device_type(%s), is_connected(%d))", device_type, is_connected); if (!is_connected) { PA_IDXSET_FOREACH(s, streams, s_idx) { /* streams: source->outputs/sink->inputs */ if (!get_route_type(s, stream_type, false, &route_type) && route_type == stream_route_type) { @@ -3517,7 +3517,7 @@ static void update_sink_or_source_by_device_connection_change(pa_stream_manager pa_assert(m); pa_assert(data); - /* Update streams belong to this external device that have MAUAL_EXT route type */ + /* Update streams belong to this external device that have MANUAL_EXT route type */ if (!use_internal_codec) { if ((device_direction & DM_DEVICE_DIRECTION_IN) && (source = pa_tz_device_get_source(data->device, NULL))) @@ -3568,7 +3568,7 @@ static pa_hook_result_t device_connection_changed_hook_cb(pa_core *c, pa_tz_devi device_id = pa_tz_device_get_id(data->device); use_internal_codec = pa_tz_device_is_use_internal_codec(data->device); - pa_log_info("[SM][CONN] evend_id(%u), is_connected(%d), device(%p, %s, %u), direction(0x%x), use_internal_codec(%d)", + pa_log_info("[SM][CONN] event_id(%u), is_connected(%d), device(%p, %s, %u), direction(0x%x), use_internal_codec(%d)", data->event_id, data->is_connected, data->device, device_type, device_id, device_direction, use_internal_codec); /* mute all the streams belong to this device, those will be un-muted in event_fully_handled_hook_cb */