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