1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
|
/*
* libmm-sound
*
* Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
*
* Contact: Seungbae Shin <seungbae.shin@samsung.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
#include <stdlib.h>
#include <memory.h>
#include <unistd.h>
#include <pthread.h>
#include <stdio.h>
#include <sys/types.h>
#include <fcntl.h>
#include <sys/stat.h>
#include <errno.h>
#include <vconf.h>
#include <mm_types.h>
#include <mm_error.h>
#include <mm_message.h>
#include <mm_debug.h>
#include "include/mm_sound_private.h"
#include "include/mm_sound.h"
#include "include/mm_sound_utils.h"
#include "include/mm_sound_client.h"
#include "include/mm_sound_pa_client.h"
#include "include/mm_ipc.h"
#include "include/mm_sound_common.h"
#define VOLUME_MAX_MULTIMEDIA 16
#define VOLUME_MAX_BASIC 8
#define VOLUME_MAX_SINGLE 1
#define MASTER_VOLUME_MAX 100
#define MASTER_VOLUME_MIN 0
typedef struct {
volume_callback_fn func;
void* data;
volume_type_t type;
}volume_cb_param;
#ifdef TIZEN_TV
typedef struct {
master_volume_callback_fn func;
void* data;
}master_volume_cb_param;
typedef struct {
master_mute_callback_fn func;
void* data;
}master_mute_cb_param;
typedef struct {
output_device_callback_fn func;
void* data;
}output_device_cb_param;
master_volume_cb_param g_master_volume_param;
master_mute_cb_param g_master_mute_param;
output_device_cb_param g_output_device_param;
#endif /* end of TIZEN_TV */
volume_cb_param g_volume_param[VOLUME_TYPE_VCONF_MAX];
static pthread_mutex_t _volume_mutex = PTHREAD_MUTEX_INITIALIZER;
static char *volume_type_str[VOLUME_TYPE_MAX] = { "SYSTEM", "NOTIFICATION", "ALARM", "RINGTONE", "MEDIA", "CALL", "VOIP", "VOICE", "FIXED"};
static char* __get_volume_str (volume_type_t type)
{
return (type >= VOLUME_TYPE_SYSTEM && type < VOLUME_TYPE_MAX)? volume_type_str[type] : "Unknown";
}
static int __validate_volume(volume_type_t type, int value)
{
if (value < 0)
return -1;
switch (type)
{
case VOLUME_TYPE_CALL:
case VOLUME_TYPE_VOIP:
if (value >= VOLUME_MAX_BASIC) {
return -1;
}
break;
case VOLUME_TYPE_SYSTEM:
case VOLUME_TYPE_MEDIA:
case VOLUME_TYPE_ALARM:
case VOLUME_TYPE_NOTIFICATION:
case VOLUME_TYPE_RINGTONE:
case VOLUME_TYPE_VOICE:
if (value >= VOLUME_MAX_MULTIMEDIA) {
return -1;
}
break;
case VOLUME_TYPE_FIXED:
if (value >= VOLUME_MAX_SINGLE) {
return -1;
}
break;
default:
return -1;
break;
}
return 0;
}
static void volume_changed_cb(keynode_t* node, void* data)
{
volume_cb_param* param = (volume_cb_param*) data;
debug_msg("%s changed callback called\n",vconf_keynode_get_name(node));
MMSOUND_ENTER_CRITICAL_SECTION( &_volume_mutex )
if(param && (param->func != NULL)) {
debug_log("function 0x%x\n", param->func);
((volume_callback_fn)param->func)(param->data);
}
MMSOUND_LEAVE_CRITICAL_SECTION( &_volume_mutex )
}
EXPORT_API
int mm_sound_volume_add_callback(volume_type_t type, volume_callback_fn func, void* user_data)
{
debug_msg("type = (%d)%15s, func = %p, user_data = %p", type, __get_volume_str(type), func, user_data);
/* Check input param */
if (type < 0 || type >= VOLUME_TYPE_VCONF_MAX) {
debug_error("invalid argument\n");
return MM_ERROR_INVALID_ARGUMENT;
}
if (!func) {
debug_warning("callback function is null\n");
return MM_ERROR_INVALID_ARGUMENT;
}
MMSOUND_ENTER_CRITICAL_SECTION_WITH_RETURN( &_volume_mutex, MM_ERROR_SOUND_INTERNAL );
g_volume_param[type].func = func;
g_volume_param[type].data = user_data;
g_volume_param[type].type = type;
MMSOUND_LEAVE_CRITICAL_SECTION( &_volume_mutex );
return _mm_sound_volume_add_callback(type, volume_changed_cb, (void*)&g_volume_param[type]);
}
EXPORT_API
int mm_sound_volume_remove_callback(volume_type_t type)
{
debug_msg("type = (%d)%s", type, __get_volume_str(type));
if(type < 0 || type >=VOLUME_TYPE_VCONF_MAX) {
debug_error("invalid argument\n");
return MM_ERROR_INVALID_ARGUMENT;
}
MMSOUND_ENTER_CRITICAL_SECTION_WITH_RETURN( &_volume_mutex, MM_ERROR_SOUND_INTERNAL );
g_volume_param[type].func = NULL;
g_volume_param[type].data = NULL;
g_volume_param[type].type = type;
MMSOUND_LEAVE_CRITICAL_SECTION( &_volume_mutex );
return _mm_sound_volume_remove_callback(type, volume_changed_cb);
}
EXPORT_API
int mm_sound_add_volume_changed_callback(mm_sound_volume_changed_cb func, void* user_data)
{
int ret = MM_ERROR_NONE;
if (func == NULL) {
debug_error("argument is not valid\n");
return MM_ERROR_INVALID_ARGUMENT;
}
ret = _mm_sound_client_add_volume_changed_callback(func, user_data);
if (ret < 0) {
debug_error("Can not add volume changed callback, ret = %x\n", ret);
}
return ret;
}
EXPORT_API
int mm_sound_remove_volume_changed_callback(void)
{
int ret = MM_ERROR_NONE;
ret = _mm_sound_client_remove_volume_changed_callback();
if (ret < 0) {
debug_error("Can not remove volume changed callback, ret = %x\n", ret);
}
return ret;
}
EXPORT_API
int mm_sound_get_volume_step(volume_type_t type, int *step)
{
debug_error("\n**********\n\nTHIS FUNCTION HAS DEFPRECATED\n\n \
use mm_sound_volume_get_step() instead\n\n**********\n");
return mm_sound_volume_get_step(type, step);
}
EXPORT_API
int mm_sound_volume_get_step(volume_type_t type, int *step)
{
int err;
/* Check input param */
if (step == NULL) {
debug_error("second parameter is null\n");
return MM_ERROR_INVALID_ARGUMENT;
}
if (type < 0 || type >= VOLUME_TYPE_VCONF_MAX) {
debug_error("Invalid type value %d\n", (int)type);
return MM_ERROR_INVALID_ARGUMENT;
}
if(MM_ERROR_NONE != mm_sound_pa_get_volume_max(type, step)) {
err = MM_ERROR_INVALID_ARGUMENT;
}
debug_msg("type = (%d)%15s, step = %d", type, __get_volume_str(type), *step);
return MM_ERROR_NONE;
}
EXPORT_API
int mm_sound_volume_set_value(volume_type_t type, const unsigned int value)
{
int ret = MM_ERROR_NONE;
debug_msg("type = (%d)%s, value = %d", type, __get_volume_str(type), value);
/* Check input param */
if (0 > __validate_volume(type, (int)value)) {
debug_error("invalid volume type %d, value %u\n", type, value);
return MM_ERROR_INVALID_ARGUMENT;
}
ret = _mm_sound_volume_set_value_by_type(type, value);
if (ret == MM_ERROR_NONE) {
/* update shared memory value */
if(MM_ERROR_NONE != mm_sound_pa_set_volume_by_type(type, (int)value)) {
debug_error("Can not set volume to shared memory 0x%x\n", ret);
}
}
return ret;
}
EXPORT_API
int mm_sound_set_call_mute(volume_type_t type, int mute)
{
int ret = MM_ERROR_NONE;
debug_error("Unsupported API\n");
return ret;
}
EXPORT_API
int mm_sound_get_call_mute(volume_type_t type, int *mute)
{
int ret = MM_ERROR_NONE;
if(!mute)
return MM_ERROR_INVALID_ARGUMENT;
debug_error("Unsupported API\n");
return ret;
}
EXPORT_API
int mm_sound_set_route_info(const char* key, const char* value)
{
int ret = MM_ERROR_NONE;
if(key == NULL || value == NULL)
return MM_ERROR_INVALID_ARGUMENT;
ret = mm_sound_pa_set_route_info(key, value);
if(ret != MM_ERROR_NONE) {
debug_error("Can not set route info 0x%x\n", ret);
}
return ret;
}
EXPORT_API
int mm_sound_volume_get_value(volume_type_t type, unsigned int *value)
{
int ret = MM_ERROR_NONE;
/* Check input param */
if (value == NULL) {
debug_error("invalid argument\n");
return MM_ERROR_INVALID_ARGUMENT;
}
if (type < 0 || type >= VOLUME_TYPE_VCONF_MAX) {
debug_error("invalid volume type value %d\n", type);
return MM_ERROR_INVALID_ARGUMENT;
}
ret = _mm_sound_volume_get_value_by_type(type, value);
debug_msg("returned %s = %d", __get_volume_str(type), *value);
return ret;
}
EXPORT_API
int mm_sound_volume_primary_type_set(volume_type_t type)
{
pid_t mypid;
int ret = MM_ERROR_NONE;
/* Check input param */
if(type < 0 || type >= VOLUME_TYPE_VCONF_MAX) {
debug_error("invalid argument\n");
return MM_ERROR_INVALID_ARGUMENT;
}
if (vconf_set_int(VCONFKEY_SOUND_PRIMARY_VOLUME_TYPE_FORCE, type)) {
debug_error("could not set vconf for RIMARY_VOLUME_TYPE_FORCE\n");
ret = MM_ERROR_SOUND_INTERNAL;
} else {
debug_msg("set primary volume type forcibly %d(%s)", type, __get_volume_str(type));
}
return ret;
}
EXPORT_API
int mm_sound_volume_primary_type_clear(void)
{
pid_t mypid;
int ret = MM_ERROR_NONE;
if (vconf_set_int(VCONFKEY_SOUND_PRIMARY_VOLUME_TYPE_FORCE, -1)) {
debug_error("could not reset vconf for RIMARY_VOLUME_TYPE_FORCE\n");
ret = MM_ERROR_SOUND_INTERNAL;
} else {
debug_msg("clear primary volume type forcibly %d(%s)", -1, "none");
}
return ret;
}
EXPORT_API
int mm_sound_volume_get_current_playing_type(volume_type_t *type)
{
int ret = MM_ERROR_NONE;
int voltype = VOLUME_TYPE_RINGTONE;
int fvoltype = -1;
/* Check input param */
if(type == NULL) {
debug_error("invalid argument\n");
return MM_ERROR_INVALID_ARGUMENT;
}
/* check force set */
if (vconf_get_int(VCONFKEY_SOUND_PRIMARY_VOLUME_TYPE_FORCE, &fvoltype)) {
debug_error("could not get vconf for RIMARY_VOLUME_TYPE_FORCE\n");
ret = MM_ERROR_SOUND_INTERNAL;
} else {
if(fvoltype >= 0) {
*type = fvoltype;
return MM_ERROR_NONE;
}
}
/* If primary volume is not set by user, get current playing volume */
if(vconf_get_int(VCONFKEY_SOUND_PRIMARY_VOLUME_TYPE, &voltype)) {
debug_error("get vconf(VCONFKEY_SOUND_PRIMARY_VOLUME_TYPE) failed voltype(%d)\n", voltype);
} else {
debug_error("get vconf(VCONFKEY_SOUND_PRIMARY_VOLUME_TYPE) voltype(%d)\n", voltype);
}
if(voltype >= 0) {
*type = voltype;
ret = MM_ERROR_NONE;
}
else if(voltype == -1)
ret = MM_ERROR_SOUND_VOLUME_NO_INSTANCE;
else if(voltype == -2)
ret = MM_ERROR_SOUND_VOLUME_CAPTURE_ONLY;
else
ret = MM_ERROR_SOUND_INTERNAL;
debug_msg("returned type = (%d)%15s, ret = 0x%x", *type, __get_volume_str(*type), ret);
return ret;
}
EXPORT_API
int mm_sound_volume_primary_type_get(volume_type_t *type)
{
return mm_sound_volume_get_current_playing_type(type);
}
///////////////////////////////////
//// MMSOUND PLAY APIs
///////////////////////////////////
static inline void _mm_sound_fill_play_param(MMSoundPlayParam *param, const char *filename, int volume_config, mm_sound_stop_callback_func callback, void *data, int priority, int handle_route)
{
param->filename = filename;
param->volume = 0; //volume value dose not effect anymore
param->callback = callback;
param->data = data;
param->loop = 1;
param->volume_config = volume_config;
param->priority = priority;
param->handle_route = handle_route;
}
EXPORT_API
int mm_sound_play_loud_solo_sound_no_restore(const char *filename, int volume_config, mm_sound_stop_callback_func callback, void *data, int *handle)
{
MMSoundPlayParam param = { 0, };
_mm_sound_fill_play_param(¶m, filename, volume_config, callback, data, HANDLE_PRIORITY_SOLO, MM_SOUND_HANDLE_ROUTE_SPEAKER_NO_RESTORE);
return mm_sound_play_sound_ex(¶m, handle);
}
EXPORT_API
int mm_sound_play_loud_solo_sound(const char *filename, int volume_config, mm_sound_stop_callback_func callback, void *data, int *handle)
{
MMSoundPlayParam param = { 0, };
_mm_sound_fill_play_param(¶m, filename, volume_config, callback, data, HANDLE_PRIORITY_SOLO, MM_SOUND_HANDLE_ROUTE_SPEAKER);
return mm_sound_play_sound_ex(¶m, handle);
}
EXPORT_API
int mm_sound_play_solo_sound(const char *filename, int volume_config, mm_sound_stop_callback_func callback, void *data, int *handle)
{
MMSoundPlayParam param = { 0, };
_mm_sound_fill_play_param(¶m, filename, volume_config, callback, data, HANDLE_PRIORITY_SOLO, MM_SOUND_HANDLE_ROUTE_USING_CURRENT);
return mm_sound_play_sound_ex(¶m, handle);
}
EXPORT_API
int mm_sound_play_sound_without_session(const char *filename, int volume_config, mm_sound_stop_callback_func callback, void *data, int *handle)
{
MMSoundPlayParam param = { 0, };
_mm_sound_fill_play_param(¶m, filename, volume_config, callback, data, HANDLE_PRIORITY_SOLO, MM_SOUND_HANDLE_ROUTE_USING_CURRENT);
param.skip_session = true;
return mm_sound_play_sound_ex(¶m, handle);
}
EXPORT_API
int mm_sound_play_sound(const char *filename, int volume_config, mm_sound_stop_callback_func callback, void *data, int *handle)
{
MMSoundPlayParam param = { 0, };
_mm_sound_fill_play_param(¶m, filename, volume_config, callback, data, HANDLE_PRIORITY_NORMAL, MM_SOUND_HANDLE_ROUTE_USING_CURRENT);
return mm_sound_play_sound_ex(¶m, handle);
}
EXPORT_API
int mm_sound_play_sound_ex(MMSoundPlayParam *param, int *handle)
{
int err;
int lhandle = -1;
int volume_type = 0;
/* Check input param */
if (param == NULL) {
debug_error("param is null\n");
return MM_ERROR_INVALID_ARGUMENT;
}
volume_type = MM_SOUND_VOLUME_CONFIG_TYPE(param->volume_config);
if (param->filename == NULL) {
debug_error("filename is NULL\n");
return MM_ERROR_SOUND_FILE_NOT_FOUND;
}
if (volume_type < 0 || volume_type >= VOLUME_TYPE_MAX) {
debug_error("Volume type is invalid %d\n", volume_type);
return MM_ERROR_INVALID_ARGUMENT;
}
debug_warning ("play sound : priority=[%d], handle_route=[%d]\n", param->priority, param->handle_route);
/* Play sound */
err = MMSoundClientPlaySound(param, 0, 0, &lhandle);
if (err < 0) {
debug_error("Failed to play sound\n");
return err;
}
/* Set handle to return */
if (handle) {
*handle = lhandle;
} else {
debug_critical("The sound hadle cannot be get [%d]\n", lhandle);
}
debug_warning ("success : handle=[%p]\n", handle);
return MM_ERROR_NONE;
}
EXPORT_API
int mm_sound_stop_sound(int handle)
{
int err;
debug_warning ("enter : handle=[%p]\n", handle);
/* Stop sound */
err = MMSoundClientStopSound(handle);
if (err < 0) {
debug_error("Fail to stop sound\n");
return err;
}
debug_warning ("success : handle=[%p]\n", handle);
return MM_ERROR_NONE;
}
///////////////////////////////////
//// MMSOUND TONE APIs
///////////////////////////////////
EXPORT_API
int mm_sound_play_tone_ex (MMSoundTone_t num, int volume_config, const double volume, const int duration, int *handle, bool enable_session)
{
int lhandle = -1;
int err = MM_ERROR_NONE;
int volume_type = MM_SOUND_VOLUME_CONFIG_TYPE(volume_config);
debug_fenter();
/* Check input param */
if (duration < -1) {
debug_error("number is invalid %d\n", duration);
return MM_ERROR_INVALID_ARGUMENT;
}
if (num < MM_SOUND_TONE_DTMF_0 || num >= MM_SOUND_TONE_NUM) {
debug_error("TONE Value is invalid %d\n", num);
return MM_ERROR_INVALID_ARGUMENT;
}
if (volume_type < 0 || volume_type >= VOLUME_TYPE_MAX) {
debug_error("Volume type is invalid %d\n", volume_type);
return MM_ERROR_INVALID_ARGUMENT;
}
if (volume < 0.0 || volume > 1.0) {
debug_error("Volume Value is invalid %d\n", volume);
return MM_ERROR_INVALID_ARGUMENT;
}
/* Play tone */
debug_msg("Call MMSoundClientPlayTone\n");
err = MMSoundClientPlayTone(num, volume_config, volume, duration, &lhandle, enable_session);
if (err < 0) {
debug_error("Failed to play sound\n");
return err;
}
/* Set handle to return */
if (handle)
*handle = lhandle;
else
debug_critical("The sound handle cannot be get [%d]\n", lhandle);
debug_fleave();
return MM_ERROR_NONE;
}
EXPORT_API
int mm_sound_play_tone (MMSoundTone_t num, int volume_config, const double volume, const int duration, int *handle)
{
return mm_sound_play_tone_ex (num, volume_config, volume, duration, handle, true);
}
///////////////////////////////////
//// MMSOUND ROUTING APIs
///////////////////////////////////
#ifdef PULSE_CLIENT
enum {
USE_PA_SINK_ALSA = 0,
USE_PA_SINK_A2DP,
};
EXPORT_API
int mm_sound_route_set_system_policy (system_audio_route_t route)
{
return MM_ERROR_NONE;
}
EXPORT_API
int mm_sound_route_get_system_policy (system_audio_route_t *route)
{
return MM_ERROR_NONE;
}
EXPORT_API
int mm_sound_route_get_a2dp_status (bool *connected, char **bt_name)
{
int ret = MM_ERROR_NONE;
if (connected == NULL || bt_name == NULL) {
debug_error ("argument is not valid\n");
return MM_ERROR_INVALID_ARGUMENT;
}
ret = MMSoundClientIsBtA2dpOn (connected, bt_name);
debug_msg ("connected=[%d] bt_name[%s]\n", *connected, *bt_name);
if (ret < 0) {
debug_error("MMSoundClientIsBtA2dpOn() Failed\n");
return ret;
}
return ret;
}
EXPORT_API
int mm_sound_route_get_playing_device(system_audio_route_device_t *dev)
{
mm_sound_device_in device_in = MM_SOUND_DEVICE_IN_NONE;
mm_sound_device_out device_out = MM_SOUND_DEVICE_OUT_NONE;
if(!dev)
return MM_ERROR_INVALID_ARGUMENT;
if(MM_ERROR_NONE != mm_sound_get_active_device(&device_in, &device_out)) {
debug_error("Can not get active device info\n");
return MM_ERROR_SOUND_INTERNAL;
}
switch(device_out)
{
case MM_SOUND_DEVICE_OUT_SPEAKER:
*dev = SYSTEM_AUDIO_ROUTE_PLAYBACK_DEVICE_HANDSET;
break;
case MM_SOUND_DEVICE_OUT_BT_A2DP:
*dev = SYSTEM_AUDIO_ROUTE_PLAYBACK_DEVICE_BLUETOOTH;
break;
case MM_SOUND_DEVICE_OUT_WIRED_ACCESSORY:
*dev = SYSTEM_AUDIO_ROUTE_PLAYBACK_DEVICE_EARPHONE;
break;
default:
*dev = SYSTEM_AUDIO_ROUTE_PLAYBACK_DEVICE_NONE;
break;
}
return MM_ERROR_NONE;
}
EXPORT_API
int mm_sound_route_add_change_callback(audio_route_policy_changed_callback_fn func, void *user_data)
{
/* Deprecated */
return MM_ERROR_NONE;
}
EXPORT_API
int mm_sound_route_remove_change_callback(void)
{
/* Deprecated */
return MM_ERROR_NONE;
}
#endif /* PULSE_CLIENT */
EXPORT_API
int mm_sound_is_route_available(mm_sound_route route, bool *is_available)
{
int ret = MM_ERROR_NONE;
debug_warning ("enter : route=[%x], is_available=[%p]\n", route, is_available);
if (!_mm_sound_is_route_valid(route)) {
debug_error("route is invalid %d\n", route);
return MM_ERROR_INVALID_ARGUMENT;
}
if (!is_available) {
debug_error("is_available is invalid\n");
return MM_ERROR_INVALID_ARGUMENT;
}
ret = _mm_sound_client_is_route_available(route, is_available);
if (ret < 0) {
debug_error("Can not check given route is available, ret = %x\n", ret);
} else {
debug_warning ("success : route=[%x], available=[%d]\n", route, *is_available);
}
return ret;
}
EXPORT_API
int mm_sound_foreach_available_route_cb(mm_sound_available_route_cb available_route_cb, void *user_data)
{
int ret = MM_ERROR_NONE;
if (!available_route_cb) {
debug_error("available_route_cb is invalid\n");
return MM_ERROR_INVALID_ARGUMENT;
}
ret = _mm_sound_client_foreach_available_route_cb(available_route_cb, user_data);
if (ret < 0) {
debug_error("Can not set foreach available route callback, ret = %x\n", ret);
}
return ret;
}
EXPORT_API
int mm_sound_set_active_route(mm_sound_route route)
{
int ret = MM_ERROR_NONE;
debug_warning ("enter : route=[%x]\n", route);
if (!_mm_sound_is_route_valid(route)) {
debug_error("route is invalid %d\n", route);
return MM_ERROR_INVALID_ARGUMENT;
}
ret = _mm_sound_client_set_active_route(route, true);
if (ret < 0) {
debug_error("Can not set active route, ret = %x\n", ret);
} else {
debug_warning ("success : route=[%x]\n", route);
}
return ret;
}
EXPORT_API
int mm_sound_set_active_route_auto(void)
{
int ret = MM_ERROR_NONE;
ret = _mm_sound_client_set_active_route_auto();
if (ret < 0) {
debug_error("fail to set active route auto, ret = %x\n", ret);
} else {
debug_msg ("success !!\n");
}
return ret;
}
EXPORT_API
int mm_sound_set_active_route_without_broadcast(mm_sound_route route)
{
int ret = MM_ERROR_NONE;
debug_warning ("enter : route=[%x]\n", route);
if (!_mm_sound_is_route_valid(route)) {
debug_error("route is invalid %d\n", route);
return MM_ERROR_INVALID_ARGUMENT;
}
ret = _mm_sound_client_set_active_route(route, false);
if (ret < 0) {
debug_error("Can not set active route, ret = %x\n", ret);
} else {
debug_warning ("success : route=[%x]\n", route);
}
return ret;
}
EXPORT_API
int mm_sound_get_active_device(mm_sound_device_in *device_in, mm_sound_device_out *device_out)
{
int ret = MM_ERROR_NONE;
if (device_in == NULL || device_out == NULL) {
debug_error("argument is not valid\n");
return MM_ERROR_INVALID_ARGUMENT;
}
ret = _mm_sound_client_get_active_device(device_in, device_out);
if (ret < 0) {
debug_error("Can not add active device callback, ret = %x\n", ret);
} else {
debug_msg ("success : in=[%x], out=[%x]\n", *device_in, *device_out);
}
return ret;
}
EXPORT_API
int mm_sound_get_audio_path(mm_sound_device_in *device_in, mm_sound_device_out *device_out)
{
int ret = MM_ERROR_NONE;
if (device_in == NULL || device_out == NULL) {
debug_error("argument is not valid\n");
return MM_ERROR_INVALID_ARGUMENT;
}
ret = _mm_sound_client_get_audio_path(device_in, device_out);
if (ret < 0) {
debug_error("Can not add active device callback, ret = %x\n", ret);
} else {
debug_msg ("success : in=[%x], out=[%x]\n", *device_in, *device_out);
}
return ret;
}
EXPORT_API
int mm_sound_add_active_device_changed_callback(const char *name, mm_sound_active_device_changed_cb func, void *user_data)
{
int ret = MM_ERROR_NONE;
debug_warning ("enter %s\n", name);
if (func == NULL) {
debug_error("argument is not valid\n");
return MM_ERROR_INVALID_ARGUMENT;
}
ret = _mm_sound_client_add_active_device_changed_callback(name, func, user_data);
if (ret < 0) {
debug_error("Can not add active device changed callback, ret = %x\n", ret);
}
return ret;
}
EXPORT_API
int mm_sound_remove_active_device_changed_callback(const char *name)
{
int ret = MM_ERROR_NONE;
debug_warning ("enter name %s \n", name);
ret = _mm_sound_client_remove_active_device_changed_callback(name);
if (ret < 0) {
debug_error("Can not remove active device changed callback, ret = %x\n", ret);
}
return ret;
}
EXPORT_API
int mm_sound_add_available_route_changed_callback(mm_sound_available_route_changed_cb func, void *user_data)
{
int ret = MM_ERROR_NONE;
if (func == NULL) {
debug_error("argument is not valid\n");
return MM_ERROR_INVALID_ARGUMENT;
}
ret = _mm_sound_client_add_available_route_changed_callback(func, user_data);
if (ret < 0) {
debug_error("Can not add available route changed callback, ret = %x\n", ret);
}
return ret;
}
EXPORT_API
int mm_sound_remove_available_route_changed_callback(void)
{
int ret = MM_ERROR_NONE;
ret = _mm_sound_client_remove_available_route_changed_callback();
if (ret < 0) {
debug_error("Can not remove available route changed callback, ret = %x\n", ret);
}
return ret;
}
EXPORT_API
int mm_sound_set_sound_path_for_active_device(mm_sound_device_out device_out, mm_sound_device_in device_in)
{
int ret = MM_ERROR_NONE;
ret = _mm_sound_client_set_sound_path_for_active_device(device_out, device_in);
if (ret < 0) {
debug_error("Can not mm sound set sound path for active device, ret = %x\n", ret);
}
return ret;
}
#ifdef TIZEN_TV
static void master_volume_changed_cb(keynode_t* node, void* data)
{
master_volume_cb_param* param = (master_volume_cb_param*) data;
int new_value = 0;
char* node_name = NULL;
node_name = vconf_keynode_get_name(node);
new_value = vconf_keynode_get_int(node);
debug_msg("%s changed callback called, new value(%d)\n", node_name, new_value);
MMSOUND_ENTER_CRITICAL_SECTION( &_volume_mutex )
if(param && (param->func != NULL)) {
debug_log("function 0x%x\n", param->func);
((master_volume_callback_fn)param->func)(new_value, param->data);
}
MMSOUND_LEAVE_CRITICAL_SECTION( &_volume_mutex )
}
static void master_mute_changed_cb(keynode_t* node, void* data)
{
master_mute_cb_param* param = (master_mute_cb_param*) data;
int new_value = 0;
char* node_name = NULL;
node_name = vconf_keynode_get_name(node);
new_value = vconf_keynode_get_int(node);
debug_msg("%s changed callback called, new value(%d)\n", node_name, new_value);
MMSOUND_ENTER_CRITICAL_SECTION( &_volume_mutex )
if(param && (param->func != NULL)) {
debug_log("function 0x%x\n", param->func);
((master_mute_callback_fn)param->func)(new_value, param->data);
}
MMSOUND_LEAVE_CRITICAL_SECTION( &_volume_mutex )
}
static void output_device_changed_cb(keynode_t* node, void* data)
{
output_device_cb_param* param = (output_device_cb_param*) data;
int new_value = 0;
char* node_name = NULL;
node_name = vconf_keynode_get_name(node);
new_value = vconf_keynode_get_int(node);
debug_msg("%s changed callback called, new value(%d)\n", node_name, new_value);
MMSOUND_ENTER_CRITICAL_SECTION( &_volume_mutex )
if(param && (param->func != NULL)) {
debug_log("function 0x%x\n", param->func);
((output_device_callback_fn)param->func)((mm_sound_tv_output_device_t)new_value, param->data);
}
MMSOUND_LEAVE_CRITICAL_SECTION( &_volume_mutex )
}
EXPORT_API
int mm_sound_volume_get_master(unsigned int *value)
{
int ret = MM_ERROR_NONE;
/* Check input param */
if (value == NULL) {
debug_error("invalid argument\n");
return MM_ERROR_INVALID_ARGUMENT;
}
ret = _mm_sound_volume_get_master(value);
debug_msg("returned %d", *value);
return ret;
return ret;
}
EXPORT_API
int mm_sound_volume_set_master(const unsigned int value)
{
int ret = MM_ERROR_NONE;
debug_msg("value = %d", value);
/* Check input param */
if ((value < MASTER_VOLUME_MIN) || (value > MASTER_VOLUME_MAX)) {
debug_error("invalid volume value %u\n", value);
return MM_ERROR_INVALID_ARGUMENT;
}
ret = _mm_sound_volume_set_master(value);
if (ret == MM_ERROR_NONE) {
if(MM_ERROR_NONE != mm_sound_pa_set_master_volume((int)value)) {
debug_error("mm_sound_pa_set_master_volume failed : 0x%x\n", ret);
}
}
return ret;
}
EXPORT_API
int mm_sound_set_master_volume_changed_callback(master_volume_callback_fn func, void* user_data)
{
debug_msg("func = %p, user_data = %p", func, user_data);
/* Check input param */
if (!func) {
debug_warning("callback function is null\n");
return MM_ERROR_INVALID_ARGUMENT;
}
MMSOUND_ENTER_CRITICAL_SECTION_WITH_RETURN( &_volume_mutex, MM_ERROR_SOUND_INTERNAL );
if (g_master_volume_param.func) {
debug_error ("already set callback(%p), user_data(%p). please try it again after unsetting the prior callback\n", g_master_volume_param.func, g_master_volume_param.data);
MMSOUND_LEAVE_CRITICAL_SECTION( &_volume_mutex );
return MM_ERROR_SOUND_INTERNAL;
} else {
g_master_volume_param.func = func;
g_master_volume_param.data = user_data;
}
MMSOUND_LEAVE_CRITICAL_SECTION( &_volume_mutex );
if (vconf_notify_key_changed(VCONF_KEY_VOLUME_MASTER, master_volume_changed_cb,(void*)&g_master_volume_param)) {
debug_error ("vconf_notify_key_changed failed..\n");
return MM_ERROR_SOUND_INTERNAL;
}
return MM_ERROR_NONE;
}
EXPORT_API
int mm_sound_unset_master_volume_changed_callback(void)
{
debug_msg("func = %p, user_data = %p will be removed", g_master_volume_param.func, g_master_volume_param.data);
MMSOUND_ENTER_CRITICAL_SECTION_WITH_RETURN( &_volume_mutex, MM_ERROR_SOUND_INTERNAL );
g_master_volume_param.func = NULL;
g_master_volume_param.data = NULL;
MMSOUND_LEAVE_CRITICAL_SECTION( &_volume_mutex );
if (vconf_ignore_key_changed(VCONF_KEY_VOLUME_MASTER, master_volume_changed_cb)) {
debug_error ("vconf_ignore_key_changed failed..\n");
return MM_ERROR_SOUND_INTERNAL;
}
return MM_ERROR_NONE;
}
EXPORT_API
int mm_sound_mute_get_master(bool *value)
{
int ret = MM_ERROR_NONE;
/* Check input param */
if (value == NULL) {
debug_error("invalid argument\n");
return MM_ERROR_INVALID_ARGUMENT;
}
ret = _mm_sound_mute_get_master(value);
debug_msg("returned %d", *value);
return ret;
return ret;
}
EXPORT_API
int mm_sound_mute_set_master(const bool value)
{
int ret = MM_ERROR_NONE;
debug_msg("value = %d", value);
ret = _mm_sound_mute_set_master(value);
if (ret == MM_ERROR_NONE) {
if(MM_ERROR_NONE != mm_sound_pa_set_master_mute((int)value)) {
debug_error("mm_sound_pa_set_master_mute failed : 0x%x\n", ret);
}
}
return ret;
}
EXPORT_API
int mm_sound_set_master_mute_changed_callback(master_mute_callback_fn func, void* user_data)
{
debug_msg("func = %p, user_data = %p", func, user_data);
/* Check input param */
if (!func) {
debug_warning("callback function is null\n");
return MM_ERROR_INVALID_ARGUMENT;
}
MMSOUND_ENTER_CRITICAL_SECTION_WITH_RETURN( &_volume_mutex, MM_ERROR_SOUND_INTERNAL );
if (g_master_mute_param.func) {
debug_error ("already set callback(%p), user_data(%p). please try it again after unsetting the prior callback\n", g_master_mute_param.func, g_master_mute_param.data);
MMSOUND_LEAVE_CRITICAL_SECTION( &_volume_mutex );
return MM_ERROR_SOUND_INTERNAL;
} else {
g_master_mute_param.func = func;
g_master_mute_param.data = user_data;
}
MMSOUND_LEAVE_CRITICAL_SECTION( &_volume_mutex );
if (vconf_notify_key_changed(VCONF_KEY_MUTE_MASTER, master_mute_changed_cb,(void*)&g_master_mute_param)) {
debug_error ("vconf_notify_key_changed failed..\n");
return MM_ERROR_SOUND_INTERNAL;
}
return MM_ERROR_NONE;
}
EXPORT_API
int mm_sound_unset_master_mute_changed_callback(void)
{
debug_msg("func = %p, user_data = %p will be removed", g_master_mute_param.func, g_master_mute_param.data);
MMSOUND_ENTER_CRITICAL_SECTION_WITH_RETURN( &_volume_mutex, MM_ERROR_SOUND_INTERNAL );
g_master_mute_param.func = NULL;
g_master_mute_param.data = NULL;
MMSOUND_LEAVE_CRITICAL_SECTION( &_volume_mutex );
if (vconf_ignore_key_changed(VCONF_KEY_MUTE_MASTER, master_mute_changed_cb)) {
debug_error ("vconf_ignore_key_changed failed..\n");
return MM_ERROR_SOUND_INTERNAL;
}
return MM_ERROR_NONE;
}
EXPORT_API
int mm_sound_get_output_device(mm_sound_tv_output_device_t *device)
{
int ret = MM_ERROR_NONE;
/* Check input param */
if (device == NULL) {
debug_error("invalid argument\n");
return MM_ERROR_INVALID_ARGUMENT;
}
ret = _mm_sound_get_output_device(device);
debug_msg("returned %d", *device);
return ret;
return ret;
}
EXPORT_API
int mm_sound_set_output_device(mm_sound_tv_output_device_t device)
{
int ret = MM_ERROR_NONE;
debug_msg("device = %d", device);
/* Check input param */
if ((device < MM_SOUND_TV_OUTPUT_SPEAKER) || (device > MM_SOUND_TV_OUTPUT_MAX)) {
debug_error("invalid volume value %u\n", device);
return MM_ERROR_INVALID_ARGUMENT;
}
ret = _mm_sound_set_output_device(device);
if (ret == MM_ERROR_NONE) {
if(MM_ERROR_NONE != mm_sound_pa_set_output_device((int)device)) {
debug_error("mm_sound_pa_set_output_device failed : 0x%x\n", ret);
}
}
return ret;
}
EXPORT_API
int mm_sound_set_output_device_changed_callback(output_device_callback_fn func, void* user_data)
{
debug_msg("func = %p, user_data = %p", func, user_data);
/* Check input param */
if (!func) {
debug_warning("callback function is null\n");
return MM_ERROR_INVALID_ARGUMENT;
}
MMSOUND_ENTER_CRITICAL_SECTION_WITH_RETURN( &_volume_mutex, MM_ERROR_SOUND_INTERNAL );
if (g_output_device_param.func) {
debug_error ("already set callback(%p), user_data(%p). please try it again after unsetting the prior callback\n", g_output_device_param.func, g_output_device_param.data);
MMSOUND_LEAVE_CRITICAL_SECTION( &_volume_mutex );
return MM_ERROR_SOUND_INTERNAL;
} else {
g_output_device_param.func = func;
g_output_device_param.data = user_data;
}
MMSOUND_LEAVE_CRITICAL_SECTION( &_volume_mutex );
if (vconf_notify_key_changed(VCONF_KEY_OUTPUT_DEVICE, output_device_changed_cb,(void*)&g_output_device_param)) {
debug_error ("vconf_notify_key_changed failed..\n");
return MM_ERROR_SOUND_INTERNAL;
}
return MM_ERROR_NONE;
}
EXPORT_API
int mm_sound_unset_output_device_changed_callback(void)
{
debug_msg("func = %p, user_data = %p will be removed", g_output_device_param.func, g_output_device_param.data);
MMSOUND_ENTER_CRITICAL_SECTION_WITH_RETURN( &_volume_mutex, MM_ERROR_SOUND_INTERNAL );
g_output_device_param.func = NULL;
g_output_device_param.data = NULL;
MMSOUND_LEAVE_CRITICAL_SECTION( &_volume_mutex );
if (vconf_ignore_key_changed(VCONF_KEY_OUTPUT_DEVICE, output_device_changed_cb)) {
debug_error ("vconf_ignore_key_changed failed..\n");
return MM_ERROR_SOUND_INTERNAL;
}
return MM_ERROR_NONE;
}
#endif /* end of TIZEN_TV */
__attribute__ ((destructor))
void __mmfsnd_finalize(void)
{
MMSoundClientCallbackFini();
}
__attribute__ ((constructor))
void __mmfsnd_initialize(void)
{
/* Will be Fixed */
}
|