2 * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 #include <player_internal.h>
18 #include <sound_manager.h>
22 #include <appcore-efl.h>
23 #include <Elementary.h>
25 #include <Ecore_Wayland.h>
33 #define PACKAGE "player_test"
38 #define LOG_TAG "PLAYER_TEST"
40 #define MAX_STRING_LEN 2048
41 #define PLAYER_TEST_DUMP_PATH_PREFIX "/home/owner/dump_pcm_"
42 #define DEFAULT_HTTP_TIMEOUT -1
44 static gboolean g_memory_playback = FALSE;
45 static char g_uri[MAX_STRING_LEN];
46 static char g_subtitle_uri[MAX_STRING_LEN];
47 static FILE *g_pcm_fd;
49 static gboolean is_es_push_mode = FALSE;
50 static pthread_t g_feed_video_thread_id = 0;
51 static bool g_thread_end = FALSE;
52 static media_packet_h g_audio_pkt = NULL;
53 static media_format_h g_audio_fmt = NULL;
55 static media_packet_h g_video_pkt = NULL;
56 static media_format_h g_video_fmt = NULL;
58 static int _save(unsigned char *src, int length);
67 CURRENT_STATUS_MAINMENU,
68 CURRENT_STATUS_HANDLE_NUM,
69 CURRENT_STATUS_FILENAME,
70 CURRENT_STATUS_VOLUME,
71 CURRENT_STATUS_SOUND_TYPE,
72 CURRENT_STATUS_SOUND_STREAM_INFO,
74 CURRENT_STATUS_POSITION_TIME,
75 CURRENT_STATUS_LOOPING,
76 CURRENT_STATUS_DISPLAY_SURFACE_CHANGE,
77 CURRENT_STATUS_DISPLAY_MODE,
78 CURRENT_STATUS_DISPLAY_DST_ROI,
79 CURRENT_STATUS_DISPLAY_ROTATION,
80 CURRENT_STATUS_DISPLAY_VISIBLE,
81 CURRENT_STATUS_SUBTITLE_FILENAME,
82 CURRENT_STATUS_AUDIO_EQUALIZER,
83 CURRENT_STATUS_PLAYBACK_RATE,
84 CURRENT_STATUS_STREAMING_PLAYBACK_RATE,
85 CURRENT_STATUS_SWITCH_SUBTITLE,
86 CURRENT_STATUS_NEXT_URI,
87 CURRENT_STATUS_GAPLESS,
92 /* for video display */
93 static Evas_Object *g_win_id;
95 static Evas_Object *g_external_win_id;
97 static Evas_Object *selected_win_id;
98 static Evas_Object *g_eo[MAX_HANDLE] = { 0, };
100 static int g_current_surface_type = PLAYER_DISPLAY_TYPE_OVERLAY;
104 Evas_Object *layout_main; /* layout widget based on EDJ */
105 /* add more variables here */
106 #ifdef _ACTIVATE_EOM_
112 static player_h g_player[MAX_HANDLE] = { 0, };
114 int g_handle_num = 1;
115 int g_menu_state = CURRENT_STATUS_MAINMENU;
116 gboolean quit_pushing;
117 sound_stream_info_h g_stream_info_h = NULL;
119 static void win_del(void *data, Evas_Object * obj, void *event)
124 static Evas_Object *create_win(const char *name)
126 Evas_Object *eo = NULL;
130 g_print("[%s][%d] name=%s\n", __func__, __LINE__, name);
132 eo = elm_win_add(NULL, name, ELM_WIN_BASIC);
134 elm_win_title_set(eo, name);
135 elm_win_borderless_set(eo, EINA_TRUE);
136 evas_object_smart_callback_add(eo, "delete,request", win_del, NULL);
137 elm_win_screen_size_get(eo, NULL, NULL, &w, &h);
138 g_print("window size :%d,%d", w, h);
139 evas_object_resize(eo, w, h);
140 elm_win_autodel_set(eo, EINA_TRUE);
141 elm_win_alpha_set(eo, EINA_TRUE);
146 static Evas_Object *create_image_object(Evas_Object * eo_parent)
151 Evas *evas = evas_object_evas_get(eo_parent);
152 Evas_Object *eo = NULL;
154 eo = evas_object_image_add(evas);
159 void create_render_rect_and_bg(Evas_Object * win)
165 Evas_Object *bg, *rect;
167 bg = elm_bg_add(win);
168 elm_win_resize_object_add(win, bg);
169 evas_object_size_hint_weight_set(bg, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
170 evas_object_show(bg);
172 rect = evas_object_rectangle_add(evas_object_evas_get(win));
177 evas_object_color_set(rect, 0, 0, 0, 0);
178 evas_object_render_op_set(rect, EVAS_RENDER_COPY);
180 elm_win_resize_object_add(win, rect);
181 evas_object_size_hint_weight_set(rect, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
182 evas_object_show(rect);
183 evas_object_show(win);
186 #ifdef _ACTIVATE_EOM_
187 int eom_get_output_id(const char *output_name)
189 eom_output_id *output_ids = NULL;
190 eom_output_id output_id = 0;
191 eom_output_type_e output_type = EOM_OUTPUT_TYPE_UNKNOWN;
196 output_ids = eom_get_eom_output_ids(&id_cnt);
198 g_print("[eom] no external outuputs supported\n");
202 /* find output ids interested */
203 for (i = 0; i < id_cnt; i++) {
204 eom_get_output_type(output_ids[i], &output_type);
205 if (!strncmp(output_name, "HDMI", 4)) {
206 if (output_type == EOM_OUTPUT_TYPE_HDMIA || output_type == EOM_OUTPUT_TYPE_HDMIB) {
207 output_id = output_ids[i];
210 } else if (!strncmp(output_name, "Virtual", 4)) {
211 if (output_type == EOM_OUTPUT_TYPE_VIRTUAL) {
212 output_id = output_ids[i];
224 static void eom_notify_cb_output_add(eom_output_id output_id, void *user_data)
226 appdata *info = (appdata *) user_data;
228 if (info->hdmi_output_id != output_id) {
229 g_print("[eom] OUTPUT ADDED. SKIP. my output ID is %d\n", info->hdmi_output_id);
232 g_print("[eom] output(%d) connected\n", output_id);
233 /* it is for external window */
234 if (!g_external_win_id) {
235 g_external_win_id = elm_win_add(NULL, "External", ELM_WIN_BASIC);
236 if (eom_set_output_window(info->hdmi_output_id, g_external_win_id) == EOM_ERROR_NONE) {
237 create_render_rect_and_bg(g_external_win_id);
238 g_print("[eom] create external window\n");
240 evas_object_del(g_external_win_id);
241 g_external_win_id = NULL;
242 g_print("[eom] create external window fail\n");
247 static void eom_notify_cb_output_remove(eom_output_id output_id, void *user_data)
249 appdata *info = (appdata *) user_data;
250 player_state_e state;
252 if (info->hdmi_output_id != output_id) {
253 g_print("[eom] OUTPUT REMOVED. SKIP. my output ID is %d\n", info->hdmi_output_id);
256 g_print("[eom] output(%d) disconnected\n", output_id);
258 if (selected_win_id == g_external_win_id && g_player[0]) {
259 player_get_state(g_player[0], &state);
260 if (state >= PLAYER_STATE_READY) {
262 g_win_id = create_win(PACKAGE);
263 if (g_win_id == NULL)
265 g_print("create win_id %p\n", g_win_id);
266 create_render_rect_and_bg(g_win_id);
267 elm_win_activate(g_win_id);
268 evas_object_show(g_win_id);
270 player_set_display(g_player[0], PLAYER_DISPLAY_TYPE_OVERLAY, GET_DISPLAY(g_win_id));
274 /* it is for external window */
275 if (g_external_win_id) {
276 evas_object_del(g_external_win_id);
277 g_external_win_id = NULL;
279 selected_win_id = g_win_id;
282 static void eom_notify_cb_mode_changed(eom_output_id output_id, void *user_data)
284 appdata *info = (appdata *) user_data;
285 eom_output_mode_e mode = EOM_OUTPUT_MODE_NONE;
287 if (info->hdmi_output_id != output_id) {
288 g_print("[eom] MODE CHANGED. SKIP. my output ID is %d\n", info->hdmi_output_id);
292 eom_get_output_mode(output_id, &mode);
293 g_print("[eom] output(%d) mode changed(%d)\n", output_id, mode);
296 static void eom_notify_cb_attribute_changed(eom_output_id output_id, void *user_data)
298 appdata *info = (appdata *) user_data;
300 eom_output_attribute_e attribute = EOM_OUTPUT_ATTRIBUTE_NONE;
301 eom_output_attribute_state_e state = EOM_OUTPUT_ATTRIBUTE_STATE_NONE;
303 if (info->hdmi_output_id != output_id) {
304 g_print("[eom] ATTR CHANGED. SKIP. my output ID is %d\n", info->hdmi_output_id);
308 eom_get_output_attribute(output_id, &attribute);
309 eom_get_output_attribute_state(output_id, &state);
311 g_print("[eom] output(%d) attribute changed(%d, %d)\n", output_id, attribute, state);
312 if (state == EOM_OUTPUT_ATTRIBUTE_STATE_ACTIVE) {
313 g_print("[eom] active\n");
314 if (!g_external_win_id) {
315 g_external_win_id = elm_win_add(NULL, "External", ELM_WIN_BASIC);
316 if (eom_set_output_window(info->hdmi_output_id, g_external_win_id) == EOM_ERROR_NONE) {
317 create_render_rect_and_bg(g_external_win_id);
318 g_print("[eom] create external window\n");
320 evas_object_del(g_external_win_id);
321 g_external_win_id = NULL;
322 g_print("[eom] create external window fail\n");
325 selected_win_id = g_external_win_id;
326 /* play video on external window */
328 player_set_display(g_player[0], PLAYER_DISPLAY_TYPE_OVERLAY, GET_DISPLAY(selected_win_id));
329 } else if (state == EOM_OUTPUT_ATTRIBUTE_STATE_INACTIVE) {
330 g_print("[eom] inactive\n");
332 g_win_id = create_win(PACKAGE);
333 if (g_win_id == NULL)
335 g_print("create win_id %p\n", g_win_id);
336 create_render_rect_and_bg(g_win_id);
337 elm_win_activate(g_win_id);
338 evas_object_show(g_win_id);
340 selected_win_id = g_win_id;
342 player_set_display(g_player[0], PLAYER_DISPLAY_TYPE_OVERLAY, GET_DISPLAY(selected_win_id));
344 if (g_external_win_id) {
345 evas_object_del(g_external_win_id);
346 g_external_win_id = NULL;
348 } else if (state == EOM_OUTPUT_ATTRIBUTE_STATE_LOST) {
349 g_print("[eom] lost\n");
351 g_win_id = create_win(PACKAGE);
352 if (g_win_id == NULL)
354 g_print("create win_id %p\n", g_win_id);
355 create_render_rect_and_bg(g_win_id);
356 elm_win_activate(g_win_id);
357 evas_object_show(g_win_id);
359 selected_win_id = g_win_id;
362 player_set_display(g_player[0], PLAYER_DISPLAY_TYPE_OVERLAY, GET_DISPLAY(selected_win_id));
364 if (g_external_win_id) {
365 evas_object_del(g_external_win_id);
366 g_external_win_id = NULL;
369 eom_unset_output_added_cb(eom_notify_cb_output_add);
370 eom_unset_output_removed_cb(eom_notify_cb_output_remove);
371 eom_unset_mode_changed_cb(eom_notify_cb_mode_changed);
372 eom_unset_attribute_changed_cb(eom_notify_cb_attribute_changed);
378 static int app_create(void *data)
381 Evas_Object *win = NULL;
382 #ifdef _ACTIVATE_EOM_
383 eom_output_mode_e output_mode = EOM_OUTPUT_MODE_NONE;
386 elm_config_accel_preference_set("opengl");
389 win = create_win(PACKAGE);
394 selected_win_id = g_win_id;
395 create_render_rect_and_bg(ad->win);
396 /* Create evas image object for EVAS surface */
397 g_eo[0] = create_image_object(ad->win);
398 evas_object_image_size_set(g_eo[0], 500, 500);
399 evas_object_image_fill_set(g_eo[0], 0, 0, 500, 500);
400 evas_object_resize(g_eo[0], 500, 500);
402 elm_win_activate(win);
403 evas_object_show(win);
404 #ifdef _ACTIVATE_EOM_
405 /* check external device */
407 ad->hdmi_output_id = eom_get_output_id("HDMI");
408 if (ad->hdmi_output_id == 0) {
409 g_print("[eom] error : HDMI output id is NULL.\n");
413 g_print("eom_set_output_attribute EOM_OUTPUT_ATTRIBUTE_NORMAL(id:%d)\n", ad->hdmi_output_id);
414 if (eom_set_output_attribute(ad->hdmi_output_id, EOM_OUTPUT_ATTRIBUTE_NORMAL) != EOM_ERROR_NONE) {
415 g_print("attribute set fail. cannot use external output\n");
419 eom_get_output_mode(ad->hdmi_output_id, &output_mode);
420 if (output_mode != EOM_OUTPUT_MODE_NONE) {
421 g_external_win_id = elm_win_add(NULL, "External", ELM_WIN_BASIC);
422 if (eom_set_output_window(ad->hdmi_output_id, g_external_win_id) == EOM_ERROR_NONE) {
423 create_render_rect_and_bg(g_external_win_id);
424 g_print("[eom] create external window\n");
426 evas_object_del(g_external_win_id);
427 g_external_win_id = NULL;
428 g_print("[eom] create external window fail\n");
430 selected_win_id = g_external_win_id;
433 /* set callback for detecting external device */
434 eom_set_output_added_cb(eom_notify_cb_output_add, ad);
435 eom_set_output_removed_cb(eom_notify_cb_output_remove, ad);
436 eom_set_mode_changed_cb(eom_notify_cb_mode_changed, ad);
437 eom_set_attribute_changed_cb(eom_notify_cb_attribute_changed, ad);
442 static int app_terminate(void *data)
447 for (i = 0; i < MAX_HANDLE; i++) {
449 evas_object_del(g_eo[i]);
454 evas_object_del(g_win_id);
457 #ifdef _ACTIVATE_EOM_
458 if (g_external_win_id) {
459 evas_object_del(g_external_win_id);
460 g_external_win_id = NULL;
464 selected_win_id = NULL;
465 #ifdef _ACTIVATE_EOM_
466 eom_unset_output_added_cb(eom_notify_cb_output_add);
467 eom_unset_output_removed_cb(eom_notify_cb_output_remove);
468 eom_unset_mode_changed_cb(eom_notify_cb_mode_changed);
469 eom_unset_attribute_changed_cb(eom_notify_cb_attribute_changed);
476 struct appcore_ops ops = {
477 .create = app_create,
478 .terminate = app_terminate,
481 static void prepared_cb(void *user_data)
483 g_print("[Player_Test] prepared_cb!!!!\n");
486 static void _audio_frame_decoded_cb_ex(player_audio_raw_data_s * audio_raw_frame, void *user_data)
488 player_audio_raw_data_s *audio_raw = audio_raw_frame;
493 g_print("[Player_Test] decoded_cb_ex! channel: %d channel_mask: %llu\n", audio_raw->channel, audio_raw->channel_mask);
496 if (audio_raw->channel_mask == 1 && fp_out1)
497 fwrite((guint8 *) audio_raw->data, 1, audio_raw->size, fp_out1);
498 else if (audio_raw->channel_mask == 2 && fp_out2)
499 fwrite((guint8 *) audio_raw->data, 1, audio_raw->size, fp_out2);
503 static void progress_down_cb(player_pd_message_type_e type, void *user_data)
505 g_print("[Player_Test] progress_down_cb!!!! type : %d\n", type);
508 static void buffering_cb(int percent, void *user_data)
510 g_print("[Player_Test] buffering_cb!!!! percent : %d\n", percent);
513 static void seek_completed_cb(void *user_data)
515 g_print("[Player_Test] seek_completed_cb!!! \n");
518 static void completed_cb(void *user_data)
520 g_print("[Player_Test] completed_cb!!!!\n");
523 static void error_cb(int code, void *user_data)
525 g_print("[Player_Test] error_cb!!!! code : %d\n", code);
528 static void interrupted_cb(player_interrupted_code_e code, void *user_data)
530 g_print("[Player_Test] interrupted_cb!!!! code : %d\n", code);
534 static void audio_frame_decoded_cb(unsigned char *data, unsigned int size, void *user_data)
538 if (data && g_pcm_fd)
539 fwrite(data, 1, size, g_pcm_fd);
540 player_get_play_position(g_player[0], &pos);
541 g_print("[Player_Test] audio_frame_decoded_cb [size: %d] --- current pos : %d!!!!\n", size, pos);
545 static void subtitle_updated_cb(unsigned long duration, char *text, void *user_data)
547 g_print("[Player_Test] subtitle_updated_cb!!!! [%ld] %s\n", duration, text);
550 static void video_captured_cb(unsigned char *data, int width, int height, unsigned int size, void *user_data)
552 g_print("[Player_Test] video_captured_cb!!!! width: %d, height : %d, size : %d \n", width, height, size);
556 static int _save(unsigned char *src, int length)
558 /* unlink(CAPTUERD_IMAGE_SAVE_PATH); */
560 char filename[256] = { 0, };
561 static int WRITE_COUNT = 0;
562 /* gchar *filename = CAPTUERD_IMAGE_SAVE_PATH; */
563 snprintf(filename, 256, "/tmp/IMAGE_client%d", WRITE_COUNT);
565 fp = fopen(filename, "w+");
567 g_print("file open error!!\n");
570 g_print("open success\n");
571 if (fwrite(src, 1, length, fp) < 1) {
572 g_print("file write error!!\n");
576 g_print("write success(%s)\n", filename);
583 static void reset_display()
587 /* delete evas window, if it is */
588 for (i = 0; i < MAX_HANDLE; i++) {
590 evas_object_del(g_eo[i]);
596 static void input_filename(char *filename)
598 int len = strlen(filename);
601 if (len < 0 || len > MAX_STRING_LEN - 1)
604 for (i = 0; i < g_handle_num; i++) {
605 if (g_player[i] != NULL) {
606 player_unprepare(g_player[i]);
607 player_destroy(g_player[i]);
611 if (player_create(&g_player[i]) != PLAYER_ERROR_NONE)
612 g_print("player create is failed\n");
615 strncpy(g_uri, filename, len);
619 /* ned(APPSRC_TEST) */
624 GError *error = NULL;
625 guint8 *g_media_mem = NULL;
629 file = g_mapped_file_new(ext, FALSE, &error);
630 file_size = g_mapped_file_get_length(file);
631 g_media_mem = (guint8 *) g_mapped_file_get_contents(file);
633 g_sprintf(uri, "mem://ext=%s,size=%d", ext ? ext : "", file_size);
634 g_print("[uri] = %s\n", uri);
636 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 /* player_set_uri(g_player[0], filename); */
643 player_state_e state;
644 for (i = 0; i < g_handle_num; i++) {
645 ret = player_get_state(g_player[i], &state);
646 g_print("player_get_state returned [%d]\n", ret);
647 g_print("1. After player_create() - Current State : %d \n", state);
651 /* use this API instead of player_set_uri */
652 static void player_set_memory_buffer_test()
656 guint8 *g_media_mem = NULL;
658 file = g_mapped_file_new(g_uri, FALSE, NULL);
659 file_size = g_mapped_file_get_length(file);
660 g_media_mem = (guint8 *) g_mapped_file_get_contents(file);
662 int ret = player_set_memory_buffer(g_player[0], (void *)g_media_mem, file_size);
663 g_print("player_set_memory_buffer ret : %d\n", ret);
666 int video_packet_count = 0;
668 static void buffer_need_video_data_cb(unsigned int size, void *user_data)
670 int real_read_len = 0;
673 static guint64 pts = 0L;
676 guint8 *buff_ptr = NULL;
679 memset(fname, 0, 128);
680 memset(fptsname, 0, 128);
682 video_packet_count++;
684 if (video_packet_count > 1000) {
687 /* player_submit_packet(g_player[0], NULL, 0, 0, 1); */
688 player_push_media_stream(g_player[0], NULL);
692 /* snprintf(fname, 128, "/opt/storage/usb/test/packet/packet_%d.dat", video_packet_count); */
693 /* snprintf(fptsname, 128, "/opt/storage/usb/test/packet/gstpts_%d.dat", video_packet_count); */
694 snprintf(fname, 128, "/home/developer/test/packet/packet_%d.dat", video_packet_count);
695 snprintf(fptsname, 128, "/home/developer/test/packet/gstpts_%d.dat", video_packet_count);
697 fp = fopen(fptsname, "rb");
700 pts_len = fread(&pts, 1, sizeof(guint64), fp);
701 if (pts_len != sizeof(guint64))
702 g_print("Warning, pts value can be wrong.\n");
707 fp = fopen(fname, "rb");
709 buff_ptr = (guint8 *) g_malloc0(1048576);
711 g_print("no free space\n");
716 real_read_len = fread(buff_ptr, 1, size, fp);
720 g_print("video need data - data size : %d, pts : %" G_GUINT64_FORMAT "\n", real_read_len, pts);
722 player_submit_packet(g_player[0], buff_ptr, real_read_len, (pts / 1000000), 1);
724 /* create media packet */
726 media_packet_destroy(g_video_pkt);
730 media_packet_create_alloc(g_video_fmt, NULL, NULL, &g_video_pkt);
732 g_print("packet = %p, src = %p\n", g_video_pkt, src);
734 if (media_packet_get_buffer_data_ptr(g_video_pkt, &src) != MEDIA_PACKET_ERROR_NONE)
737 if (media_packet_set_pts(g_video_pkt, (uint64_t) pts) != MEDIA_PACKET_ERROR_NONE)
740 if (media_packet_set_buffer_size(g_video_pkt, (uint64_t) real_read_len) != MEDIA_PACKET_ERROR_NONE)
743 memcpy(src, buff_ptr, real_read_len);
746 player_push_media_stream(g_player[0], g_video_pkt);
756 int audio_packet_count = 0;
757 static void buffer_need_audio_data_cb(unsigned int size, void *user_data)
759 int real_read_len = 0;
762 guint8 *buff_ptr = NULL;
765 memset(fname, 0, 128);
766 audio_packet_count++;
768 if (audio_packet_count > 1000) {
770 /* player_submit_packet(g_player[0], NULL, 0, 0, 0); */
771 player_push_media_stream(g_player[0], NULL);
775 /* snprintf(fname, 128, "/opt/storage/usb/test/audio_packet/packet_%d.dat", audio_packet_count); */
776 snprintf(fname, 128, "/home/developer/test/audio_packet/packet_%d.dat", audio_packet_count);
778 static guint64 audio_pts = 0;
779 guint64 audio_dur = 21333333;
781 fp = fopen(fname, "rb");
783 buff_ptr = (guint8 *) g_malloc0(1048576);
785 g_print("no free space\n");
790 real_read_len = fread(buff_ptr, 1, size, fp);
794 g_print("\t audio need data - data size : %d, pts : %" G_GUINT64_FORMAT "\n", real_read_len, audio_pts);
797 player_submit_packet(g_player[0], buff_ptr, real_read_len, (audio_pts / 1000000), 0);
799 /* create media packet */
801 media_packet_destroy(g_audio_pkt);
804 media_packet_create_alloc(g_audio_fmt, NULL, NULL, &g_audio_pkt);
806 g_print("packet = %p, src = %p\n", g_audio_pkt, src);
808 if (media_packet_get_buffer_data_ptr(g_audio_pkt, &src) != MEDIA_PACKET_ERROR_NONE)
811 if (media_packet_set_pts(g_audio_pkt, (uint64_t) audio_pts) != MEDIA_PACKET_ERROR_NONE)
814 if (media_packet_set_buffer_size(g_audio_pkt, (uint64_t) real_read_len) != MEDIA_PACKET_ERROR_NONE)
817 memcpy(src, buff_ptr, real_read_len);
820 player_push_media_stream(g_player[0], g_audio_pkt);
823 audio_pts += audio_dur;
831 static void set_content_info(bool is_push_mode)
833 /* testcode for es buff src case, please input url as es_buff://123 or es_buff://push_mode */
834 /* 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 /* create media format */
837 media_format_create(&g_audio_fmt);
838 media_format_create(&g_video_fmt);
841 /* configure media format for video and set to player */
842 media_format_set_video_mime(g_video_fmt, MEDIA_FORMAT_MPEG4_SP);
843 media_format_set_video_width(g_video_fmt, 640);
844 media_format_set_video_height(g_video_fmt, 272);
845 /* player_set_media_stream_info(g_player[0], PLAYER_STREAM_TYPE_VIDEO, g_video_fmt); */
847 /* Audio--aac--StarWars.mp4 */
848 media_format_set_audio_mime(g_audio_fmt, MEDIA_FORMAT_AAC);
849 media_format_set_audio_channel(g_audio_fmt, 2);
850 media_format_set_audio_samplerate(g_audio_fmt, 48000);
851 /* player_set_media_stream_info(g_player[0], PLAYER_STREAM_TYPE_AUDIO, g_audio_fmt); */
853 /* video_info->mime = g_strdup("video/mpeg"); *//* CODEC_ID_MPEG4VIDEO */
854 video_info->width = 640;
855 video_info->height = 272;
856 video_info->version = 4;
857 video_info->framerate_den = 100;
858 video_info->framerate_num = 2997;
860 video_info->extradata_size = 45;
861 video_info->codec_extradata = codec_data;
862 player_set_video_stream_info(g_player[0], video_info);
864 /* audio--aac--StarWars.mp4 */
865 /* audio_info->mime = g_strdup("audio/mpeg"); */
866 /* audio_info->version = 2; */
867 /* audio_info->user_info = 0; *//* raw */
872 player_set_buffer_need_video_data_cb(g_player[0], buffer_need_video_data_cb, (void *)g_player[0]);
873 player_set_buffer_need_audio_data_cb(g_player[0], buffer_need_audio_data_cb, (void *)g_player[0]);
878 static void feed_video_data_thread_func(void *data)
880 while (!g_thread_end) {
881 buffer_need_video_data_cb(1048576, NULL);
882 buffer_need_audio_data_cb(1048576, NULL);
886 static void _player_prepare(bool async)
889 int slen = strlen(g_subtitle_uri);
891 if (slen > 0 && slen < MAX_STRING_LEN) {
892 g_print("0. set subtile path() (size : %d) - %s \n", slen, g_subtitle_uri);
893 player_set_subtitle_path(g_player[0], g_subtitle_uri);
894 player_set_subtitle_updated_cb(g_player[0], subtitle_updated_cb, (void *)g_player[0]);
896 if (g_current_surface_type == PLAYER_DISPLAY_TYPE_OVERLAY) {
897 player_set_display(g_player[0], g_current_surface_type, GET_DISPLAY(selected_win_id));
898 player_set_buffering_cb(g_player[0], buffering_cb, (void *)g_player[0]);
899 player_set_completed_cb(g_player[0], completed_cb, (void *)g_player[0]);
900 player_set_interrupted_cb(g_player[0], interrupted_cb, (void *)g_player[0]);
901 player_set_error_cb(g_player[0], error_cb, (void *)g_player[0]);
902 if (g_memory_playback)
903 player_set_memory_buffer_test();
905 player_set_uri(g_player[0], g_uri);
908 for (i = 0; i < g_handle_num; i++) {
909 player_set_display(g_player[i], g_current_surface_type, g_eo[i]);
910 player_set_buffering_cb(g_player[i], buffering_cb, (void *)g_player[i]);
911 player_set_completed_cb(g_player[i], completed_cb, (void *)g_player[i]);
912 player_set_interrupted_cb(g_player[i], interrupted_cb, (void *)g_player[i]);
913 player_set_error_cb(g_player[i], error_cb, (void *)g_player[i]);
914 if (g_memory_playback)
915 player_set_memory_buffer_test();
917 player_set_uri(g_player[i], g_uri);
921 if (strstr(g_uri, "es_buff://")) {
922 is_es_push_mode = FALSE;
923 video_packet_count = 0;
924 audio_packet_count = 0;
926 if (strstr(g_uri, "es_buff://push_mode")) {
927 set_content_info(TRUE);
929 is_es_push_mode = TRUE;
932 set_content_info(FALSE);
937 if (g_current_surface_type == PLAYER_DISPLAY_TYPE_OVERLAY) {
939 ret = player_prepare_async(g_player[0], prepared_cb, (void *)g_player[0]);
941 ret = player_prepare(g_player[0]);
944 for (i = 0; i < g_handle_num; i++) {
946 ret = player_prepare_async(g_player[i], prepared_cb, (void *)g_player[i]);
948 ret = player_prepare(g_player[i]);
952 if (ret != PLAYER_ERROR_NONE)
953 g_print("prepare is failed (errno = %d) \n", ret);
955 player_state_e state;
956 if (g_current_surface_type == PLAYER_DISPLAY_TYPE_OVERLAY) {
957 ret = player_get_state(g_player[0], &state);
958 g_print("After player_prepare() - Current State : %d \n", state);
961 for (i = 0; i < g_handle_num; i++) {
962 ret = player_get_state(g_player[i], &state);
963 g_print("After player_prepare() - Current State : %d \n", state);
968 pthread_create(&g_feed_video_thread_id, NULL, (void *)feed_video_data_thread_func, NULL);
972 static void _player_unprepare()
976 if (g_current_surface_type == PLAYER_DISPLAY_TYPE_OVERLAY) {
977 ret = player_unprepare(g_player[0]);
978 if (ret != PLAYER_ERROR_NONE)
979 g_print("unprepare is failed (errno = %d) \n", ret);
981 ret = player_unset_subtitle_updated_cb(g_player[0]);
982 g_print("player_unset_subtitle_updated_cb ret %d\n", ret);
984 ret = player_unset_buffering_cb(g_player[0]);
985 g_print("player_unset_buffering_cb ret %d\n", ret);
987 ret = player_unset_completed_cb(g_player[0]);
988 g_print("player_unset_completed_cb ret %d\n", ret);
990 ret = player_unset_interrupted_cb(g_player[0]);
991 g_print("player_unset_interrupted_cb ret %d\n", ret);
993 ret = player_unset_error_cb(g_player[0]);
994 g_print("player_unset_error_cb ret %d\n", ret);
996 for (i = 0; i < g_handle_num; i++) {
997 if (g_player[i] != NULL) {
998 ret = player_unprepare(g_player[i]);
999 if (ret != PLAYER_ERROR_NONE)
1000 g_print("unprepare is failed (errno = %d) \n", ret);
1002 ret = player_unset_subtitle_updated_cb(g_player[i]);
1003 g_print("player_unset_subtitle_updated_cb [%d] ret %d\n", i, ret);
1005 ret = player_unset_buffering_cb(g_player[i]);
1006 g_print("player_unset_buffering_cb [%d] ret %d\n", i, ret);
1008 ret = player_unset_completed_cb(g_player[i]);
1009 g_print("player_unset_completed_cb [%d] ret %d\n", i, ret);
1011 ret = player_unset_interrupted_cb(g_player[i]);
1012 g_print("player_unset_interrupted_cb [%d] ret %d\n", i, ret);
1014 ret = player_unset_error_cb(g_player[i]);
1015 g_print("player_unset_error_cb [%d] ret %d\n", i, ret);
1019 /* attention! surface(evas) -> unprepare -> surface(evas) : evas object will disappear. */
1021 memset(g_subtitle_uri, 0, sizeof(g_subtitle_uri));
1022 player_state_e state;
1023 if (g_current_surface_type == PLAYER_DISPLAY_TYPE_OVERLAY) {
1024 ret = player_get_state(g_player[0], &state);
1025 g_print(" After player_unprepare() - Current State : %d \n", state);
1027 for (i = 0; i < g_handle_num; i++) {
1028 ret = player_get_state(g_player[i], &state);
1029 g_print(" After player_unprepare() - Current State : %d \n", state);
1034 static void _player_destroy()
1038 if (g_current_surface_type == PLAYER_DISPLAY_TYPE_OVERLAY) {
1039 player_unprepare(g_player[0]);
1040 for (i = 0; i < g_handle_num; i++) {
1041 player_destroy(g_player[i]);
1045 for (i = 0; i < g_handle_num; i++) {
1046 if (g_player[i] != NULL) {
1047 player_unprepare(g_player[i]);
1048 player_destroy(g_player[i]);
1054 if (g_stream_info_h) {
1055 sound_manager_destroy_stream_information(g_stream_info_h);
1056 g_stream_info_h = NULL;
1060 media_packet_destroy(g_video_pkt);
1063 media_packet_destroy(g_audio_pkt);
1074 static void _player_play()
1078 if (g_current_surface_type == PLAYER_DISPLAY_TYPE_OVERLAY) {
1079 #ifdef _ACTIVATE_EOM_
1080 /* for checking external display.... */
1081 player_set_display(g_player[0], g_current_surface_type, GET_DISPLAY(selected_win_id));
1083 bRet = player_start(g_player[0]);
1084 g_print("player_start returned [%d]", bRet);
1086 for (i = 0; i < g_handle_num; i++) {
1087 bRet = player_start(g_player[i]);
1088 g_print("player_start returned [%d]", bRet);
1093 static void _player_stop()
1097 if (g_current_surface_type == PLAYER_DISPLAY_TYPE_OVERLAY) {
1098 bRet = player_stop(g_player[0]);
1099 g_print("player_stop returned [%d]", bRet);
1101 for (i = 0; i < g_handle_num; i++) {
1102 bRet = player_stop(g_player[i]);
1103 g_print("player_stop returned [%d]", bRet);
1107 g_thread_end = TRUE;
1108 if (g_feed_video_thread_id) {
1109 pthread_join(g_feed_video_thread_id, NULL);
1110 g_feed_video_thread_id = 0;
1115 static void _player_resume()
1119 if (g_current_surface_type == PLAYER_DISPLAY_TYPE_OVERLAY) {
1120 #ifdef _ACTIVATE_EOM_
1121 /* for checking external display.... */
1122 player_set_display(g_player[0], PLAYER_DISPLAY_TYPE_OVERLAY, GET_DISPLAY(selected_win_id));
1124 bRet = player_start(g_player[0]);
1125 g_print("player_start returned [%d]", bRet);
1127 for (i = 0; i < g_handle_num; i++) {
1128 bRet = player_start(g_player[i]);
1129 g_print("player_start returned [%d]", bRet);
1134 static void _player_pause()
1138 if (g_current_surface_type == PLAYER_DISPLAY_TYPE_OVERLAY) {
1139 bRet = player_pause(g_player[0]);
1140 g_print("player_pause returned [%d]", bRet);
1142 for (i = 0; i < g_handle_num; i++) {
1143 bRet = player_pause(g_player[i]);
1144 g_print("player_pause returned [%d]", bRet);
1149 static void _player_state()
1151 player_state_e state;
1152 player_get_state(g_player[0], &state);
1153 g_print(" ==> [Player_Test] Current Player State : %d\n", state);
1156 static void _player_set_progressive_download()
1158 player_set_progressive_download_path(g_player[0], "/home/owner/test.pd");
1159 player_set_progressive_download_message_cb(g_player[0], progress_down_cb, (void *)g_player[0]);
1162 static void _player_get_progressive_download_status()
1165 unsigned long curr, total;
1166 bRet = player_get_progressive_download_status(g_player[0], &curr, &total);
1167 g_print("player_get_progressive_download_status return[%d] ==> [Player_Test] progressive download status : %lu/%lu\n", bRet, curr, total);
1170 static void _player_enable_tsurf_pool(void)
1173 bool enabled = FALSE;
1174 player_is_enabled_tsurf_pool(g_player[0], &enabled);
1176 g_print("tbm surface pool will be %s", (enabled) ? "disabled" : "enabled");
1177 player_enable_tsurf_pool(g_player[0], !enabled);
1179 g_print("not support at TV profile");
1183 static void set_next_uri(char * uri)
1186 if (player_set_next_uri(g_player[0], uri) != PLAYER_ERROR_NONE)
1187 g_print("fail to set next uri");
1189 g_print("not support at TV profile");
1193 static void get_next_uri()
1197 if (player_get_next_uri(g_player[0], &uri) != PLAYER_ERROR_NONE) {
1198 g_print("fail to get next uri");
1203 g_print("next_uri = %s", uri);
1207 g_print("not support at TV profile");
1211 static void set_volume(float volume)
1213 if (player_set_volume(g_player[0], volume, volume) != PLAYER_ERROR_NONE)
1214 g_print("failed to set volume\n");
1217 static void get_volume(float *left, float *right)
1219 player_get_volume(g_player[0], left, right);
1220 g_print(" ==> [Player_Test] volume - left : %f, right : %f\n", *left, *right);
1223 static void set_mute(bool mute)
1225 if (player_set_mute(g_player[0], mute) != PLAYER_ERROR_NONE)
1226 g_print("failed to set_mute\n");
1229 static void get_mute(bool * mute)
1231 player_is_muted(g_player[0], mute);
1232 g_print(" ==> [Player_Test] mute = %d\n", *mute);
1235 static void set_sound_type(sound_type_e type)
1237 if (player_set_sound_type(g_player[0], type) != PLAYER_ERROR_NONE)
1238 g_print("failed to set sound type(%d)\n", type);
1240 g_print("set sound type(%d) success", type);
1243 void focus_callback(sound_stream_info_h stream_info, sound_stream_focus_change_reason_e reason, const char *extra_info, void *user_data)
1245 g_print("FOCUS callback is called, reason(%d), extra_info(%s), userdata(%p)", reason, extra_info, user_data);
1249 static void set_sound_stream_info(int type)
1251 sound_device_list_h device_list = NULL;
1252 int ret = SOUND_MANAGER_ERROR_NONE;
1254 if (g_stream_info_h) {
1255 g_print("stream information is already set, please destory handle and try again\n");
1258 if (sound_manager_create_stream_information(type, focus_callback, g_player[0], &g_stream_info_h)) {
1259 g_print("failed to create stream_information()\n");
1262 /* In case of MEDIA_EXTERNAL_ONLY, we need to set external device manually */
1263 if (type == (int)SOUND_STREAM_TYPE_MEDIA_EXTERNAL_ONLY) {
1264 sound_device_h device = NULL;
1265 sound_device_type_e device_type;
1267 if ((ret = sound_manager_get_current_device_list(SOUND_DEVICE_ALL_MASK, &device_list))) {
1268 g_print("failed to sound_manager_get_current_device_list(), ret(0x%x)\n", ret);
1271 while (!(ret = sound_manager_get_next_device(device_list, &device))) {
1272 if ((ret = sound_manager_get_device_type(device, &device_type))) {
1273 g_print("failed to sound_manager_get_device_type(), ret(0x%x)\n", ret);
1276 if (device_type == SOUND_DEVICE_BLUETOOTH || device_type == SOUND_DEVICE_USB_AUDIO) {
1277 if ((ret = sound_manager_add_device_for_stream_routing(g_stream_info_h, device))) {
1278 g_print("failed to sound_manager_add_device_for_stream_routing(), ret(0x%x)\n", ret);
1281 if ((ret = sound_manager_apply_stream_routing(g_stream_info_h))) {
1282 g_print("failed to sound_manager_apply_stream_routing(), ret(0x%x)\n", ret);
1288 if (ret != SOUND_MANAGER_ERROR_NONE) {
1289 g_print("failed to sound_manager_get_next_device(), ret(0x%x)\n", ret);
1294 if (player_set_audio_policy_info(g_player[0], g_stream_info_h) != PLAYER_ERROR_NONE)
1295 g_print("failed to set sound stream information(%p)\n", g_stream_info_h);
1297 g_print("set stream information(%p) success", g_stream_info_h);
1301 sound_manager_free_device_list(device_list);
1305 static void get_position()
1309 ret = player_get_play_position(g_player[0], &position);
1310 g_print(" ==> [Player_Test] player_get_play_position()%d return : %d\n", ret, position);
1313 static void set_position(int position)
1315 if (player_set_play_position(g_player[0], position, TRUE, seek_completed_cb, g_player[0]) != PLAYER_ERROR_NONE)
1316 g_print("failed to set position\n");
1319 static void set_playback_rate(float rate, bool streaming)
1322 if (player_set_streaming_playback_rate(g_player[0], rate) != PLAYER_ERROR_NONE)
1323 g_print("failed to set streaming playback rate\n");
1325 if (player_set_playback_rate(g_player[0], rate) != PLAYER_ERROR_NONE)
1326 g_print("failed to set playback rate\n");
1330 static void get_duration()
1334 ret = player_get_duration(g_player[0], &duration);
1335 g_print(" ==> [Player_Test] player_get_duration() return : %d\n", ret);
1336 g_print(" ==> [Player_Test] Duration: [%d ] msec\n", duration);
1339 static void audio_frame_decoded_cb_ex(bool sync)
1343 fp_out1 = fopen("/tmp/out1.pcm", "wb");
1344 fp_out2 = fopen("/tmp/out2.pcm", "wb");
1345 if (!fp_out1 || !fp_out2) {
1346 g_print("File open error\n");
1351 ret = player_set_pcm_extraction_mode(g_player[0], sync, _audio_frame_decoded_cb_ex, &ret);
1352 g_print(" ==> [Player_Test] player_set_audio_frame_decoded_cb_ex(sync:%d) ret:%d\n", sync, ret);
1354 ret = player_set_pcm_spec(g_player[0], "F32LE", 44100, 2);
1355 g_print("[Player_Test] set_pcm_spec return: %d\n", ret);
1358 static void get_stream_info()
1364 player_get_content_info(g_player[0], PLAYER_CONTENT_INFO_ALBUM, &value);
1365 g_print(" ==> [Player_Test] PLAYER_CONTENT_INFO_ALBUM: [%s ] \n", value);
1366 player_get_content_info(g_player[0], PLAYER_CONTENT_INFO_ARTIST, &value);
1367 g_print(" ==> [Player_Test] PLAYER_CONTENT_INFO_ARTIST: [%s ] \n", value);
1368 player_get_content_info(g_player[0], PLAYER_CONTENT_INFO_AUTHOR, &value);
1369 g_print(" ==> [Player_Test] PLAYER_CONTENT_INFO_AUTHOR: [%s ] \n", value);
1370 player_get_content_info(g_player[0], PLAYER_CONTENT_INFO_GENRE, &value);
1371 g_print(" ==> [Player_Test] PLAYER_CONTENT_INFO_GENRE: [%s ] \n", value);
1372 player_get_content_info(g_player[0], PLAYER_CONTENT_INFO_TITLE, &value);
1373 g_print(" ==> [Player_Test] PLAYER_CONTENT_INFO_TITLE: [%s ] \n", value);
1376 player_get_album_art(g_player[0], &album, &size);
1377 g_print(" ==> [Player_Test] Album art : [ data : %p, size : %d ]\n", (unsigned int *)album, size);
1379 if (value != NULL) {
1387 int fps, v_bit_rate;
1388 player_get_audio_stream_info(g_player[0], &sample_rate, &channel, &bit_rate);
1389 g_print(" ==> [Player_Test] Sample Rate: [%d ] , Channel: [%d ] , Bit Rate: [%d ] \n", sample_rate, channel, bit_rate);
1391 player_get_video_stream_info(g_player[0], &fps, &v_bit_rate);
1392 g_print(" ==> [Player_Test] fps: [%d ] , Bit Rate: [%d ] \n", fps, v_bit_rate);
1394 char *audio_codec = NULL;
1395 char *video_codec = NULL;
1396 player_get_codec_info(g_player[0], &audio_codec, &video_codec);
1397 if (audio_codec != NULL) {
1398 g_print(" ==> [Player_Test] Audio Codec: [%s ] \n", audio_codec);
1402 if (video_codec != NULL) {
1403 g_print(" ==> [Player_Test] Video Codec: [%s ] \n", video_codec);
1407 player_get_video_size(g_player[0], &w, &h);
1408 g_print(" ==> [Player_Test] Width: [%d ] , Height: [%d ] \n", w, h);
1411 static void set_gapless(bool gapless)
1414 if (g_current_surface_type == PLAYER_DISPLAY_TYPE_OVERLAY) {
1415 if (player_set_gapless(g_player[0], gapless) != PLAYER_ERROR_NONE)
1416 g_print("failed set_gapless\n");
1419 for (i = 0; i < g_handle_num; i++) {
1420 if (player_set_gapless(g_player[i], gapless) != PLAYER_ERROR_NONE)
1421 g_print("failed to set_gapless\n");
1425 g_print("not support at TV profile");
1429 static void set_looping(bool looping)
1431 if (g_current_surface_type == PLAYER_DISPLAY_TYPE_OVERLAY) {
1432 if (player_set_looping(g_player[0], looping) != PLAYER_ERROR_NONE)
1433 g_print("failed to set_looping\n");
1436 for (i = 0; i < g_handle_num; i++) {
1437 if (player_set_looping(g_player[i], looping) != PLAYER_ERROR_NONE)
1438 g_print("failed to set_looping\n");
1443 static void get_looping(bool * looping)
1445 player_is_looping(g_player[0], looping);
1446 g_print(" ==> [Player_Test] looping = %d\n", *looping);
1449 static void change_surface(int option)
1451 player_display_type_e surface_type = 0;
1452 int ret = PLAYER_ERROR_NONE;
1453 #ifdef _ACTIVATE_EOM_
1455 eom_output_mode_e output_mode;
1460 surface_type = PLAYER_DISPLAY_TYPE_OVERLAY;
1461 g_print("change surface type to X\n");
1463 #ifdef TIZEN_FEATURE_EVAS_RENDERER
1466 surface_type = PLAYER_DISPLAY_TYPE_EVAS;
1467 g_print("change surface type to EVAS\n");
1471 g_print("change surface type to NONE\n");
1472 surface_type = g_current_surface_type = PLAYER_DISPLAY_TYPE_NONE;
1473 player_set_display(g_player[0], PLAYER_DISPLAY_TYPE_NONE, NULL);
1476 g_print("invalid surface type\n");
1480 if (surface_type == g_current_surface_type) {
1481 g_print("same with the previous surface type(%d)\n", g_current_surface_type);
1484 player_state_e player_state = PLAYER_STATE_NONE;
1485 ret = player_get_state(g_player[0], &player_state);
1487 g_print("failed to player_get_state(), ret(0x%x)\n", ret);
1491 if (surface_type == PLAYER_DISPLAY_TYPE_OVERLAY) {
1492 #ifdef _ACTIVATE_EOM_
1493 hdmi_output_id = eom_get_output_id("HDMI");
1494 if (hdmi_output_id == 0)
1495 g_print("[eom] error : HDMI output id is NULL.\n");
1497 eom_get_output_mode(hdmi_output_id, &output_mode);
1498 if (output_mode == EOM_OUTPUT_MODE_NONE) {
1501 g_win_id = create_win(PACKAGE);
1502 if (g_win_id == NULL)
1504 g_print("create win_id %p\n", g_win_id);
1505 create_render_rect_and_bg(g_win_id);
1506 elm_win_activate(g_win_id);
1507 evas_object_show(g_win_id);
1508 g_win_id = selected_win_id;
1510 #ifdef _ACTIVATE_EOM_
1515 ret = player_set_display(g_player[0], surface_type, GET_DISPLAY(selected_win_id));
1518 g_win_id = create_win(PACKAGE);
1519 if (g_win_id == NULL)
1521 g_print("create win_id %p\n", g_win_id);
1522 create_render_rect_and_bg(g_win_id);
1523 elm_win_activate(g_win_id);
1524 evas_object_show(g_win_id);
1527 for (i = 0; i < g_handle_num; i++) {
1528 /* Create evas image object for EVAS surface */
1530 g_eo[i] = create_image_object(g_win_id);
1531 g_print("create eo[%d] %p\n", i, g_eo[i]);
1532 evas_object_image_size_set(g_eo[i], 500, 500);
1533 evas_object_image_fill_set(g_eo[i], 0, 0, 500, 500);
1534 evas_object_resize(g_eo[i], 500, 500);
1535 evas_object_move(g_eo[i], i * 20, i * 20);
1537 ret = player_set_display(g_player[i], surface_type, g_eo[i]);
1542 g_print("failed to set display, surface_type(%d)\n", surface_type);
1545 g_current_surface_type = surface_type;
1550 static void set_display_mode(int mode)
1552 if (player_set_display_mode(g_player[0], mode) != PLAYER_ERROR_NONE)
1553 g_print("failed to player_set_display_mode\n");
1556 static void get_display_mode()
1558 player_display_mode_e mode;
1559 player_get_display_mode(g_player[0], &mode);
1560 g_print(" ==> [Player_Test] Display mode: [%d ] \n", mode);
1563 static void set_display_roi_area(int x, int y, int width, int height)
1565 player_set_display_roi_area(g_player[0], x, y, width, height);
1566 g_print(" ==> [Player_Test] Display roi area: [x(%d) y(%d) width(%d) height(%d)] \n", x, y, width, height);
1569 static void set_display_rotation(int rotation)
1571 if (player_set_display_rotation(g_player[0], rotation) != PLAYER_ERROR_NONE)
1572 g_print("failed to set_display_rotation\n");
1575 static void get_display_rotation()
1577 player_display_rotation_e rotation = 0;
1578 player_get_display_rotation(g_player[0], &rotation);
1579 g_print(" ==> [Player_Test] Video Overlay Display rotation: [%d ] \n", rotation);
1582 static void set_display_visible(bool visible)
1584 if (player_set_display_visible(g_player[0], visible) != PLAYER_ERROR_NONE)
1585 g_print("failed to player_set_x11_display_visible\n");
1588 static void get_display_visible(bool * visible)
1590 player_is_display_visible(g_player[0], visible);
1591 g_print(" ==> [Player_Test] Video Overlay Display Visible = %d\n", *visible);
1594 static void input_subtitle_filename(char *subtitle_filename)
1596 int len = strlen(subtitle_filename);
1598 if (len < 1 || len > MAX_STRING_LEN)
1601 strncpy(g_subtitle_uri, subtitle_filename, len);
1602 g_print("subtitle uri is set to %s\n", g_subtitle_uri);
1603 player_set_subtitle_path(g_player[0], g_subtitle_uri);
1606 static void switch_subtitle(int index)
1608 char *lang_code = NULL;
1609 if (player_select_track(g_player[0], PLAYER_STREAM_TYPE_TEXT, index) != PLAYER_ERROR_NONE)
1610 g_print("player_select_track failed\n");
1612 if (player_get_track_language_code(g_player[0], PLAYER_STREAM_TYPE_TEXT, index, &lang_code) == PLAYER_ERROR_NONE) {
1613 g_print("selected track code %s\n", lang_code);
1618 static void capture_video()
1620 if (player_capture_video(g_player[0], video_captured_cb, NULL) != PLAYER_ERROR_NONE)
1621 g_print("failed to player_capture_video\n");
1624 static void decoding_audio()
1628 char *suffix, *dump_path;
1629 GDateTime *time = g_date_time_new_now_local();
1631 suffix = g_date_time_format(time, "%Y%m%d_%H%M%S.pcm");
1632 dump_path = g_strjoin(NULL, PLAYER_TEST_DUMP_PATH_PREFIX, suffix, NULL);
1633 g_pcm_fd = fopen(dump_path, "w+");
1636 g_date_time_unref(time);
1638 g_print("Can not create debug dump file");
1640 ret = player_set_audio_frame_decoded_cb(g_player[0], 0, 0, audio_frame_decoded_cb, (void *)g_player[0]);
1641 if (ret != PLAYER_ERROR_NONE)
1642 g_print("player_set_audio_frame_decoded_cb is failed (errno = %d) \n", ret);
1646 static void set_audio_eq(int value)
1648 bool available = FALSE;
1649 int index, min, max;
1652 if (player_audio_effect_equalizer_is_available(g_player[0], &available) != PLAYER_ERROR_NONE)
1653 g_print("failed to player_audio_effect_equalizer_is_available\n");
1656 if ((player_audio_effect_get_equalizer_bands_count(g_player[0], &index) != PLAYER_ERROR_NONE) ||
1657 (player_audio_effect_get_equalizer_level_range(g_player[0], &min, &max) != PLAYER_ERROR_NONE) ||
1658 (player_audio_effect_set_equalizer_band_level(g_player[0], index / 2, max) != PLAYER_ERROR_NONE))
1659 g_print("failed to player_audio_effect_set_equalizer_band_level index %d, level %d\n", index / 2, max);
1664 if (player_audio_effect_equalizer_clear(g_player[0]) != PLAYER_ERROR_NONE)
1665 g_print("failed to player_audio_effect_equalizer_clear\n");
1670 static void get_audio_eq()
1672 int index, min, max, value;
1673 player_audio_effect_get_equalizer_bands_count(g_player[0], &index);
1674 g_print(" ==> [Player_Test] eq bands count: [%d] \n", index);
1675 player_audio_effect_get_equalizer_level_range(g_player[0], &min, &max);
1676 g_print(" ==> [Player_Test] eq bands range: [%d~%d] \n", min, max);
1677 player_audio_effect_get_equalizer_band_level(g_player[0], index / 2, &value);
1678 g_print(" ==> [Player_Test] eq bands level: [%d] \n", value);
1679 player_audio_effect_get_equalizer_band_frequency(g_player[0], 0, &value);
1680 g_print(" ==> [Player_Test] eq bands frequency: [%d] \n", value);
1681 player_audio_effect_get_equalizer_band_frequency_range(g_player[0], 0, &value);
1682 g_print(" ==> [Player_Test] eq bands frequency range: [%d] \n", value);
1692 for (i = 0; i < g_handle_num; i++) {
1693 if (g_player[i] != NULL) {
1694 player_unprepare(g_player[i]);
1695 player_destroy(g_player[i]);
1702 media_format_unref(g_audio_fmt);
1705 media_format_unref(g_video_fmt);
1708 void play_with_ini(char *file_path)
1710 input_filename(file_path);
1714 void _interpret_main_menu(char *cmd)
1716 int len = strlen(cmd);
1718 if (strncmp(cmd, "a", 1) == 0) {
1719 g_menu_state = CURRENT_STATUS_FILENAME;
1720 } else if (strncmp(cmd, "b", 1) == 0) {
1722 } else if (strncmp(cmd, "c", 1) == 0) {
1724 } else if (strncmp(cmd, "d", 1) == 0) {
1726 } else if (strncmp(cmd, "e", 1) == 0) {
1728 } else if (strncmp(cmd, "S", 1) == 0) {
1730 } else if (strncmp(cmd, "f", 1) == 0) {
1731 g_menu_state = CURRENT_STATUS_VOLUME;
1732 } else if (strncmp(cmd, "g", 1) == 0) {
1735 get_volume(&left, &right);
1736 } else if (strncmp(cmd, "z", 1) == 0) {
1737 g_menu_state = CURRENT_STATUS_SOUND_TYPE;
1738 } else if (strncmp(cmd, "k", 1) == 0) {
1739 g_menu_state = CURRENT_STATUS_SOUND_STREAM_INFO;
1740 } else if (strncmp(cmd, "h", 1) == 0) {
1741 g_menu_state = CURRENT_STATUS_MUTE;
1742 } else if (strncmp(cmd, "i", 1) == 0) {
1745 } else if (strncmp(cmd, "j", 1) == 0) {
1746 g_menu_state = CURRENT_STATUS_POSITION_TIME;
1747 } else if (strncmp(cmd, "l", 1) == 0) {
1749 } else if (strncmp(cmd, "m", 1) == 0) {
1751 } else if (strncmp(cmd, "n", 1) == 0) {
1753 } else if (strncmp(cmd, "o", 1) == 0) {
1754 g_menu_state = CURRENT_STATUS_LOOPING;
1755 } else if (strncmp(cmd, "p", 1) == 0) {
1757 get_looping(&looping);
1758 } else if (strncmp(cmd, "r", 1) == 0) {
1759 g_menu_state = CURRENT_STATUS_DISPLAY_MODE;
1760 } else if (strncmp(cmd, "s", 1) == 0) {
1762 } else if (strncmp(cmd, "t", 1) == 0) {
1763 g_menu_state = CURRENT_STATUS_DISPLAY_ROTATION;
1764 } else if (strncmp(cmd, "u", 1) == 0) {
1765 get_display_rotation();
1766 } else if (strncmp(cmd, "v", 1) == 0) {
1767 g_menu_state = CURRENT_STATUS_DISPLAY_VISIBLE;
1768 } else if (strncmp(cmd, "w", 1) == 0) {
1770 get_display_visible(&visible);
1771 } else if (strncmp(cmd, "A", 1) == 0) {
1772 g_menu_state = CURRENT_STATUS_SUBTITLE_FILENAME;
1773 } else if (strncmp(cmd, "C", 1) == 0) {
1775 } else if (strncmp(cmd, "D", 1) == 0) {
1777 } else if (strncmp(cmd, "q", 1) == 0) {
1778 quit_pushing = TRUE;
1780 } else if (strncmp(cmd, "E", 1) == 0) {
1781 g_menu_state = CURRENT_STATUS_AUDIO_EQUALIZER;
1782 } else if (strncmp(cmd, "H", 1) == 0) {
1785 g_print("unknown menu \n");
1787 } else if (len == 2) {
1788 if (strncmp(cmd, "pr", 2) == 0) {
1790 _player_prepare(FALSE);
1791 } else if (strncmp(cmd, "pa", 2) == 0) {
1793 _player_prepare(TRUE);
1794 } else if (strncmp(cmd, "un", 2) == 0) {
1795 _player_unprepare();
1796 } else if (strncmp(cmd, "dt", 2) == 0) {
1798 } else if (strncmp(cmd, "sp", 2) == 0) {
1799 _player_set_progressive_download();
1800 } else if (strncmp(cmd, "gp", 2) == 0) {
1801 _player_get_progressive_download_status();
1802 } else if (strncmp(cmd, "mp", 2) == 0) {
1803 g_memory_playback = (g_memory_playback ? FALSE : TRUE);
1804 g_print("memory playback = %d\n", g_memory_playback);
1805 } else if (strncmp(cmd, "ds", 2) == 0) {
1806 g_menu_state = CURRENT_STATUS_DISPLAY_SURFACE_CHANGE;
1807 } else if (strncmp(cmd, "dr", 2) == 0) {
1808 g_print("now, PLAYER_DISPLAY_MODE_DST_ROI(display mode) is set\n");
1809 g_menu_state = CURRENT_STATUS_DISPLAY_DST_ROI;
1810 } else if (strncmp(cmd, "nb", 2) == 0) {
1811 g_menu_state = CURRENT_STATUS_HANDLE_NUM;
1812 } else if (strncmp(cmd, "tr", 2) == 0) {
1813 g_menu_state = CURRENT_STATUS_PLAYBACK_RATE;
1814 } else if (strncmp(cmd, "ss", 2) == 0) {
1815 g_menu_state = CURRENT_STATUS_SWITCH_SUBTITLE;
1816 } else if (strncmp(cmd, "X3", 2) == 0) {
1817 audio_frame_decoded_cb_ex(TRUE);
1818 } else if (strncmp(cmd, "X4", 2) == 0) {
1819 audio_frame_decoded_cb_ex(FALSE);
1820 } else if (strncmp(cmd, "ep", 2) == 0) {
1821 _player_enable_tsurf_pool();
1822 } else if (strncmp(cmd, "su", 2) == 0) {
1823 g_menu_state = CURRENT_STATUS_NEXT_URI;
1824 } else if (strncmp(cmd, "gu", 2) == 0) {
1826 } else if (strncmp(cmd, "sg", 2) == 0) {
1827 g_menu_state = CURRENT_STATUS_GAPLESS;
1829 g_print("unknown menu \n");
1832 if (strncmp(cmd, "trs", 3) == 0)
1833 g_menu_state = CURRENT_STATUS_STREAMING_PLAYBACK_RATE;
1835 g_print("unknown menu \n");
1839 void display_sub_basic()
1842 g_print("=========================================================================================\n");
1843 g_print(" Player Test (press q to quit) \n");
1844 g_print("-----------------------------------------------------------------------------------------\n");
1845 g_print("[playback] a. Create\t");
1846 g_print("pr. Prepare \t");
1847 g_print("pa. Prepare async \t");
1848 g_print("b. Play \t");
1849 g_print("c. Stop \t");
1850 g_print("d. Resume\t");
1851 g_print("e. Pause \t");
1852 g_print("un. Unprepare \t");
1853 g_print("dt. Destroy \n");
1854 g_print("[State] S. Player State \n");
1855 g_print("[ volume ] f. Set Volume\t");
1856 g_print("g. Get Volume\t");
1857 g_print("z. Set Sound type\t");
1858 g_print("k. Set Sound Stream Info.\n");
1859 g_print("[ mute ] h. Set Mute\t");
1860 g_print("i. Get Mute\n");
1861 g_print("[audio eq] E. Set Audio EQ\t");
1862 g_print("H. Get Audio EQ\n");
1863 g_print("[position] j. Set Position \t");
1864 g_print("l. Get Position\n");
1865 g_print("[trick] tr. set playback rate\n");
1866 g_print("[duration] m. Get Duration\n");
1867 g_print("[Stream Info] n. Get stream info (Video Size, codec, audio stream info, and tag info)\n");
1868 g_print("[Looping] o. Set Looping\t");
1869 g_print("p. Get Looping\n");
1870 g_print("[display] v. Set display visible\t");
1871 g_print("w. Get display visible\n");
1872 g_print("[display] ds. Change display surface type\n");
1873 g_print("[display] dr. set display roi area\n");
1874 g_print("[overlay display] r. Set display mode\t");
1875 g_print("s. Get display mode\n");
1876 g_print("[overlay display] t. Set display Rotation\n");
1877 g_print("[Track] tl. Get Track language info(single only)\n");
1878 g_print("[subtitle] A. Set(or change) subtitle path\n");
1879 g_print("[subtitle] ss. Select(or change) subtitle track\n");
1880 g_print("[Video Capture] C. Capture \n");
1881 g_print("[next uri] su. set next uri. \t");
1882 g_print("gu. get next uri. \t");
1883 g_print("sg. set gapless. \n");
1884 g_print("[audio_frame_decoded_cb_ex] X3. set audio_cb with sync\t");
1885 g_print("X4. set audio_cb with async \n");
1886 g_print("[video_frame_decoded_cb] ep. enable tbm surface pool\n");
1887 g_print("[etc] sp. Set Progressive Download\t");
1888 g_print("gp. Get Progressive Download status\t");
1889 g_print("mp. memory playback\n");
1891 g_print("=========================================================================================\n");
1894 static void displaymenu()
1896 if (g_menu_state == CURRENT_STATUS_MAINMENU) {
1897 display_sub_basic();
1898 } else if (g_menu_state == CURRENT_STATUS_HANDLE_NUM) {
1899 g_print("*** input number of handles.(recommended only for EVAS surface)\n");
1900 } else if (g_menu_state == CURRENT_STATUS_FILENAME) {
1901 g_print("*** input mediapath.\n");
1902 } else if (g_menu_state == CURRENT_STATUS_VOLUME) {
1903 g_print("*** input volume value.(0~1.0)\n");
1904 } else if (g_menu_state == CURRENT_STATUS_SOUND_TYPE) {
1905 g_print("*** input sound type.(0:SYSTEM 1:NOTIFICATION 2:ALARM 3:RINGTONE 4:MEDIA 5:CALL 6:VOIP 7:FIXED)\n");
1906 } else if (g_menu_state == CURRENT_STATUS_SOUND_STREAM_INFO) {
1907 g_print("*** input sound stream type.(0:MEDIA 1:SYSTEM 2:ALARM 3:NOTIFICATION 4:EMERGENCY 5:VOICE_INFORMATION 9:MEDIA_EXT_ONLY)\n");
1908 } else if (g_menu_state == CURRENT_STATUS_MUTE) {
1909 g_print("*** input mute value.(0: Not Mute, 1: Mute) \n");
1910 } else if (g_menu_state == CURRENT_STATUS_POSITION_TIME) {
1911 g_print("*** input position value(msec)\n");
1912 } else if (g_menu_state == CURRENT_STATUS_LOOPING) {
1913 g_print("*** input looping value.(0: Not Looping, 1: Looping) \n");
1914 } else if (g_menu_state == CURRENT_STATUS_DISPLAY_SURFACE_CHANGE) {
1915 g_print("*** input display surface type.(0: X surface, 1: EVAS surface) \n");
1916 } else if (g_menu_state == CURRENT_STATUS_DISPLAY_MODE) {
1917 g_print("*** input display mode value.(0: LETTER BOX, 1: ORIGIN SIZE, 2: FULL_SCREEN, 3: CROPPED_FULL, 4: ORIGIN_OR_LETTER) \n");
1918 } else if (g_menu_state == CURRENT_STATUS_DISPLAY_DST_ROI) {
1919 g_print("*** input display roi value sequentially.(x, y, w, h)\n");
1920 } else if (g_menu_state == CURRENT_STATUS_DISPLAY_ROTATION) {
1921 g_print("*** input display rotation value.(0: NONE, 1: 90, 2: 180, 3: 270, 4:F LIP_HORZ, 5: FLIP_VERT ) \n");
1922 } else if (g_menu_state == CURRENT_STATUS_DISPLAY_VISIBLE) {
1923 g_print("*** input display visible value.(0: HIDE, 1: SHOW) \n");
1924 } else if (g_menu_state == CURRENT_STATUS_SUBTITLE_FILENAME) {
1925 g_print(" *** input subtitle file path.\n");
1926 } else if (g_menu_state == CURRENT_STATUS_AUDIO_EQUALIZER) {
1927 g_print(" *** input audio eq value.(0: UNSET, 1: SET) \n");
1928 } else if (g_menu_state == CURRENT_STATUS_PLAYBACK_RATE || g_menu_state == CURRENT_STATUS_STREAMING_PLAYBACK_RATE) {
1929 g_print(" *** input playback rate.(-5.0 ~ 5.0)\n");
1930 } else if (g_menu_state == CURRENT_STATUS_SWITCH_SUBTITLE) {
1931 int count = 0, cur_index = 0;
1934 ret = player_get_track_count(g_player[0], PLAYER_STREAM_TYPE_TEXT, &count);
1935 if (ret != PLAYER_ERROR_NONE)
1936 g_print("player_get_track_count fail!!!!\n");
1938 g_print("Total subtitle tracks = %d \n", count);
1939 player_get_current_track(g_player[0], PLAYER_STREAM_TYPE_TEXT, &cur_index);
1940 g_print("Current index = %d \n", cur_index);
1941 g_print(" *** input correct index 0 to %d\n:", (count - 1));
1943 g_print("no track\n");
1944 } else if (g_menu_state == CURRENT_STATUS_NEXT_URI) {
1945 g_print("*** input next uri.\n");
1946 } else if (g_menu_state == CURRENT_STATUS_GAPLESS) {
1947 g_print("*** input gapless value.(0:disable, 1: enable) \n");
1949 g_print("*** unknown status.\n");
1955 gboolean timeout_menu_display(void *data)
1961 gboolean timeout_quit_program(void *data)
1967 void reset_menu_state(void)
1969 g_menu_state = CURRENT_STATUS_MAINMENU;
1972 static void interpret(char *cmd)
1974 switch (g_menu_state) {
1975 case CURRENT_STATUS_MAINMENU:
1977 _interpret_main_menu(cmd);
1980 case CURRENT_STATUS_HANDLE_NUM:
1982 int num_handle = atoi(cmd);
1983 if (0 >= num_handle || num_handle > MAX_HANDLE)
1984 g_print("not supported this number for handles(%d)\n", num_handle);
1986 g_handle_num = num_handle;
1991 case CURRENT_STATUS_FILENAME:
1993 input_filename(cmd);
1997 case CURRENT_STATUS_VOLUME:
1999 float level = atof(cmd);
2004 case CURRENT_STATUS_SOUND_TYPE:
2006 int type = atoi(cmd);
2007 set_sound_type(type);
2011 case CURRENT_STATUS_SOUND_STREAM_INFO:
2013 int type = atoi(cmd);
2014 set_sound_stream_info(type);
2018 case CURRENT_STATUS_MUTE:
2020 int mute = atoi(cmd);
2025 case CURRENT_STATUS_POSITION_TIME:
2027 long position = atol(cmd);
2028 set_position(position);
2032 case CURRENT_STATUS_LOOPING:
2034 int looping = atoi(cmd);
2035 set_looping(looping);
2039 case CURRENT_STATUS_GAPLESS:
2041 int gapless = atoi(cmd);
2042 set_gapless(gapless);
2046 case CURRENT_STATUS_DISPLAY_SURFACE_CHANGE:
2048 int type = atoi(cmd);
2049 change_surface(type);
2053 case CURRENT_STATUS_DISPLAY_MODE:
2055 int mode = atoi(cmd);
2056 set_display_mode(mode);
2060 case CURRENT_STATUS_DISPLAY_DST_ROI:
2062 int value = atoi(cmd);
2069 set_display_mode(PLAYER_DISPLAY_MODE_DST_ROI);
2086 set_display_roi_area(x, y, w, h);
2095 case CURRENT_STATUS_DISPLAY_ROTATION:
2097 int rotation = atoi(cmd);
2098 set_display_rotation(rotation);
2102 case CURRENT_STATUS_DISPLAY_VISIBLE:
2104 int visible = atoi(cmd);
2105 set_display_visible(visible);
2109 case CURRENT_STATUS_SUBTITLE_FILENAME:
2111 input_subtitle_filename(cmd);
2115 case CURRENT_STATUS_AUDIO_EQUALIZER:
2117 int value = atoi(cmd);
2118 set_audio_eq(value);
2122 case CURRENT_STATUS_PLAYBACK_RATE:
2124 float rate = atof(cmd);
2125 set_playback_rate(rate, FALSE);
2129 case CURRENT_STATUS_STREAMING_PLAYBACK_RATE:
2131 float rate = atof(cmd);
2132 set_playback_rate(rate, TRUE);
2136 case CURRENT_STATUS_SWITCH_SUBTITLE:
2138 int index = atoi(cmd);
2139 switch_subtitle(index);
2143 case CURRENT_STATUS_NEXT_URI:
2151 g_timeout_add(100, timeout_menu_display, 0);
2154 gboolean input(GIOChannel * channel)
2156 gchar buf[MAX_STRING_LEN];
2158 GError *error = NULL;
2160 g_io_channel_read_chars(channel, buf, MAX_STRING_LEN, &read, &error);
2168 int main(int argc, char *argv[])
2170 GIOChannel *stdin_channel;
2171 stdin_channel = g_io_channel_unix_new(0);
2172 g_io_channel_set_flags(stdin_channel, G_IO_FLAG_NONBLOCK, NULL);
2173 g_io_add_watch(stdin_channel, G_IO_IN, (GIOFunc) input, NULL);
2176 memset(&ad, 0x0, sizeof(appdata));
2179 return appcore_efl_main(PACKAGE, &argc, &argv, &ops);