Merge "Remove Profile Build Dependency (CAPI defrag + runtime)" into tizen
[platform/core/api/player.git] / test / player_test.c
1 /*
2 * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16 #include <player.h>
17 #include <player_internal.h>
18 #include <sound_manager.h>
19 #include <pthread.h>
20 #include <glib.h>
21 #include <dlfcn.h>
22 #include <appcore-efl.h>
23 #include <Elementary.h>
24 #include <Ecore.h>
25 #include <Ecore_Wayland.h>
26 #ifdef _ACTIVATE_EOM_
27 #include <eom.h>
28 #endif
29
30 #ifdef PACKAGE
31 #undef PACKAGE
32 #endif
33 #define PACKAGE "player_test"
34
35 #ifdef LOG_TAG
36 #undef LOG_TAG
37 #endif
38 #define LOG_TAG "PLAYER_TEST"
39
40 #define MAX_STRING_LEN  2048
41 #define PLAYER_TEST_DUMP_PATH_PREFIX   "/home/owner/dump_pcm_"
42 #define DEFAULT_HTTP_TIMEOUT -1
43
44 #include <system_info.h>
45 #include <stdlib.h>
46 typedef enum {
47         TIZEN_PROFILE_UNKNOWN = 0,
48         TIZEN_PROFILE_MOBILE = 0x1,
49         TIZEN_PROFILE_WEARABLE = 0x2,
50         TIZEN_PROFILE_TV = 0x4,
51         TIZEN_PROFILE_IVI = 0x8,
52         TIZEN_PROFILE_COMMON = 0x10,
53 } tizen_profile_t;
54 static tizen_profile_t _get_tizen_profile()
55 {
56         char *profileName;
57         static tizen_profile_t profile = TIZEN_PROFILE_UNKNOWN;
58
59         if (__builtin_expect(profile != TIZEN_PROFILE_UNKNOWN, 1))
60                 return profile;
61
62         system_info_get_platform_string("http://tizen.org/feature/profile", &profileName);
63         switch (*profileName) {
64         case 'm':
65         case 'M':
66                 profile = TIZEN_PROFILE_MOBILE;
67                 break;
68         case 'w':
69         case 'W':
70                 profile = TIZEN_PROFILE_WEARABLE;
71                 break;
72         case 't':
73         case 'T':
74                 profile = TIZEN_PROFILE_TV;
75                 break;
76         case 'i':
77         case 'I':
78                 profile = TIZEN_PROFILE_IVI;
79                 break;
80         default: // common or unknown ==> ALL ARE COMMON.
81                 profile = TIZEN_PROFILE_COMMON;
82         }
83         free(profileName);
84
85         return profile;
86 }
87 #define TIZEN_TV  ((_get_tizen_profile()) == TIZEN_PROFILE_TV)
88
89 static gboolean g_memory_playback = FALSE;
90 static char g_uri[MAX_STRING_LEN];
91 static char g_subtitle_uri[MAX_STRING_LEN];
92 static FILE *g_pcm_fd;
93
94 static gboolean is_es_push_mode = FALSE;
95 static pthread_t g_feed_video_thread_id = 0;
96 static bool g_thread_end = FALSE;
97 static media_packet_h g_audio_pkt = NULL;
98 static media_format_h g_audio_fmt = NULL;
99
100 static media_packet_h g_video_pkt = NULL;
101 static media_format_h g_video_fmt = NULL;
102
103 static int _save(unsigned char *src, int length);
104
105 #define DUMP_OUTBUF         1
106 #if DUMP_OUTBUF
107 FILE *fp_out1 = NULL;
108 FILE *fp_out2 = NULL;
109 #endif
110
111 enum {
112         CURRENT_STATUS_MAINMENU,
113         CURRENT_STATUS_HANDLE_NUM,
114         CURRENT_STATUS_FILENAME,
115         CURRENT_STATUS_VOLUME,
116         CURRENT_STATUS_SOUND_TYPE,
117         CURRENT_STATUS_SOUND_STREAM_INFO,
118         CURRENT_STATUS_MUTE,
119         CURRENT_STATUS_POSITION_TIME,
120         CURRENT_STATUS_LOOPING,
121         CURRENT_STATUS_DISPLAY_SURFACE_CHANGE,
122         CURRENT_STATUS_DISPLAY_MODE,
123         CURRENT_STATUS_DISPLAY_DST_ROI,
124         CURRENT_STATUS_DISPLAY_ROTATION,
125         CURRENT_STATUS_DISPLAY_VISIBLE,
126         CURRENT_STATUS_SUBTITLE_FILENAME,
127         CURRENT_STATUS_AUDIO_EQUALIZER,
128         CURRENT_STATUS_PLAYBACK_RATE,
129         CURRENT_STATUS_STREAMING_PLAYBACK_RATE,
130         CURRENT_STATUS_SWITCH_SUBTITLE,
131         CURRENT_STATUS_NEXT_URI,
132         CURRENT_STATUS_GAPLESS,
133         CURRENT_STATUS_GET_TRACK_INFO,
134 };
135
136 #define MAX_HANDLE 20
137
138 /* for video display */
139 static Evas_Object *g_win_id;
140 #ifdef _ACTIVATE_EOM_
141 static Evas_Object *g_external_win_id;
142 #endif
143 static Evas_Object *selected_win_id;
144 static Evas_Object *g_eo[MAX_HANDLE] = { 0, };
145
146 static int g_current_surface_type = -1;
147
148 typedef struct {
149         Evas_Object *win;
150         Evas_Object *layout_main;       /* layout widget based on EDJ */
151         /* add more variables here */
152 #ifdef _ACTIVATE_EOM_
153         int hdmi_output_id;
154 #endif
155 } appdata;
156
157 static appdata ad;
158 static player_h g_player[MAX_HANDLE] = { 0, };
159
160 int g_handle_num = 1;
161 int g_menu_state = CURRENT_STATUS_MAINMENU;
162 gboolean quit_pushing;
163 sound_stream_info_h g_stream_info_h = NULL;
164
165 static void win_del(void *data, Evas_Object * obj, void *event)
166 {
167         elm_exit();
168 }
169
170 static Evas_Object *create_win(const char *name)
171 {
172         Evas_Object *eo = NULL;
173         int w = 0;
174         int h = 0;
175
176         g_print("[%s][%d] name=%s\n", __func__, __LINE__, name);
177
178         eo = elm_win_add(NULL, name, ELM_WIN_BASIC);
179         if (eo) {
180                 elm_win_title_set(eo, name);
181                 elm_win_borderless_set(eo, EINA_TRUE);
182                 evas_object_smart_callback_add(eo, "delete,request", win_del, NULL);
183                 elm_win_screen_size_get(eo, NULL, NULL, &w, &h);
184                 g_print("window size :%d,%d", w, h);
185                 evas_object_resize(eo, w, h);
186                 elm_win_autodel_set(eo, EINA_TRUE);
187                 elm_win_alpha_set(eo, EINA_TRUE);
188         }
189         return eo;
190 }
191
192 static Evas_Object *create_image_object(Evas_Object * eo_parent)
193 {
194         if (!eo_parent)
195                 return NULL;
196
197         Evas *evas = evas_object_evas_get(eo_parent);
198         Evas_Object *eo = NULL;
199
200         eo = evas_object_image_add(evas);
201
202         return eo;
203 }
204
205 void create_render_rect_and_bg(Evas_Object * win)
206 {
207         if (!win) {
208                 g_print("no win");
209                 return;
210         }
211         Evas_Object *bg, *rect;
212
213         bg = elm_bg_add(win);
214         elm_win_resize_object_add(win, bg);
215         evas_object_size_hint_weight_set(bg, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
216         evas_object_show(bg);
217
218         rect = evas_object_rectangle_add(evas_object_evas_get(win));
219         if (!rect) {
220                 g_print("no rect");
221                 return;
222         }
223         evas_object_color_set(rect, 0, 0, 0, 0);
224         evas_object_render_op_set(rect, EVAS_RENDER_COPY);
225
226         elm_win_resize_object_add(win, rect);
227         evas_object_size_hint_weight_set(rect, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
228         evas_object_show(rect);
229         evas_object_show(win);
230 }
231
232 #ifdef _ACTIVATE_EOM_
233 int eom_get_output_id(const char *output_name)
234 {
235         eom_output_id *output_ids = NULL;
236         eom_output_id output_id = 0;
237         eom_output_type_e output_type = EOM_OUTPUT_TYPE_UNKNOWN;
238         int id_cnt = 0;
239         int i;
240
241         /* get output_ids */
242         output_ids = eom_get_eom_output_ids(&id_cnt);
243         if (id_cnt == 0) {
244                 g_print("[eom] no external outuputs supported\n");
245                 return 0;
246         }
247
248         /* find output ids interested */
249         for (i = 0; i < id_cnt; i++) {
250                 eom_get_output_type(output_ids[i], &output_type);
251                 if (!strncmp(output_name, "HDMI", 4)) {
252                         if (output_type == EOM_OUTPUT_TYPE_HDMIA || output_type == EOM_OUTPUT_TYPE_HDMIB) {
253                                 output_id = output_ids[i];
254                                 break;
255                         }
256                 } else if (!strncmp(output_name, "Virtual", 4)) {
257                         if (output_type == EOM_OUTPUT_TYPE_VIRTUAL) {
258                                 output_id = output_ids[i];
259                                 break;
260                         }
261                 }
262         }
263
264         if (output_ids)
265                 free(output_ids);
266
267         return output_id;
268 }
269
270 static void eom_notify_cb_output_add(eom_output_id output_id, void *user_data)
271 {
272         appdata *info = (appdata *) user_data;
273
274         if (info->hdmi_output_id != output_id) {
275                 g_print("[eom] OUTPUT ADDED. SKIP. my output ID is %d\n", info->hdmi_output_id);
276                 return;
277         }
278         g_print("[eom] output(%d) connected\n", output_id);
279         /* it is for external window */
280         if (!g_external_win_id) {
281                 g_external_win_id = elm_win_add(NULL, "External", ELM_WIN_BASIC);
282                 if (eom_set_output_window(info->hdmi_output_id, g_external_win_id) == EOM_ERROR_NONE) {
283                         create_render_rect_and_bg(g_external_win_id);
284                         g_print("[eom] create external window\n");
285                 } else {
286                         evas_object_del(g_external_win_id);
287                         g_external_win_id = NULL;
288                         g_print("[eom] create external window fail\n");
289                 }
290         }
291 }
292
293 static void eom_notify_cb_output_remove(eom_output_id output_id, void *user_data)
294 {
295         appdata *info = (appdata *) user_data;
296         player_state_e state;
297
298         if (info->hdmi_output_id != output_id) {
299                 g_print("[eom] OUTPUT REMOVED. SKIP. my output ID is %d\n", info->hdmi_output_id);
300                 return;
301         }
302         g_print("[eom] output(%d) disconnected\n", output_id);
303
304         if (selected_win_id == g_external_win_id && g_player[0]) {
305                 player_get_state(g_player[0], &state);
306                 if (state >= PLAYER_STATE_READY) {
307                         if (!g_win_id) {
308                                 g_win_id = create_win(PACKAGE);
309                                 if (g_win_id == NULL)
310                                         return;
311                                 g_print("create win_id %p\n", g_win_id);
312                                 create_render_rect_and_bg(g_win_id);
313                                 elm_win_activate(g_win_id);
314                                 evas_object_show(g_win_id);
315                         }
316                         player_set_display(g_player[0], PLAYER_DISPLAY_TYPE_OVERLAY, GET_DISPLAY(g_win_id));
317                 }
318         }
319
320         /* it is for external window */
321         if (g_external_win_id) {
322                 evas_object_del(g_external_win_id);
323                 g_external_win_id = NULL;
324         }
325         selected_win_id = g_win_id;
326 }
327
328 static void eom_notify_cb_mode_changed(eom_output_id output_id, void *user_data)
329 {
330         appdata *info = (appdata *) user_data;
331         eom_output_mode_e mode = EOM_OUTPUT_MODE_NONE;
332
333         if (info->hdmi_output_id != output_id) {
334                 g_print("[eom] MODE CHANGED. SKIP. my output ID is %d\n", info->hdmi_output_id);
335                 return;
336         }
337
338         eom_get_output_mode(output_id, &mode);
339         g_print("[eom] output(%d) mode changed(%d)\n", output_id, mode);
340 }
341
342 static void eom_notify_cb_attribute_changed(eom_output_id output_id, void *user_data)
343 {
344         appdata *info = (appdata *) user_data;
345
346         eom_output_attribute_e attribute = EOM_OUTPUT_ATTRIBUTE_NONE;
347         eom_output_attribute_state_e state = EOM_OUTPUT_ATTRIBUTE_STATE_NONE;
348
349         if (info->hdmi_output_id != output_id) {
350                 g_print("[eom] ATTR CHANGED. SKIP. my output ID is %d\n", info->hdmi_output_id);
351                 return;
352         }
353
354         eom_get_output_attribute(output_id, &attribute);
355         eom_get_output_attribute_state(output_id, &state);
356
357         g_print("[eom] output(%d) attribute changed(%d, %d)\n", output_id, attribute, state);
358         if (state == EOM_OUTPUT_ATTRIBUTE_STATE_ACTIVE) {
359                 g_print("[eom] active\n");
360                 if (!g_external_win_id) {
361                         g_external_win_id = elm_win_add(NULL, "External", ELM_WIN_BASIC);
362                         if (eom_set_output_window(info->hdmi_output_id, g_external_win_id) == EOM_ERROR_NONE) {
363                                 create_render_rect_and_bg(g_external_win_id);
364                                 g_print("[eom] create external window\n");
365                         } else {
366                                 evas_object_del(g_external_win_id);
367                                 g_external_win_id = NULL;
368                                 g_print("[eom] create external window fail\n");
369                         }
370                 }
371                 selected_win_id = g_external_win_id;
372                 /* play video on external window */
373                 if (g_player[0])
374                         player_set_display(g_player[0], PLAYER_DISPLAY_TYPE_OVERLAY, GET_DISPLAY(selected_win_id));
375         } else if (state == EOM_OUTPUT_ATTRIBUTE_STATE_INACTIVE) {
376                 g_print("[eom] inactive\n");
377                 if (!g_win_id) {
378                         g_win_id = create_win(PACKAGE);
379                         if (g_win_id == NULL)
380                                 return;
381                         g_print("create win_id %p\n", g_win_id);
382                         create_render_rect_and_bg(g_win_id);
383                         elm_win_activate(g_win_id);
384                         evas_object_show(g_win_id);
385                 }
386                 selected_win_id = g_win_id;
387                 if (g_player[0])
388                         player_set_display(g_player[0], PLAYER_DISPLAY_TYPE_OVERLAY, GET_DISPLAY(selected_win_id));
389
390                 if (g_external_win_id) {
391                         evas_object_del(g_external_win_id);
392                         g_external_win_id = NULL;
393                 }
394         } else if (state == EOM_OUTPUT_ATTRIBUTE_STATE_LOST) {
395                 g_print("[eom] lost\n");
396                 if (!g_win_id) {
397                         g_win_id = create_win(PACKAGE);
398                         if (g_win_id == NULL)
399                                 return;
400                         g_print("create win_id %p\n", g_win_id);
401                         create_render_rect_and_bg(g_win_id);
402                         elm_win_activate(g_win_id);
403                         evas_object_show(g_win_id);
404                 }
405                 selected_win_id = g_win_id;
406
407                 if (g_player[0])
408                         player_set_display(g_player[0], PLAYER_DISPLAY_TYPE_OVERLAY, GET_DISPLAY(selected_win_id));
409
410                 if (g_external_win_id) {
411                         evas_object_del(g_external_win_id);
412                         g_external_win_id = NULL;
413                 }
414
415                 eom_unset_output_added_cb(eom_notify_cb_output_add);
416                 eom_unset_output_removed_cb(eom_notify_cb_output_remove);
417                 eom_unset_mode_changed_cb(eom_notify_cb_mode_changed);
418                 eom_unset_attribute_changed_cb(eom_notify_cb_attribute_changed);
419
420                 eom_deinit();
421         }
422 }
423 #endif
424 static int app_create(void *data)
425 {
426         appdata *ad = data;
427         Evas_Object *win = NULL;
428 #ifdef _ACTIVATE_EOM_
429         eom_output_mode_e output_mode = EOM_OUTPUT_MODE_NONE;
430 #endif
431         /* use gl backend */
432         elm_config_accel_preference_set("opengl");
433
434         /* create window */
435         win = create_win(PACKAGE);
436         if (win == NULL)
437                 return -1;
438         ad->win = win;
439         g_win_id = win;
440         selected_win_id = g_win_id;
441         create_render_rect_and_bg(ad->win);
442         /* Create evas image object for EVAS surface */
443         g_eo[0] = create_image_object(ad->win);
444         evas_object_image_size_set(g_eo[0], 500, 500);
445         evas_object_image_fill_set(g_eo[0], 0, 0, 500, 500);
446         evas_object_resize(g_eo[0], 500, 500);
447
448         elm_win_activate(win);
449         evas_object_show(win);
450 #ifdef _ACTIVATE_EOM_
451         /* check external device */
452         eom_init();
453         ad->hdmi_output_id = eom_get_output_id("HDMI");
454         if (ad->hdmi_output_id == 0) {
455                 g_print("[eom] error : HDMI output id is NULL.\n");
456                 return 0;
457         }
458
459         g_print("eom_set_output_attribute EOM_OUTPUT_ATTRIBUTE_NORMAL(id:%d)\n", ad->hdmi_output_id);
460         if (eom_set_output_attribute(ad->hdmi_output_id, EOM_OUTPUT_ATTRIBUTE_NORMAL) != EOM_ERROR_NONE) {
461                 g_print("attribute set fail. cannot use external output\n");
462                 eom_deinit();
463         }
464
465         eom_get_output_mode(ad->hdmi_output_id, &output_mode);
466         if (output_mode != EOM_OUTPUT_MODE_NONE) {
467                 g_external_win_id = elm_win_add(NULL, "External", ELM_WIN_BASIC);
468                 if (eom_set_output_window(ad->hdmi_output_id, g_external_win_id) == EOM_ERROR_NONE) {
469                         create_render_rect_and_bg(g_external_win_id);
470                         g_print("[eom] create external window\n");
471                 } else {
472                         evas_object_del(g_external_win_id);
473                         g_external_win_id = NULL;
474                         g_print("[eom] create external window fail\n");
475                 }
476                 selected_win_id = g_external_win_id;
477         }
478
479         /* set callback for detecting external device */
480         eom_set_output_added_cb(eom_notify_cb_output_add, ad);
481         eom_set_output_removed_cb(eom_notify_cb_output_remove, ad);
482         eom_set_mode_changed_cb(eom_notify_cb_mode_changed, ad);
483         eom_set_attribute_changed_cb(eom_notify_cb_attribute_changed, ad);
484 #endif
485         return 0;
486 }
487
488 static int app_terminate(void *data)
489 {
490         appdata *ad = data;
491         int i = 0;
492
493         for (i = 0; i < MAX_HANDLE; i++) {
494                 if (g_eo[i]) {
495                         evas_object_del(g_eo[i]);
496                         g_eo[i] = NULL;
497                 }
498         }
499         if (g_win_id) {
500                 evas_object_del(g_win_id);
501                 g_win_id = NULL;
502         }
503 #ifdef _ACTIVATE_EOM_
504         if (g_external_win_id) {
505                 evas_object_del(g_external_win_id);
506                 g_external_win_id = NULL;
507         }
508 #endif
509         ad->win = NULL;
510         selected_win_id = NULL;
511 #ifdef _ACTIVATE_EOM_
512         eom_unset_output_added_cb(eom_notify_cb_output_add);
513         eom_unset_output_removed_cb(eom_notify_cb_output_remove);
514         eom_unset_mode_changed_cb(eom_notify_cb_mode_changed);
515         eom_unset_attribute_changed_cb(eom_notify_cb_attribute_changed);
516
517         eom_deinit();
518 #endif
519         return 0;
520 }
521
522 struct appcore_ops ops = {
523         .create = app_create,
524         .terminate = app_terminate,
525 };
526
527 static void prepared_cb(void *user_data)
528 {
529         g_print("[Player_Test] prepared_cb!!!!\n");
530 }
531
532 static void _audio_frame_decoded_cb_ex(player_audio_raw_data_s * audio_raw_frame, void *user_data)
533 {
534         player_audio_raw_data_s *audio_raw = audio_raw_frame;
535
536         if (!audio_raw)
537                 return;
538
539         g_print("[Player_Test] decoded_cb_ex! channel: %d channel_mask: %llu\n", audio_raw->channel, audio_raw->channel_mask);
540
541 #if DUMP_OUTBUF
542         if (audio_raw->channel_mask == 1 && fp_out1)
543                 fwrite((guint8 *) audio_raw->data, 1, audio_raw->size, fp_out1);
544         else if (audio_raw->channel_mask == 2 && fp_out2)
545                 fwrite((guint8 *) audio_raw->data, 1, audio_raw->size, fp_out2);
546 #endif
547 }
548
549 static void progress_down_cb(player_pd_message_type_e type, void *user_data)
550 {
551         g_print("[Player_Test] progress_down_cb!!!! type : %d\n", type);
552 }
553
554 static void buffering_cb(int percent, void *user_data)
555 {
556         g_print("[Player_Test] buffering_cb!!!! percent : %d\n", percent);
557 }
558
559 static void seek_completed_cb(void *user_data)
560 {
561         g_print("[Player_Test] seek_completed_cb!!! \n");
562 }
563
564 static void completed_cb(void *user_data)
565 {
566         g_print("[Player_Test] completed_cb!!!!\n");
567 }
568
569 static void error_cb(int code, void *user_data)
570 {
571         g_print("[Player_Test] error_cb!!!! code : %d\n", code);
572 }
573
574 static void interrupted_cb(player_interrupted_code_e code, void *user_data)
575 {
576         g_print("[Player_Test] interrupted_cb!!!! code : %d\n", code);
577 }
578
579 #if 0
580 static void audio_frame_decoded_cb(unsigned char *data, unsigned int size, void *user_data)
581 {
582         int pos = 0;
583
584         if (data && g_pcm_fd)
585                 fwrite(data, 1, size, g_pcm_fd);
586         player_get_play_position(g_player[0], &pos);
587         g_print("[Player_Test] audio_frame_decoded_cb [size: %d] --- current pos : %d!!!!\n", size, pos);
588 }
589 #endif
590
591 static void subtitle_updated_cb(unsigned long duration, char *text, void *user_data)
592 {
593         g_print("[Player_Test] subtitle_updated_cb!!!! [%ld] %s\n", duration, text);
594 }
595
596 static void video_captured_cb(unsigned char *data, int width, int height, unsigned int size, void *user_data)
597 {
598         g_print("[Player_Test] video_captured_cb!!!! width: %d, height : %d, size : %d \n", width, height, size);
599         _save(data, size);
600 }
601
602 static int _save(unsigned char *src, int length)
603 {
604         /* unlink(CAPTUERD_IMAGE_SAVE_PATH); */
605         FILE *fp;
606         char filename[256] = { 0, };
607         static int WRITE_COUNT = 0;
608         /* gchar *filename  = CAPTUERD_IMAGE_SAVE_PATH; */
609         snprintf(filename, 256, "/tmp/IMAGE_client%d", WRITE_COUNT);
610         WRITE_COUNT++;
611         fp = fopen(filename, "w+");
612         if (fp == NULL) {
613                 g_print("file open error!!\n");
614                 return FALSE;
615         } else {
616                 g_print("open success\n");
617                 if (fwrite(src, 1, length, fp) < 1) {
618                         g_print("file write error!!\n");
619                         fclose(fp);
620                         return FALSE;
621                 }
622                 g_print("write success(%s)\n", filename);
623                 fclose(fp);
624         }
625
626         return TRUE;
627 }
628
629 static void reset_display()
630 {
631         int i = 0;
632
633         /* delete evas window, if it is */
634         for (i = 0; i < MAX_HANDLE; i++) {
635                 if (g_eo[i]) {
636                         evas_object_del(g_eo[i]);
637                         g_eo[i] = NULL;
638                 }
639         }
640 }
641
642 static void input_filename(char *filename)
643 {
644         int len = strlen(filename);
645         int i = 0;
646
647         if (len < 0 || len > MAX_STRING_LEN - 1)
648                 return;
649
650         for (i = 0; i < g_handle_num; i++) {
651                 if (g_player[i] != NULL) {
652                         player_unprepare(g_player[i]);
653                         player_destroy(g_player[i]);
654                 }
655                 g_player[i] = 0;
656
657                 if (player_create(&g_player[i]) != PLAYER_ERROR_NONE)
658                         g_print("player create is failed\n");
659         }
660
661         strncpy(g_uri, filename, len);
662         g_uri[len] = '\0';
663
664 #if 0
665         /* ned(APPSRC_TEST) */
666         gchar uri[100];
667         gchar *ext;
668         gsize file_size;
669         GMappedFile *file;
670         GError *error = NULL;
671         guint8 *g_media_mem = NULL;
672
673         ext = filename;
674
675         file = g_mapped_file_new(ext, FALSE, &error);
676         file_size = g_mapped_file_get_length(file);
677         g_media_mem = (guint8 *) g_mapped_file_get_contents(file);
678
679         g_sprintf(uri, "mem://ext=%s,size=%d", ext ? ext : "", file_size);
680         g_print("[uri] = %s\n", uri);
681
682         mm_player_set_attribute(g_player[0], &g_err_name, "profile_uri", uri, strlen(uri), "profile_user_param", g_media_mem, file_size NULL);
683 #else
684         /* player_set_uri(g_player[0], filename); */
685 #endif
686         /* APPSRC_TEST */
687
688         int ret;
689         player_state_e state;
690         for (i = 0; i < g_handle_num; i++) {
691                 ret = player_get_state(g_player[i], &state);
692                 g_print("player_get_state returned [%d]\n", ret);
693                 g_print("1. After player_create() - Current State : %d \n", state);
694         }
695 }
696
697 /* use this API instead of player_set_uri */
698 static void player_set_memory_buffer_test()
699 {
700         GMappedFile *file;
701         gsize file_size;
702         guint8 *g_media_mem = NULL;
703
704         file = g_mapped_file_new(g_uri, FALSE, NULL);
705         file_size = g_mapped_file_get_length(file);
706         g_media_mem = (guint8 *) g_mapped_file_get_contents(file);
707
708         int ret = player_set_memory_buffer(g_player[0], (void *)g_media_mem, file_size);
709         g_print("player_set_memory_buffer ret : %d\n", ret);
710 }
711
712 int video_packet_count = 0;
713
714 static void buffer_need_video_data_cb(unsigned int size, void *user_data)
715 {
716         int real_read_len = 0;
717         char fname[128];
718         char fptsname[128];
719         static guint64 pts = 0L;
720
721         FILE *fp = NULL;
722         guint8 *buff_ptr = NULL;
723         void *src = NULL;
724
725         memset(fname, 0, 128);
726         memset(fptsname, 0, 128);
727
728         video_packet_count++;
729
730         if (video_packet_count > 1000) {
731                 g_print("EOS.\n");
732
733                 /* player_submit_packet(g_player[0], NULL, 0, 0, 1); */
734                 player_push_media_stream(g_player[0], NULL);
735                 g_thread_end = TRUE;
736         }
737
738         /* snprintf(fname, 128, "/opt/storage/usb/test/packet/packet_%d.dat", video_packet_count); */
739         /* snprintf(fptsname, 128, "/opt/storage/usb/test/packet/gstpts_%d.dat", video_packet_count); */
740         snprintf(fname, 128, "/home/developer/test/packet/packet_%d.dat", video_packet_count);
741         snprintf(fptsname, 128, "/home/developer/test/packet/gstpts_%d.dat", video_packet_count);
742
743         fp = fopen(fptsname, "rb");
744         if (fp) {
745                 int pts_len = 0;
746                 pts_len = fread(&pts, 1, sizeof(guint64), fp);
747                 if (pts_len != sizeof(guint64))
748                         g_print("Warning, pts value can be wrong.\n");
749                 fclose(fp);
750                 fp = NULL;
751         }
752
753         fp = fopen(fname, "rb");
754         if (fp) {
755                 buff_ptr = (guint8 *) g_malloc0(1048576);
756                 if (!buff_ptr) {
757                         g_print("no free space\n");
758                         fclose(fp);
759                         fp = NULL;
760                         return;
761                 }
762                 real_read_len = fread(buff_ptr, 1, size, fp);
763                 fclose(fp);
764                 fp = NULL;
765         }
766         g_print("video need data - data size : %d, pts : %" G_GUINT64_FORMAT "\n", real_read_len, pts);
767 #if 0
768         player_submit_packet(g_player[0], buff_ptr, real_read_len, (pts / 1000000), 1);
769 #else
770         /* create media packet */
771         if (g_video_pkt) {
772                 media_packet_destroy(g_video_pkt);
773                 g_video_pkt = NULL;
774         }
775
776         media_packet_create_alloc(g_video_fmt, NULL, NULL, &g_video_pkt);
777
778         g_print("packet = %p, src = %p\n", g_video_pkt, src);
779
780         if (media_packet_get_buffer_data_ptr(g_video_pkt, &src) != MEDIA_PACKET_ERROR_NONE)
781                 goto EXIT;
782
783         if (media_packet_set_pts(g_video_pkt, (uint64_t) pts) != MEDIA_PACKET_ERROR_NONE)
784                 goto EXIT;
785
786         if (media_packet_set_buffer_size(g_video_pkt, (uint64_t) real_read_len) != MEDIA_PACKET_ERROR_NONE)
787                 goto EXIT;
788
789         memcpy(src, buff_ptr, real_read_len);
790
791         /* then, push it  */
792         player_push_media_stream(g_player[0], g_video_pkt);
793 #endif
794
795  EXIT:
796         if (buff_ptr) {
797                 g_free(buff_ptr);
798                 buff_ptr = NULL;
799         }
800 }
801
802 int audio_packet_count = 0;
803 static void buffer_need_audio_data_cb(unsigned int size, void *user_data)
804 {
805         int real_read_len = 0;
806         char fname[128];
807         FILE *fp = NULL;
808         guint8 *buff_ptr = NULL;
809         void *src = NULL;
810
811         memset(fname, 0, 128);
812         audio_packet_count++;
813
814         if (audio_packet_count > 1000) {
815                 g_print("EOS.\n");
816                 /* player_submit_packet(g_player[0], NULL, 0, 0, 0); */
817                 player_push_media_stream(g_player[0], NULL);
818                 g_thread_end = TRUE;
819         }
820
821         /* snprintf(fname, 128, "/opt/storage/usb/test/audio_packet/packet_%d.dat", audio_packet_count); */
822         snprintf(fname, 128, "/home/developer/test/audio_packet/packet_%d.dat", audio_packet_count);
823
824         static guint64 audio_pts = 0;
825         guint64 audio_dur = 21333333;
826
827         fp = fopen(fname, "rb");
828         if (fp) {
829                 buff_ptr = (guint8 *) g_malloc0(1048576);
830                 if (!buff_ptr) {
831                         g_print("no free space\n");
832                         fclose(fp);
833                         fp = NULL;
834                         return;
835                 }
836                 real_read_len = fread(buff_ptr, 1, size, fp);
837                 fclose(fp);
838                 fp = NULL;
839
840                 g_print("\t audio need data - data size : %d, pts : %" G_GUINT64_FORMAT "\n", real_read_len, audio_pts);
841         }
842 #if 0
843         player_submit_packet(g_player[0], buff_ptr, real_read_len, (audio_pts / 1000000), 0);
844 #else
845         /* create media packet */
846         if (g_audio_pkt) {
847                 media_packet_destroy(g_audio_pkt);
848                 g_audio_pkt = NULL;
849         }
850         media_packet_create_alloc(g_audio_fmt, NULL, NULL, &g_audio_pkt);
851
852         g_print("packet = %p, src = %p\n", g_audio_pkt, src);
853
854         if (media_packet_get_buffer_data_ptr(g_audio_pkt, &src) != MEDIA_PACKET_ERROR_NONE)
855                 goto EXIT;
856
857         if (media_packet_set_pts(g_audio_pkt, (uint64_t) audio_pts) != MEDIA_PACKET_ERROR_NONE)
858                 goto EXIT;
859
860         if (media_packet_set_buffer_size(g_audio_pkt, (uint64_t) real_read_len) != MEDIA_PACKET_ERROR_NONE)
861                 goto EXIT;
862
863         memcpy(src, buff_ptr, real_read_len);
864
865         /* then, push it  */
866         player_push_media_stream(g_player[0], g_audio_pkt);
867 #endif
868
869         audio_pts += audio_dur;
870  EXIT:
871         if (buff_ptr) {
872                 g_free(buff_ptr);
873                 buff_ptr = NULL;
874         }
875 }
876
877 static void set_content_info(bool is_push_mode)
878 {
879         /* testcode for es buff src case, please input url as es_buff://123 or es_buff://push_mode */
880         /* unsigned char codec_data[45] =  {0x0,0x0,0x1,0xb0,0x1,0x0,0x0,0x1,0xb5,0x89,0x13,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x20,0x0,0xc4,0x8d,0x88,0x5d,0xad,0x14,0x4,0x22,0x14,0x43,0x0,0x0,0x1,0xb2,0x4c,0x61,0x76,0x63,0x35,0x31,0x2e,0x34,0x30,0x2e,0x34}; */
881
882         /* create media format */
883         media_format_create(&g_audio_fmt);
884         media_format_create(&g_video_fmt);
885
886         /* Video */
887         /* configure media format  for video and set to player */
888         media_format_set_video_mime(g_video_fmt, MEDIA_FORMAT_MPEG4_SP);
889         media_format_set_video_width(g_video_fmt, 640);
890         media_format_set_video_height(g_video_fmt, 272);
891         /* player_set_media_stream_info(g_player[0], PLAYER_STREAM_TYPE_VIDEO, g_video_fmt); */
892
893         /* Audio--aac--StarWars.mp4 */
894         media_format_set_audio_mime(g_audio_fmt, MEDIA_FORMAT_AAC);
895         media_format_set_audio_channel(g_audio_fmt, 2);
896         media_format_set_audio_samplerate(g_audio_fmt, 48000);
897         /* player_set_media_stream_info(g_player[0], PLAYER_STREAM_TYPE_AUDIO, g_audio_fmt); */
898 #if 0
899         /* video_info->mime = g_strdup("video/mpeg"); *//* CODEC_ID_MPEG4VIDEO */
900         video_info->width = 640;
901         video_info->height = 272;
902         video_info->version = 4;
903         video_info->framerate_den = 100;
904         video_info->framerate_num = 2997;
905
906         video_info->extradata_size = 45;
907         video_info->codec_extradata = codec_data;
908         player_set_video_stream_info(g_player[0], video_info);
909
910         /* audio--aac--StarWars.mp4 */
911         /* audio_info->mime = g_strdup("audio/mpeg"); */
912         /* audio_info->version = 2; */
913         /* audio_info->user_info = 0; *//* raw */
914 #endif
915
916 #ifdef _ES_PULL_
917         if (!is_push_mode) {
918                 player_set_buffer_need_video_data_cb(g_player[0], buffer_need_video_data_cb, (void *)g_player[0]);
919                 player_set_buffer_need_audio_data_cb(g_player[0], buffer_need_audio_data_cb, (void *)g_player[0]);
920         }
921 #endif
922 }
923
924 static void feed_video_data_thread_func(void *data)
925 {
926         while (!g_thread_end) {
927                 buffer_need_video_data_cb(1048576, NULL);
928                 buffer_need_audio_data_cb(1048576, NULL);
929         }
930 }
931
932 static void _player_prepare(bool async)
933 {
934         int ret = FALSE;
935         int slen = strlen(g_subtitle_uri);
936
937         if (slen > 0 && slen < MAX_STRING_LEN) {
938                 g_print("0. set subtile path() (size : %d) - %s  \n", slen, g_subtitle_uri);
939                 player_set_subtitle_path(g_player[0], g_subtitle_uri);
940                 player_set_subtitle_updated_cb(g_player[0], subtitle_updated_cb, (void *)g_player[0]);
941         }
942         if (g_current_surface_type == -1) {
943                 player_set_display(g_player[0], PLAYER_DISPLAY_TYPE_OVERLAY, GET_DISPLAY(selected_win_id));
944                 g_current_surface_type = PLAYER_DISPLAY_TYPE_OVERLAY;
945         }
946
947         if (g_current_surface_type == PLAYER_DISPLAY_TYPE_OVERLAY) {
948                 player_set_buffering_cb(g_player[0], buffering_cb, (void *)g_player[0]);
949                 player_set_completed_cb(g_player[0], completed_cb, (void *)g_player[0]);
950                 player_set_interrupted_cb(g_player[0], interrupted_cb, (void *)g_player[0]);
951                 player_set_error_cb(g_player[0], error_cb, (void *)g_player[0]);
952                 if (g_memory_playback)
953                         player_set_memory_buffer_test();
954                 else
955                         player_set_uri(g_player[0], g_uri);
956         } else {
957                 int i = 0;
958                 for (i = 0; i < g_handle_num; i++) {
959                         player_set_buffering_cb(g_player[i], buffering_cb, (void *)g_player[i]);
960                         player_set_completed_cb(g_player[i], completed_cb, (void *)g_player[i]);
961                         player_set_interrupted_cb(g_player[i], interrupted_cb, (void *)g_player[i]);
962                         player_set_error_cb(g_player[i], error_cb, (void *)g_player[i]);
963                         if (g_memory_playback)
964                                 player_set_memory_buffer_test();
965                         else
966                                 player_set_uri(g_player[i], g_uri);
967                 }
968         }
969
970         if (strstr(g_uri, "es_buff://")) {
971                 is_es_push_mode = FALSE;
972                 video_packet_count = 0;
973                 audio_packet_count = 0;
974
975                 if (strstr(g_uri, "es_buff://push_mode")) {
976                         set_content_info(TRUE);
977                         async = TRUE;
978                         is_es_push_mode = TRUE;
979 #ifdef _ES_PULL_
980                 } else {
981                         set_content_info(FALSE);
982 #endif
983                 }
984         }
985
986         if (g_current_surface_type == PLAYER_DISPLAY_TYPE_OVERLAY) {
987                 if (async)
988                         ret = player_prepare_async(g_player[0], prepared_cb, (void *)g_player[0]);
989                 else
990                         ret = player_prepare(g_player[0]);
991         } else {
992                 int i = 0;
993                 for (i = 0; i < g_handle_num; i++) {
994                         if (async)
995                                 ret = player_prepare_async(g_player[i], prepared_cb, (void *)g_player[i]);
996                         else
997                                 ret = player_prepare(g_player[i]);
998                 }
999         }
1000
1001         if (ret != PLAYER_ERROR_NONE)
1002                 g_print("prepare is failed (errno = %d) \n", ret);
1003
1004         player_state_e state;
1005         if (g_current_surface_type == PLAYER_DISPLAY_TYPE_OVERLAY) {
1006                 ret = player_get_state(g_player[0], &state);
1007                 g_print("After player_prepare() - Current State : %d \n", state);
1008         } else {
1009                 int i = 0;
1010                 for (i = 0; i < g_handle_num; i++) {
1011                         ret = player_get_state(g_player[i], &state);
1012                         g_print("After player_prepare() - Current State : %d \n", state);
1013                 }
1014         }
1015
1016         if (is_es_push_mode)
1017                 pthread_create(&g_feed_video_thread_id, NULL, (void *)feed_video_data_thread_func, NULL);
1018
1019 }
1020
1021 static void _player_unprepare()
1022 {
1023         int ret = FALSE;
1024         int i = 0;
1025         if (g_current_surface_type == PLAYER_DISPLAY_TYPE_OVERLAY) {
1026                 ret = player_unprepare(g_player[0]);
1027                 if (ret != PLAYER_ERROR_NONE)
1028                         g_print("unprepare is failed (errno = %d) \n", ret);
1029
1030                 ret = player_unset_subtitle_updated_cb(g_player[0]);
1031                 g_print("player_unset_subtitle_updated_cb ret %d\n", ret);
1032
1033                 ret = player_unset_buffering_cb(g_player[0]);
1034                 g_print("player_unset_buffering_cb ret %d\n", ret);
1035
1036                 ret = player_unset_completed_cb(g_player[0]);
1037                 g_print("player_unset_completed_cb ret %d\n", ret);
1038
1039                 ret = player_unset_interrupted_cb(g_player[0]);
1040                 g_print("player_unset_interrupted_cb ret %d\n", ret);
1041
1042                 ret = player_unset_error_cb(g_player[0]);
1043                 g_print("player_unset_error_cb ret %d\n", ret);
1044         } else {
1045                 for (i = 0; i < g_handle_num; i++) {
1046                         if (g_player[i] != NULL) {
1047                                 ret = player_unprepare(g_player[i]);
1048                                 if (ret != PLAYER_ERROR_NONE)
1049                                         g_print("unprepare is failed (errno = %d) \n", ret);
1050
1051                                 ret = player_unset_subtitle_updated_cb(g_player[i]);
1052                                 g_print("player_unset_subtitle_updated_cb [%d] ret %d\n", i, ret);
1053
1054                                 ret = player_unset_buffering_cb(g_player[i]);
1055                                 g_print("player_unset_buffering_cb [%d] ret %d\n", i, ret);
1056
1057                                 ret = player_unset_completed_cb(g_player[i]);
1058                                 g_print("player_unset_completed_cb [%d] ret %d\n", i, ret);
1059
1060                                 ret = player_unset_interrupted_cb(g_player[i]);
1061                                 g_print("player_unset_interrupted_cb [%d] ret %d\n", i, ret);
1062
1063                                 ret = player_unset_error_cb(g_player[i]);
1064                                 g_print("player_unset_error_cb [%d] ret %d\n", i, ret);
1065                         }
1066                 }
1067         }
1068         /* attention! surface(evas) -> unprepare -> surface(evas) : evas object will disappear. */
1069         reset_display();
1070         g_current_surface_type = -1;
1071         memset(g_subtitle_uri, 0, sizeof(g_subtitle_uri));
1072         player_state_e state;
1073         if (g_current_surface_type == PLAYER_DISPLAY_TYPE_OVERLAY) {
1074                 ret = player_get_state(g_player[0], &state);
1075                 g_print(" After player_unprepare() - Current State : %d \n", state);
1076         } else {
1077                 for (i = 0; i < g_handle_num; i++) {
1078                         ret = player_get_state(g_player[i], &state);
1079                         g_print(" After player_unprepare() - Current State : %d \n", state);
1080                 }
1081         }
1082 }
1083
1084 static void _player_destroy()
1085 {
1086         int i = 0;
1087
1088         if (g_current_surface_type == PLAYER_DISPLAY_TYPE_OVERLAY) {
1089                 player_unprepare(g_player[0]);
1090                 for (i = 0; i < g_handle_num; i++) {
1091                         player_destroy(g_player[i]);
1092                         g_player[i] = 0;
1093                 }
1094         } else {
1095                 for (i = 0; i < g_handle_num; i++) {
1096                         if (g_player[i] != NULL) {
1097                                 player_unprepare(g_player[i]);
1098                                 player_destroy(g_player[i]);
1099                                 g_player[i] = 0;
1100                         }
1101                 }
1102         }
1103
1104         if (g_stream_info_h) {
1105                 sound_manager_destroy_stream_information(g_stream_info_h);
1106                 g_stream_info_h = NULL;
1107         }
1108
1109         if (g_video_pkt)
1110                 media_packet_destroy(g_video_pkt);
1111
1112         if (g_audio_pkt)
1113                 media_packet_destroy(g_audio_pkt);
1114
1115 #if DUMP_OUTBUF
1116         if (fp_out1)
1117                 fclose(fp_out1);
1118         if (fp_out2)
1119                 fclose(fp_out2);
1120 #endif
1121
1122 }
1123
1124 static void _player_play()
1125 {
1126         int bRet = FALSE;
1127         int i = 0;
1128         if (g_current_surface_type == PLAYER_DISPLAY_TYPE_OVERLAY) {
1129 #ifdef _ACTIVATE_EOM_
1130                 /* for checking external display.... */
1131                 player_set_display(g_player[0], g_current_surface_type, GET_DISPLAY(selected_win_id));
1132 #endif
1133                 bRet = player_start(g_player[0]);
1134                 g_print("player_start returned [%d]", bRet);
1135         } else {
1136                 for (i = 0; i < g_handle_num; i++) {
1137                         bRet = player_start(g_player[i]);
1138                         g_print("player_start returned [%d]", bRet);
1139                 }
1140         }
1141 }
1142
1143 static void _player_stop()
1144 {
1145         int bRet = FALSE;
1146         int i = 0;
1147         if (g_current_surface_type == PLAYER_DISPLAY_TYPE_OVERLAY) {
1148                 bRet = player_stop(g_player[0]);
1149                 g_print("player_stop returned [%d]", bRet);
1150         } else {
1151                 for (i = 0; i < g_handle_num; i++) {
1152                         bRet = player_stop(g_player[i]);
1153                         g_print("player_stop returned [%d]", bRet);
1154                 }
1155         }
1156
1157         g_thread_end = TRUE;
1158         if (g_feed_video_thread_id) {
1159                 pthread_join(g_feed_video_thread_id, NULL);
1160                 g_feed_video_thread_id = 0;
1161         }
1162
1163 }
1164
1165 static void _player_resume()
1166 {
1167         int bRet = FALSE;
1168         int i = 0;
1169         if (g_current_surface_type == PLAYER_DISPLAY_TYPE_OVERLAY) {
1170 #ifdef _ACTIVATE_EOM_
1171                 /* for checking external display.... */
1172                 player_set_display(g_player[0], PLAYER_DISPLAY_TYPE_OVERLAY, GET_DISPLAY(selected_win_id));
1173 #endif
1174                 bRet = player_start(g_player[0]);
1175                 g_print("player_start returned [%d]", bRet);
1176         } else {
1177                 for (i = 0; i < g_handle_num; i++) {
1178                         bRet = player_start(g_player[i]);
1179                         g_print("player_start returned [%d]", bRet);
1180                 }
1181         }
1182 }
1183
1184 static void _player_pause()
1185 {
1186         int bRet = FALSE;
1187         int i = 0;
1188         if (g_current_surface_type == PLAYER_DISPLAY_TYPE_OVERLAY) {
1189                 bRet = player_pause(g_player[0]);
1190                 g_print("player_pause returned [%d]", bRet);
1191         } else {
1192                 for (i = 0; i < g_handle_num; i++) {
1193                         bRet = player_pause(g_player[i]);
1194                         g_print("player_pause returned [%d]", bRet);
1195                 }
1196         }
1197 }
1198
1199 static void _player_state()
1200 {
1201         player_state_e state;
1202         player_get_state(g_player[0], &state);
1203         g_print("                                                            ==> [Player_Test] Current Player State : %d\n", state);
1204 }
1205
1206 static void _player_set_progressive_download()
1207 {
1208         player_set_progressive_download_path(g_player[0], "/home/owner/test.pd");
1209         player_set_progressive_download_message_cb(g_player[0], progress_down_cb, (void *)g_player[0]);
1210 }
1211
1212 static void _player_get_progressive_download_status()
1213 {
1214         int bRet;
1215         unsigned long curr, total;
1216         bRet = player_get_progressive_download_status(g_player[0], &curr, &total);
1217         g_print("player_get_progressive_download_status return[%d]           ==> [Player_Test] progressive download status : %lu/%lu\n", bRet, curr, total);
1218 }
1219
1220 static void _player_enable_tsurf_pool(void)
1221 {
1222         bool enabled = FALSE;
1223
1224         if (TIZEN_TV) {
1225                 g_print("not support at TV profile");
1226                 return;
1227         }
1228
1229         player_is_enabled_tsurf_pool(g_player[0], &enabled);
1230
1231         g_print("tbm surface pool will be %s", (enabled) ? "disabled" : "enabled");
1232         player_enable_tsurf_pool(g_player[0], !enabled);
1233 }
1234
1235 static void set_next_uri(char * uri)
1236 {
1237         if (TIZEN_TV) {
1238                 g_print("not support at TV profile");
1239                 return;
1240         }
1241
1242         if (player_set_next_uri(g_player[0], uri) != PLAYER_ERROR_NONE)
1243                 g_print("fail to set next uri");
1244 }
1245
1246 static void get_next_uri()
1247 {
1248         char *uri;
1249
1250         if (TIZEN_TV) {
1251                 g_print("not support at TV profile");
1252                 return;
1253         }
1254
1255         if (player_get_next_uri(g_player[0], &uri) != PLAYER_ERROR_NONE) {
1256                 g_print("fail to get next uri");
1257                 return;
1258         }
1259
1260         if (uri != NULL) {
1261                 g_print("next_uri = %s", uri);
1262                 free(uri);
1263         }
1264 }
1265
1266 static void set_volume(float volume)
1267 {
1268         if (player_set_volume(g_player[0], volume, volume) != PLAYER_ERROR_NONE)
1269                 g_print("failed to set volume\n");
1270 }
1271
1272 static void get_volume(float *left, float *right)
1273 {
1274         player_get_volume(g_player[0], left, right);
1275         g_print("                                                            ==> [Player_Test] volume - left : %f, right : %f\n", *left, *right);
1276 }
1277
1278 static void set_mute(bool mute)
1279 {
1280         if (player_set_mute(g_player[0], mute) != PLAYER_ERROR_NONE)
1281                 g_print("failed to set_mute\n");
1282 }
1283
1284 static void get_mute(bool * mute)
1285 {
1286         player_is_muted(g_player[0], mute);
1287         g_print("                                                            ==> [Player_Test] mute = %d\n", *mute);
1288 }
1289
1290 static void set_sound_type(sound_type_e type)
1291 {
1292         if (player_set_sound_type(g_player[0], type) != PLAYER_ERROR_NONE)
1293                 g_print("failed to set sound type(%d)\n", type);
1294         else
1295                 g_print("set sound type(%d) success", type);
1296 }
1297
1298 void focus_callback(sound_stream_info_h stream_info,
1299                                         sound_stream_focus_mask_e focus_mask,
1300                                         sound_stream_focus_state_e focus_state,
1301                                         sound_stream_focus_change_reason_e reason,
1302                                         int sound_behavior,
1303                                         const char *extra_info,
1304                                         void *user_data)
1305 {
1306         g_print("FOCUS callback is called, reason(%d), extra_info(%s), userdata(%p)", reason, extra_info, user_data);
1307         return;
1308 }
1309
1310 static void set_sound_stream_info(int type)
1311 {
1312         sound_device_list_h device_list = NULL;
1313         int ret = SOUND_MANAGER_ERROR_NONE;
1314
1315         if (g_stream_info_h) {
1316                 g_print("stream information is already set, please destory handle and try again\n");
1317                 return;
1318         }
1319         if (sound_manager_create_stream_information(type, focus_callback, g_player[0], &g_stream_info_h)) {
1320                 g_print("failed to create stream_information()\n");
1321                 return;
1322         }
1323         /* In case of MEDIA_EXTERNAL_ONLY, we need to set external device manually */
1324         if (type == (int)SOUND_STREAM_TYPE_MEDIA_EXTERNAL_ONLY) {
1325                 sound_device_h device = NULL;
1326                 sound_device_type_e device_type;
1327
1328                 if ((ret = sound_manager_get_device_list(SOUND_DEVICE_ALL_MASK, &device_list))) {
1329                         g_print("failed to sound_manager_get_device_list(), ret(0x%x)\n", ret);
1330                         return;
1331                 }
1332                 while (!(ret = sound_manager_get_next_device(device_list, &device))) {
1333                         if ((ret = sound_manager_get_device_type(device, &device_type))) {
1334                                 g_print("failed to sound_manager_get_device_type(), ret(0x%x)\n", ret);
1335                                 goto END;
1336                         }
1337                         if (device_type == SOUND_DEVICE_BLUETOOTH || device_type == SOUND_DEVICE_USB_AUDIO) {
1338                                 if ((ret = sound_manager_add_device_for_stream_routing(g_stream_info_h, device))) {
1339                                         g_print("failed to sound_manager_add_device_for_stream_routing(), ret(0x%x)\n", ret);
1340                                         goto END;
1341                                 }
1342                                 if ((ret = sound_manager_apply_stream_routing(g_stream_info_h))) {
1343                                         g_print("failed to sound_manager_apply_stream_routing(), ret(0x%x)\n", ret);
1344                                         goto END;
1345                                 }
1346                                 break;
1347                         }
1348                 }
1349                 if (ret != SOUND_MANAGER_ERROR_NONE) {
1350                         g_print("failed to sound_manager_get_next_device(), ret(0x%x)\n", ret);
1351                         goto END;
1352                 }
1353         }
1354
1355         if (player_set_sound_stream_info(g_player[0], g_stream_info_h) != PLAYER_ERROR_NONE)
1356                 g_print("failed to set sound stream information(%p)\n", g_stream_info_h);
1357         else
1358                 g_print("set stream information(%p) success", g_stream_info_h);
1359
1360  END:
1361         if (device_list)
1362                 sound_manager_free_device_list(device_list);
1363         return;
1364 }
1365
1366 static void get_position()
1367 {
1368         int position = 0;
1369         int ret;
1370         ret = player_get_play_position(g_player[0], &position);
1371         g_print("                                                            ==> [Player_Test] player_get_play_position()%d return : %d\n", ret, position);
1372 }
1373
1374 static void set_position(int position)
1375 {
1376         if (player_set_play_position(g_player[0], position, TRUE, seek_completed_cb, g_player[0]) != PLAYER_ERROR_NONE)
1377                 g_print("failed to set position\n");
1378 }
1379
1380 static void set_playback_rate(float rate, bool streaming)
1381 {
1382         if (streaming) {
1383                 if (player_set_streaming_playback_rate(g_player[0], rate) != PLAYER_ERROR_NONE)
1384                         g_print("failed to set streaming playback rate\n");
1385         } else {
1386                 if (player_set_playback_rate(g_player[0], rate) != PLAYER_ERROR_NONE)
1387                         g_print("failed to set playback rate\n");
1388         }
1389 }
1390
1391 static void get_duration()
1392 {
1393         int duration = 0;
1394         int ret;
1395         ret = player_get_duration(g_player[0], &duration);
1396         g_print("                                                            ==> [Player_Test] player_get_duration() return : %d\n", ret);
1397         g_print("                                                            ==> [Player_Test] Duration: [%d ] msec\n", duration);
1398 }
1399
1400 static void audio_frame_decoded_cb_ex(bool sync)
1401 {
1402         int ret;
1403 #if DUMP_OUTBUF
1404         fp_out1 = fopen("/tmp/out1.pcm", "wb");
1405         fp_out2 = fopen("/tmp/out2.pcm", "wb");
1406         if (!fp_out1 || !fp_out2) {
1407                 g_print("File open error\n");
1408                 return;
1409         }
1410 #endif
1411
1412         ret = player_set_pcm_extraction_mode(g_player[0], sync, _audio_frame_decoded_cb_ex, &ret);
1413         g_print("                                                            ==> [Player_Test] player_set_audio_frame_decoded_cb_ex(sync:%d) ret:%d\n", sync, ret);
1414
1415         ret = player_set_pcm_spec(g_player[0], "F32LE", 44100, 2);
1416         g_print("[Player_Test] set_pcm_spec return: %d\n", ret);
1417 }
1418
1419 static void get_stream_info()
1420 {
1421         int w = 0;
1422         int h = 0;
1423
1424         char *value = NULL;
1425         player_get_content_info(g_player[0], PLAYER_CONTENT_INFO_ALBUM, &value);
1426         g_print("                                                            ==> [Player_Test] PLAYER_CONTENT_INFO_ALBUM: [%s ] \n", value);
1427         player_get_content_info(g_player[0], PLAYER_CONTENT_INFO_ARTIST, &value);
1428         g_print("                                                            ==> [Player_Test] PLAYER_CONTENT_INFO_ARTIST: [%s ] \n", value);
1429         player_get_content_info(g_player[0], PLAYER_CONTENT_INFO_AUTHOR, &value);
1430         g_print("                                                            ==> [Player_Test] PLAYER_CONTENT_INFO_AUTHOR: [%s ] \n", value);
1431         player_get_content_info(g_player[0], PLAYER_CONTENT_INFO_GENRE, &value);
1432         g_print("                                                            ==> [Player_Test] PLAYER_CONTENT_INFO_GENRE: [%s ] \n", value);
1433         player_get_content_info(g_player[0], PLAYER_CONTENT_INFO_TITLE, &value);
1434         g_print("                                                            ==> [Player_Test] PLAYER_CONTENT_INFO_TITLE: [%s ] \n", value);
1435         void *album;
1436         int size;
1437         player_get_album_art(g_player[0], &album, &size);
1438         g_print("                                                            ==> [Player_Test] Album art : [ data : %p, size : %d ]\n", (unsigned int *)album, size);
1439         _save(album, size);
1440         if (value != NULL) {
1441                 free(value);
1442                 value = NULL;
1443         }
1444
1445         int sample_rate;
1446         int channel;
1447         int bit_rate;
1448         int fps, v_bit_rate;
1449         player_get_audio_stream_info(g_player[0], &sample_rate, &channel, &bit_rate);
1450         g_print("                                                            ==> [Player_Test] Sample Rate: [%d ] , Channel: [%d ] , Bit Rate: [%d ] \n", sample_rate, channel, bit_rate);
1451
1452         player_get_video_stream_info(g_player[0], &fps, &v_bit_rate);
1453         g_print("                                                            ==> [Player_Test] fps: [%d ] , Bit Rate: [%d ] \n", fps, v_bit_rate);
1454
1455         char *audio_codec = NULL;
1456         char *video_codec = NULL;
1457         player_get_codec_info(g_player[0], &audio_codec, &video_codec);
1458         if (audio_codec != NULL) {
1459                 g_print("                                                            ==> [Player_Test] Audio Codec: [%s ] \n", audio_codec);
1460                 free(audio_codec);
1461                 audio_codec = NULL;
1462         }
1463         if (video_codec != NULL) {
1464                 g_print("                                                            ==> [Player_Test] Video Codec: [%s ] \n", video_codec);
1465                 free(video_codec);
1466                 video_codec = NULL;
1467         }
1468         player_get_video_size(g_player[0], &w, &h);
1469         g_print("                                                            ==> [Player_Test] Width: [%d ] , Height: [%d ] \n", w, h);
1470 }
1471
1472 static void set_gapless(bool gapless)
1473 {
1474         if (TIZEN_TV) {
1475                 g_print("not support at TV profile");
1476                 return;
1477         }
1478
1479         if (g_current_surface_type == PLAYER_DISPLAY_TYPE_OVERLAY) {
1480                 if (player_set_gapless(g_player[0], gapless) != PLAYER_ERROR_NONE)
1481                         g_print("failed set_gapless\n");
1482         } else {
1483                 int i = 0;
1484                 for (i = 0; i < g_handle_num; i++) {
1485                         if (player_set_gapless(g_player[i], gapless) != PLAYER_ERROR_NONE)
1486                                 g_print("failed to set_gapless\n");
1487                 }
1488         }
1489 }
1490
1491 static void set_looping(bool looping)
1492 {
1493         if (g_current_surface_type == PLAYER_DISPLAY_TYPE_OVERLAY) {
1494                 if (player_set_looping(g_player[0], looping) != PLAYER_ERROR_NONE)
1495                         g_print("failed to set_looping\n");
1496         } else {
1497                 int i = 0;
1498                 for (i = 0; i < g_handle_num; i++) {
1499                         if (player_set_looping(g_player[i], looping) != PLAYER_ERROR_NONE)
1500                                 g_print("failed to set_looping\n");
1501                 }
1502         }
1503 }
1504
1505 static void get_looping(bool * looping)
1506 {
1507         player_is_looping(g_player[0], looping);
1508         g_print("                                                            ==> [Player_Test] looping = %d\n", *looping);
1509 }
1510
1511 static void change_surface(int option)
1512 {
1513         player_display_type_e surface_type = 0;
1514         int ret = PLAYER_ERROR_NONE;
1515 #ifdef _ACTIVATE_EOM_
1516         int hdmi_output_id;
1517         eom_output_mode_e output_mode;
1518 #endif
1519         switch (option) {
1520         case 0:
1521                 /* X surface */
1522                 surface_type = PLAYER_DISPLAY_TYPE_OVERLAY;
1523                 g_print("change surface type to X\n");
1524                 break;
1525 #ifdef TIZEN_FEATURE_EVAS_RENDERER
1526         case 1:
1527                 /* EVAS surface */
1528                 surface_type = PLAYER_DISPLAY_TYPE_EVAS;
1529                 g_print("change surface type to EVAS\n");
1530                 break;
1531 #endif
1532         case 2:
1533                 g_print("change surface type to NONE\n");
1534                 surface_type = g_current_surface_type = PLAYER_DISPLAY_TYPE_NONE;
1535                 player_set_display(g_player[0], PLAYER_DISPLAY_TYPE_NONE, NULL);
1536                 break;
1537         default:
1538                 g_print("invalid surface type\n");
1539                 return;
1540         }
1541
1542         if (surface_type == g_current_surface_type) {
1543                 g_print("same with the previous surface type(%d)\n", g_current_surface_type);
1544                 return;
1545         } else {
1546                 player_state_e player_state = PLAYER_STATE_NONE;
1547                 ret = player_get_state(g_player[0], &player_state);
1548                 if (ret)
1549                         g_print("failed to player_get_state(), ret(0x%x)\n", ret);
1550
1551                 reset_display();
1552
1553                 if (surface_type == PLAYER_DISPLAY_TYPE_OVERLAY) {
1554 #ifdef _ACTIVATE_EOM_
1555                         hdmi_output_id = eom_get_output_id("HDMI");
1556                         if (hdmi_output_id == 0)
1557                                 g_print("[eom] error : HDMI output id is NULL.\n");
1558
1559                         eom_get_output_mode(hdmi_output_id, &output_mode);
1560                         if (output_mode == EOM_OUTPUT_MODE_NONE) {
1561 #endif
1562                                 if (!g_win_id) {
1563                                         g_win_id = create_win(PACKAGE);
1564                                         if (g_win_id == NULL)
1565                                                 return;
1566                                         g_print("create win_id %p\n", g_win_id);
1567                                         create_render_rect_and_bg(g_win_id);
1568                                         elm_win_activate(g_win_id);
1569                                         evas_object_show(g_win_id);
1570                                         g_win_id = selected_win_id;
1571                                 }
1572 #ifdef _ACTIVATE_EOM_
1573                         } else {
1574                                 /* for external */
1575                         }
1576 #endif
1577                         ret = player_set_display(g_player[0], surface_type, GET_DISPLAY(selected_win_id));
1578                 } else {
1579                         if (!g_win_id) {
1580                                 g_win_id = create_win(PACKAGE);
1581                                 if (g_win_id == NULL)
1582                                         return;
1583                                 g_print("create win_id %p\n", g_win_id);
1584                                 create_render_rect_and_bg(g_win_id);
1585                                 elm_win_activate(g_win_id);
1586                                 evas_object_show(g_win_id);
1587                         }
1588                         int i = 0;
1589                         for (i = 0; i < g_handle_num; i++) {
1590                                 /* Create evas image object for EVAS surface */
1591                                 if (!g_eo[i]) {
1592                                         g_eo[i] = create_image_object(g_win_id);
1593                                         g_print("create eo[%d] %p\n", i, g_eo[i]);
1594                                         evas_object_image_size_set(g_eo[i], 500, 500);
1595                                         evas_object_image_fill_set(g_eo[i], 0, 0, 500, 500);
1596                                         evas_object_resize(g_eo[i], 500, 500);
1597                                         evas_object_move(g_eo[i], i * 20, i * 20);
1598                                 }
1599                                 ret = player_set_display(g_player[i], surface_type, g_eo[i]);
1600
1601                         }
1602                 }
1603                 if (ret) {
1604                         g_print("failed to set display, surface_type(%d)\n", surface_type);
1605                         return;
1606                 }
1607                 g_current_surface_type = surface_type;
1608         }
1609         return;
1610 }
1611
1612 static void set_display_mode(int mode)
1613 {
1614         if (player_set_display_mode(g_player[0], mode) != PLAYER_ERROR_NONE)
1615                 g_print("failed to player_set_display_mode\n");
1616 }
1617
1618 static void get_display_mode()
1619 {
1620         player_display_mode_e mode;
1621         player_get_display_mode(g_player[0], &mode);
1622         g_print("                                                            ==> [Player_Test] Display mode: [%d ] \n", mode);
1623 }
1624
1625 static void set_display_roi_area(int x, int y, int width, int height)
1626 {
1627         player_set_display_roi_area(g_player[0], x, y, width, height);
1628         g_print("                                                            ==> [Player_Test] Display roi area: [x(%d) y(%d) width(%d) height(%d)] \n", x, y, width, height);
1629 }
1630
1631 static void set_display_rotation(int rotation)
1632 {
1633         if (player_set_display_rotation(g_player[0], rotation) != PLAYER_ERROR_NONE)
1634                 g_print("failed to set_display_rotation\n");
1635 }
1636
1637 static void get_display_rotation()
1638 {
1639         player_display_rotation_e rotation = 0;
1640         player_get_display_rotation(g_player[0], &rotation);
1641         g_print("                                                            ==> [Player_Test] Video Overlay Display rotation: [%d ] \n", rotation);
1642 }
1643
1644 static void set_display_visible(bool visible)
1645 {
1646         if (player_set_display_visible(g_player[0], visible) != PLAYER_ERROR_NONE)
1647                 g_print("failed to player_set_x11_display_visible\n");
1648 }
1649
1650 static void get_display_visible(bool * visible)
1651 {
1652         player_is_display_visible(g_player[0], visible);
1653         g_print("                                                            ==> [Player_Test] Video Overlay Display Visible = %d\n", *visible);
1654 }
1655
1656 static void input_subtitle_filename(char *subtitle_filename)
1657 {
1658         int len = strlen(subtitle_filename);
1659
1660         if (len < 1 || len > MAX_STRING_LEN)
1661                 return;
1662
1663         strncpy(g_subtitle_uri, subtitle_filename, len);
1664         g_print("subtitle uri is set to %s\n", g_subtitle_uri);
1665         player_set_subtitle_path(g_player[0], g_subtitle_uri);
1666 }
1667
1668 static void switch_subtitle(int index)
1669 {
1670         char *lang_code = NULL;
1671         if (player_select_track(g_player[0], PLAYER_STREAM_TYPE_TEXT, index) != PLAYER_ERROR_NONE)
1672                 g_print("player_select_track failed\n");
1673
1674         if (player_get_track_language_code(g_player[0], PLAYER_STREAM_TYPE_TEXT, index, &lang_code) == PLAYER_ERROR_NONE) {
1675                 g_print("selected track code %s\n", lang_code);
1676                 free(lang_code);
1677         }
1678 }
1679
1680 static void get_track_info(int index)
1681 {
1682         int count = 0, cur_index = 0;
1683         int ret = 0;
1684         char *lang_code = NULL;
1685
1686         if (index != PLAYER_STREAM_TYPE_AUDIO &&
1687                 index != PLAYER_STREAM_TYPE_TEXT) {
1688                 g_print("invalid stream type %d", index);
1689                 return;
1690         }
1691
1692         ret = player_get_track_count(g_player[0], index, &count);
1693         if (ret != PLAYER_ERROR_NONE)
1694                 g_print("player_get_track_count fail!!!!\n");
1695         else if (count) {
1696                 int idx = 0;
1697                 player_get_current_track(g_player[0], index, &cur_index);
1698                 g_print("total track: %d, curr track: %d\n", count, cur_index);
1699
1700                 for (idx = 0; idx < count; idx++) {
1701                         player_get_track_language_code(g_player[0], index, idx, &lang_code);
1702                         g_print("track info = [%d] %s\n", idx, lang_code);
1703                 }
1704         } else {
1705                 g_print("no track\n");
1706         }
1707 }
1708
1709 static void capture_video()
1710 {
1711         if (player_capture_video(g_player[0], video_captured_cb, NULL) != PLAYER_ERROR_NONE)
1712                 g_print("failed to player_capture_video\n");
1713 }
1714
1715 static void decoding_audio()
1716 {
1717 #if 0
1718         int ret;
1719         char *suffix, *dump_path;
1720         GDateTime *time = g_date_time_new_now_local();
1721
1722         suffix = g_date_time_format(time, "%Y%m%d_%H%M%S.pcm");
1723         dump_path = g_strjoin(NULL, PLAYER_TEST_DUMP_PATH_PREFIX, suffix, NULL);
1724         g_pcm_fd = fopen(dump_path, "w+");
1725         g_free(dump_path);
1726         g_free(suffix);
1727         g_date_time_unref(time);
1728         if (!g_pcm_fd)
1729                 g_print("Can not create debug dump file");
1730
1731         ret = player_set_audio_frame_decoded_cb(g_player[0], 0, 0, audio_frame_decoded_cb, (void *)g_player[0]);
1732         if (ret != PLAYER_ERROR_NONE)
1733                 g_print("player_set_audio_frame_decoded_cb is failed (errno = %d) \n", ret);
1734 #endif
1735 }
1736
1737 static void set_audio_eq(int value)
1738 {
1739         bool available = FALSE;
1740         int index, min, max;
1741
1742         if (value) {
1743                 if (player_audio_effect_equalizer_is_available(g_player[0], &available) != PLAYER_ERROR_NONE)
1744                         g_print("failed to player_audio_effect_equalizer_is_available\n");
1745
1746                 if (available) {
1747                         if ((player_audio_effect_get_equalizer_bands_count(g_player[0], &index) != PLAYER_ERROR_NONE) ||
1748                                 (player_audio_effect_get_equalizer_level_range(g_player[0], &min, &max) != PLAYER_ERROR_NONE) ||
1749                                 (player_audio_effect_set_equalizer_band_level(g_player[0], index / 2, max) != PLAYER_ERROR_NONE))
1750                                 g_print("failed to player_audio_effect_set_equalizer_band_level index %d, level %d\n", index / 2, max);
1751                 }
1752         }
1753
1754         else {
1755                 if (player_audio_effect_equalizer_clear(g_player[0]) != PLAYER_ERROR_NONE)
1756                         g_print("failed to player_audio_effect_equalizer_clear\n");
1757         }
1758
1759 }
1760
1761 static void get_audio_eq()
1762 {
1763         int index, min, max, value;
1764         player_audio_effect_get_equalizer_bands_count(g_player[0], &index);
1765         g_print("                                                            ==> [Player_Test] eq bands count: [%d] \n", index);
1766         player_audio_effect_get_equalizer_level_range(g_player[0], &min, &max);
1767         g_print("                                                            ==> [Player_Test] eq bands range: [%d~%d] \n", min, max);
1768         player_audio_effect_get_equalizer_band_level(g_player[0], index / 2, &value);
1769         g_print("                                                            ==> [Player_Test] eq bands level: [%d] \n", value);
1770         player_audio_effect_get_equalizer_band_frequency(g_player[0], 0, &value);
1771         g_print("                                                            ==> [Player_Test] eq bands frequency: [%d] \n", value);
1772         player_audio_effect_get_equalizer_band_frequency_range(g_player[0], 0, &value);
1773         g_print("                                                            ==> [Player_Test] eq bands frequency range: [%d] \n", value);
1774 }
1775
1776 void quit_program()
1777 {
1778         int i = 0;
1779
1780         if (g_pcm_fd)
1781                 fclose(g_pcm_fd);
1782
1783         for (i = 0; i < g_handle_num; i++) {
1784                 if (g_player[i] != NULL) {
1785                         player_unprepare(g_player[i]);
1786                         player_destroy(g_player[i]);
1787                         g_player[i] = 0;
1788                 }
1789         }
1790         elm_exit();
1791
1792         if (g_audio_fmt)
1793                 media_format_unref(g_audio_fmt);
1794
1795         if (g_video_fmt)
1796                 media_format_unref(g_video_fmt);
1797 }
1798
1799 void play_with_ini(char *file_path)
1800 {
1801         input_filename(file_path);
1802         _player_play();
1803 }
1804
1805 void _interpret_main_menu(char *cmd)
1806 {
1807         int len = strlen(cmd);
1808         if (len == 1) {
1809                 if (strncmp(cmd, "a", 1) == 0) {
1810                         g_menu_state = CURRENT_STATUS_FILENAME;
1811                 } else if (strncmp(cmd, "b", 1) == 0) {
1812                         _player_play();
1813                 } else if (strncmp(cmd, "c", 1) == 0) {
1814                         _player_stop();
1815                 } else if (strncmp(cmd, "d", 1) == 0) {
1816                         _player_resume();
1817                 } else if (strncmp(cmd, "e", 1) == 0) {
1818                         _player_pause();
1819                 } else if (strncmp(cmd, "S", 1) == 0) {
1820                         _player_state();
1821                 } else if (strncmp(cmd, "f", 1) == 0) {
1822                         g_menu_state = CURRENT_STATUS_VOLUME;
1823                 } else if (strncmp(cmd, "g", 1) == 0) {
1824                         float left;
1825                         float right;
1826                         get_volume(&left, &right);
1827                 } else if (strncmp(cmd, "z", 1) == 0) {
1828                         g_menu_state = CURRENT_STATUS_SOUND_TYPE;
1829                 } else if (strncmp(cmd, "k", 1) == 0) {
1830                         g_menu_state = CURRENT_STATUS_SOUND_STREAM_INFO;
1831                 } else if (strncmp(cmd, "h", 1) == 0) {
1832                         g_menu_state = CURRENT_STATUS_MUTE;
1833                 } else if (strncmp(cmd, "i", 1) == 0) {
1834                         bool mute;
1835                         get_mute(&mute);
1836                 } else if (strncmp(cmd, "j", 1) == 0) {
1837                         g_menu_state = CURRENT_STATUS_POSITION_TIME;
1838                 } else if (strncmp(cmd, "l", 1) == 0) {
1839                         get_position();
1840                 } else if (strncmp(cmd, "m", 1) == 0) {
1841                         get_duration();
1842                 } else if (strncmp(cmd, "n", 1) == 0) {
1843                         get_stream_info();
1844                 } else if (strncmp(cmd, "o", 1) == 0) {
1845                         g_menu_state = CURRENT_STATUS_LOOPING;
1846                 } else if (strncmp(cmd, "p", 1) == 0) {
1847                         bool looping;
1848                         get_looping(&looping);
1849                 } else if (strncmp(cmd, "r", 1) == 0) {
1850                         g_menu_state = CURRENT_STATUS_DISPLAY_MODE;
1851                 } else if (strncmp(cmd, "s", 1) == 0) {
1852                         get_display_mode();
1853                 } else if (strncmp(cmd, "t", 1) == 0) {
1854                         g_menu_state = CURRENT_STATUS_DISPLAY_ROTATION;
1855                 } else if (strncmp(cmd, "u", 1) == 0) {
1856                         get_display_rotation();
1857                 } else if (strncmp(cmd, "v", 1) == 0) {
1858                         g_menu_state = CURRENT_STATUS_DISPLAY_VISIBLE;
1859                 } else if (strncmp(cmd, "w", 1) == 0) {
1860                         bool visible;
1861                         get_display_visible(&visible);
1862                 } else if (strncmp(cmd, "A", 1) == 0) {
1863                         g_menu_state = CURRENT_STATUS_SUBTITLE_FILENAME;
1864                 } else if (strncmp(cmd, "C", 1) == 0) {
1865                         capture_video();
1866                 } else if (strncmp(cmd, "D", 1) == 0) {
1867                         decoding_audio();
1868                 } else if (strncmp(cmd, "q", 1) == 0) {
1869                         quit_pushing = TRUE;
1870                         quit_program();
1871                 } else if (strncmp(cmd, "E", 1) == 0) {
1872                         g_menu_state = CURRENT_STATUS_AUDIO_EQUALIZER;
1873                 } else if (strncmp(cmd, "H", 1) == 0) {
1874                         get_audio_eq();
1875                 } else {
1876                         g_print("unknown menu \n");
1877                 }
1878         } else if (len == 2) {
1879                 if (strncmp(cmd, "pr", 2) == 0) {
1880                         /* sync */
1881                         _player_prepare(FALSE);
1882                 } else if (strncmp(cmd, "pa", 2) == 0) {
1883                         /* async */
1884                         _player_prepare(TRUE);
1885                 } else if (strncmp(cmd, "un", 2) == 0) {
1886                         _player_unprepare();
1887                 } else if (strncmp(cmd, "dt", 2) == 0) {
1888                         _player_destroy();
1889                 } else if (strncmp(cmd, "sp", 2) == 0) {
1890                         _player_set_progressive_download();
1891                 } else if (strncmp(cmd, "gp", 2) == 0) {
1892                         _player_get_progressive_download_status();
1893                 } else if (strncmp(cmd, "mp", 2) == 0) {
1894                         g_memory_playback = (g_memory_playback ? FALSE : TRUE);
1895                         g_print("memory playback = %d\n", g_memory_playback);
1896                 } else if (strncmp(cmd, "ds", 2) == 0) {
1897                         g_menu_state = CURRENT_STATUS_DISPLAY_SURFACE_CHANGE;
1898                 } else if (strncmp(cmd, "dr", 2) == 0) {
1899                         g_print("now, PLAYER_DISPLAY_MODE_DST_ROI(display mode) is set\n");
1900                         g_menu_state = CURRENT_STATUS_DISPLAY_DST_ROI;
1901                 } else if (strncmp(cmd, "nb", 2) == 0) {
1902                         g_menu_state = CURRENT_STATUS_HANDLE_NUM;
1903                 } else if (strncmp(cmd, "tr", 2) == 0) {
1904                         g_menu_state = CURRENT_STATUS_PLAYBACK_RATE;
1905                 } else if (strncmp(cmd, "ss", 2) == 0) {
1906                         g_menu_state = CURRENT_STATUS_SWITCH_SUBTITLE;
1907                 } else if (strncmp(cmd, "X3", 2) == 0) {
1908                         audio_frame_decoded_cb_ex(TRUE);
1909                 } else if (strncmp(cmd, "X4", 2) == 0) {
1910                         audio_frame_decoded_cb_ex(FALSE);
1911                 } else if (strncmp(cmd, "ep", 2) == 0) {
1912                         _player_enable_tsurf_pool();
1913                 } else if (strncmp(cmd, "su", 2) == 0) {
1914                         g_menu_state = CURRENT_STATUS_NEXT_URI;
1915                 } else if (strncmp(cmd, "gu", 2) == 0) {
1916                         get_next_uri();
1917                 } else if (strncmp(cmd, "sg", 2) == 0) {
1918                         g_menu_state = CURRENT_STATUS_GAPLESS;
1919                 } else if (strncmp(cmd, "tl", 2) == 0) {
1920                         g_menu_state = CURRENT_STATUS_GET_TRACK_INFO;
1921                 } else {
1922                         g_print("unknown menu \n");
1923                 }
1924         } else {
1925                 if (strncmp(cmd, "trs", 3) == 0)
1926                         g_menu_state = CURRENT_STATUS_STREAMING_PLAYBACK_RATE;
1927                 else
1928                         g_print("unknown menu \n");
1929         }
1930 }
1931
1932 void display_sub_basic()
1933 {
1934         g_print("\n");
1935         g_print("=========================================================================================\n");
1936         g_print("                          Player Test (press q to quit) \n");
1937         g_print("-----------------------------------------------------------------------------------------\n");
1938         g_print("[playback] a. Create\t");
1939         g_print("pr. Prepare  \t");
1940         g_print("pa. Prepare async \t");
1941         g_print("b. Play  \t");
1942         g_print("c. Stop  \t");
1943         g_print("d. Resume\t");
1944         g_print("e. Pause \t");
1945         g_print("un. Unprepare \t");
1946         g_print("dt. Destroy \n");
1947         g_print("[State] S. Player State \n");
1948         g_print("[ volume ] f. Set Volume\t");
1949         g_print("g. Get Volume\t");
1950         g_print("z. Set Sound type\t");
1951         g_print("k. Set Sound Stream Info.\n");
1952         g_print("[ mute ] h. Set Mute\t");
1953         g_print("i. Get Mute\n");
1954         g_print("[audio eq] E. Set Audio EQ\t");
1955         g_print("H. Get Audio EQ\n");
1956         g_print("[position] j. Set Position \t");
1957         g_print("l. Get Position\n");
1958         g_print("[trick] tr. set playback rate\n");
1959         g_print("[duration] m. Get Duration\n");
1960         g_print("[Stream Info] n. Get stream info (Video Size, codec, audio stream info, and tag info)\n");
1961         g_print("[Looping] o. Set Looping\t");
1962         g_print("p. Get Looping\n");
1963         g_print("[display] v. Set display visible\t");
1964         g_print("w. Get display visible\n");
1965         g_print("[display] ds. Change display surface type\n");
1966         g_print("[display] dr. set display roi area\n");
1967         g_print("[overlay display] r. Set display mode\t");
1968         g_print("s. Get display mode\n");
1969         g_print("[overlay display] t. Set display Rotation\n");
1970         g_print("[Track] tl. Get Track language info(single only)\n");
1971         g_print("[subtitle] A. Set(or change) subtitle path\n");
1972         g_print("[subtitle] ss. Select(or change) subtitle track\n");
1973         g_print("[Video Capture] C. Capture \n");
1974         g_print("[next uri] su. set next uri. \t");
1975         g_print("gu. get next uri. \t");
1976         g_print("sg. set gapless. \n");
1977         g_print("[audio_frame_decoded_cb_ex] X3. set audio_cb with sync\t");
1978         g_print("X4. set audio_cb with async \n");
1979         g_print("[video_frame_decoded_cb] ep. enable tbm surface pool\n");
1980         g_print("[etc] sp. Set Progressive Download\t");
1981         g_print("gp. Get Progressive Download status\t");
1982         g_print("mp. memory playback\n");
1983         g_print("\n");
1984         g_print("=========================================================================================\n");
1985 }
1986
1987 static void displaymenu()
1988 {
1989         if (g_menu_state == CURRENT_STATUS_MAINMENU) {
1990                 display_sub_basic();
1991         } else if (g_menu_state == CURRENT_STATUS_HANDLE_NUM) {
1992                 g_print("*** input number of handles.(recommended only for EVAS surface)\n");
1993         } else if (g_menu_state == CURRENT_STATUS_FILENAME) {
1994                 g_print("*** input mediapath.\n");
1995         } else if (g_menu_state == CURRENT_STATUS_VOLUME) {
1996                 g_print("*** input volume value.(0~1.0)\n");
1997         } else if (g_menu_state == CURRENT_STATUS_SOUND_TYPE) {
1998                 g_print("*** input sound type.(0:SYSTEM 1:NOTIFICATION 2:ALARM 3:RINGTONE 4:MEDIA 5:CALL 6:VOIP 7:FIXED)\n");
1999         } else if (g_menu_state == CURRENT_STATUS_SOUND_STREAM_INFO) {
2000                 g_print("*** input sound stream type.(0:MEDIA 1:SYSTEM 2:ALARM 3:NOTIFICATION 4:EMERGENCY 5:VOICE_INFORMATION 9:MEDIA_EXT_ONLY)\n");
2001         } else if (g_menu_state == CURRENT_STATUS_MUTE) {
2002                 g_print("*** input mute value.(0: Not Mute, 1: Mute) \n");
2003         } else if (g_menu_state == CURRENT_STATUS_POSITION_TIME) {
2004                 g_print("*** input position value(msec)\n");
2005         } else if (g_menu_state == CURRENT_STATUS_LOOPING) {
2006                 g_print("*** input looping value.(0: Not Looping, 1: Looping) \n");
2007         } else if (g_menu_state == CURRENT_STATUS_DISPLAY_SURFACE_CHANGE) {
2008                 g_print("*** input display surface type.(0: X surface, 1: EVAS surface) \n");
2009         } else if (g_menu_state == CURRENT_STATUS_DISPLAY_MODE) {
2010                 g_print("*** input display mode value.(0: LETTER BOX, 1: ORIGIN SIZE, 2: FULL_SCREEN, 3: CROPPED_FULL, 4: ORIGIN_OR_LETTER) \n");
2011         } else if (g_menu_state == CURRENT_STATUS_DISPLAY_DST_ROI) {
2012                 g_print("*** input display roi value sequentially.(x, y, w, h)\n");
2013         } else if (g_menu_state == CURRENT_STATUS_DISPLAY_ROTATION) {
2014                 g_print("*** input display rotation value.(0: NONE, 1: 90, 2: 180, 3: 270, 4:F LIP_HORZ, 5: FLIP_VERT ) \n");
2015         } else if (g_menu_state == CURRENT_STATUS_DISPLAY_VISIBLE) {
2016                 g_print("*** input display visible value.(0: HIDE, 1: SHOW) \n");
2017         } else if (g_menu_state == CURRENT_STATUS_SUBTITLE_FILENAME) {
2018                 g_print(" *** input  subtitle file path.\n");
2019         } else if (g_menu_state == CURRENT_STATUS_AUDIO_EQUALIZER) {
2020                 g_print(" *** input audio eq value.(0: UNSET, 1: SET) \n");
2021         } else if (g_menu_state == CURRENT_STATUS_PLAYBACK_RATE || g_menu_state == CURRENT_STATUS_STREAMING_PLAYBACK_RATE) {
2022                 g_print(" *** input playback rate.(-5.0 ~ 5.0)\n");
2023         } else if (g_menu_state == CURRENT_STATUS_SWITCH_SUBTITLE) {
2024                 int count = 0, cur_index = 0;
2025                 int ret = 0;
2026
2027                 ret = player_get_track_count(g_player[0], PLAYER_STREAM_TYPE_TEXT, &count);
2028                 if (ret != PLAYER_ERROR_NONE)
2029                         g_print("player_get_track_count fail!!!!\n");
2030                 else if (count) {
2031                         g_print("Total subtitle tracks = %d \n", count);
2032                         player_get_current_track(g_player[0], PLAYER_STREAM_TYPE_TEXT, &cur_index);
2033                         g_print("Current index = %d \n", cur_index);
2034                         g_print(" *** input correct index 0 to %d\n:", (count - 1));
2035                 } else
2036                         g_print("no track\n");
2037         } else if (g_menu_state == CURRENT_STATUS_NEXT_URI) {
2038                 g_print("*** input next uri.\n");
2039         } else if (g_menu_state == CURRENT_STATUS_GAPLESS) {
2040                 g_print("*** input gapless value.(0:disable, 1: enable) \n");
2041         } else if (g_menu_state == CURRENT_STATUS_GET_TRACK_INFO) {
2042                 g_print("*** input stream type.(1:audio, 3:text) \n");
2043         } else {
2044                 g_print("*** unknown status.\n");
2045                 quit_program();
2046         }
2047         g_print(" >>> ");
2048 }
2049
2050 gboolean timeout_menu_display(void *data)
2051 {
2052         displaymenu();
2053         return FALSE;
2054 }
2055
2056 gboolean timeout_quit_program(void *data)
2057 {
2058         quit_program();
2059         return FALSE;
2060 }
2061
2062 void reset_menu_state(void)
2063 {
2064         g_menu_state = CURRENT_STATUS_MAINMENU;
2065 }
2066
2067 static void interpret(char *cmd)
2068 {
2069         switch (g_menu_state) {
2070         case CURRENT_STATUS_MAINMENU:
2071                 {
2072                         _interpret_main_menu(cmd);
2073                 }
2074                 break;
2075         case CURRENT_STATUS_HANDLE_NUM:
2076                 {
2077                         int num_handle = atoi(cmd);
2078                         if (0 >= num_handle || num_handle > MAX_HANDLE)
2079                                 g_print("not supported this number for handles(%d)\n", num_handle);
2080                         else
2081                                 g_handle_num = num_handle;
2082
2083                         reset_menu_state();
2084                 }
2085                 break;
2086         case CURRENT_STATUS_FILENAME:
2087                 {
2088                         input_filename(cmd);
2089                         reset_menu_state();
2090                 }
2091                 break;
2092         case CURRENT_STATUS_VOLUME:
2093                 {
2094                         float level = atof(cmd);
2095                         set_volume(level);
2096                         reset_menu_state();
2097                 }
2098                 break;
2099         case CURRENT_STATUS_SOUND_TYPE:
2100                 {
2101                         int type = atoi(cmd);
2102                         set_sound_type(type);
2103                         reset_menu_state();
2104                 }
2105                 break;
2106         case CURRENT_STATUS_SOUND_STREAM_INFO:
2107                 {
2108                         int type = atoi(cmd);
2109                         set_sound_stream_info(type);
2110                         reset_menu_state();
2111                 }
2112                 break;
2113         case CURRENT_STATUS_MUTE:
2114                 {
2115                         int mute = atoi(cmd);
2116                         set_mute(mute);
2117                         reset_menu_state();
2118                 }
2119                 break;
2120         case CURRENT_STATUS_POSITION_TIME:
2121                 {
2122                         long position = atol(cmd);
2123                         set_position(position);
2124                         reset_menu_state();
2125                 }
2126                 break;
2127         case CURRENT_STATUS_LOOPING:
2128                 {
2129                         int looping = atoi(cmd);
2130                         set_looping(looping);
2131                         reset_menu_state();
2132                 }
2133                 break;
2134         case CURRENT_STATUS_GAPLESS:
2135                 {
2136                         int gapless = atoi(cmd);
2137                         set_gapless(gapless);
2138                         reset_menu_state();
2139                 }
2140                 break;
2141         case CURRENT_STATUS_DISPLAY_SURFACE_CHANGE:
2142                 {
2143                         int type = atoi(cmd);
2144                         change_surface(type);
2145                         reset_menu_state();
2146                 }
2147                 break;
2148         case CURRENT_STATUS_DISPLAY_MODE:
2149                 {
2150                         int mode = atoi(cmd);
2151                         set_display_mode(mode);
2152                         reset_menu_state();
2153                 }
2154                 break;
2155         case CURRENT_STATUS_DISPLAY_DST_ROI:
2156                 {
2157                         int value = atoi(cmd);
2158                         static int x = 0;
2159                         static int y = 0;
2160                         static int w = 0;
2161                         static int h = 0;
2162                         static int cnt = 0;
2163
2164                         set_display_mode(PLAYER_DISPLAY_MODE_DST_ROI);
2165                         switch (cnt) {
2166                         case 0:
2167                                 x = value;
2168                                 cnt++;
2169                                 break;
2170                         case 1:
2171                                 y = value;
2172                                 cnt++;
2173                                 break;
2174                         case 2:
2175                                 w = value;
2176                                 cnt++;
2177                                 break;
2178                         case 3:
2179                                 cnt = 0;
2180                                 h = value;
2181                                 set_display_roi_area(x, y, w, h);
2182                                 x = y = w = h = 0;
2183                                 reset_menu_state();
2184                                 break;
2185                         default:
2186                                 break;
2187                         }
2188                 }
2189                 break;
2190         case CURRENT_STATUS_DISPLAY_ROTATION:
2191                 {
2192                         int rotation = atoi(cmd);
2193                         set_display_rotation(rotation);
2194                         reset_menu_state();
2195                 }
2196                 break;
2197         case CURRENT_STATUS_DISPLAY_VISIBLE:
2198                 {
2199                         int visible = atoi(cmd);
2200                         set_display_visible(visible);
2201                         reset_menu_state();
2202                 }
2203                 break;
2204         case CURRENT_STATUS_SUBTITLE_FILENAME:
2205                 {
2206                         input_subtitle_filename(cmd);
2207                         reset_menu_state();
2208                 }
2209                 break;
2210         case CURRENT_STATUS_AUDIO_EQUALIZER:
2211                 {
2212                         int value = atoi(cmd);
2213                         set_audio_eq(value);
2214                         reset_menu_state();
2215                 }
2216                 break;
2217         case CURRENT_STATUS_PLAYBACK_RATE:
2218                 {
2219                         float rate = atof(cmd);
2220                         set_playback_rate(rate, FALSE);
2221                         reset_menu_state();
2222                 }
2223                 break;
2224         case CURRENT_STATUS_STREAMING_PLAYBACK_RATE:
2225                 {
2226                         float rate = atof(cmd);
2227                         set_playback_rate(rate, TRUE);
2228                         reset_menu_state();
2229                 }
2230                 break;
2231         case CURRENT_STATUS_SWITCH_SUBTITLE:
2232                 {
2233                         int index = atoi(cmd);
2234                         switch_subtitle(index);
2235                         reset_menu_state();
2236                 }
2237                 break;
2238         case CURRENT_STATUS_NEXT_URI:
2239                 {
2240                         set_next_uri(cmd);
2241                         reset_menu_state();
2242                 }
2243                 break;
2244         case CURRENT_STATUS_GET_TRACK_INFO:
2245                 {
2246                         int index = atoi(cmd);
2247                         get_track_info(index);
2248                         reset_menu_state();
2249                 }
2250                 break;
2251         }
2252
2253         g_timeout_add(100, timeout_menu_display, 0);
2254 }
2255
2256 gboolean input(GIOChannel * channel)
2257 {
2258         gchar buf[MAX_STRING_LEN];
2259         gsize read;
2260         GError *error = NULL;
2261
2262         g_io_channel_read_chars(channel, buf, MAX_STRING_LEN, &read, &error);
2263         buf[read] = '\0';
2264         g_strstrip(buf);
2265         interpret(buf);
2266
2267         return TRUE;
2268 }
2269
2270 int main(int argc, char *argv[])
2271 {
2272         GIOChannel *stdin_channel;
2273         stdin_channel = g_io_channel_unix_new(0);
2274         g_io_channel_set_flags(stdin_channel, G_IO_FLAG_NONBLOCK, NULL);
2275         g_io_add_watch(stdin_channel, G_IO_IN, (GIOFunc) input, NULL);
2276
2277         displaymenu();
2278         memset(&ad, 0x0, sizeof(appdata));
2279         ops.data = &ad;
2280
2281         return appcore_efl_main(PACKAGE, &argc, &argv, &ops);
2282 }