From: Hyunil Park Date: Fri, 17 Jul 2015 02:51:07 +0000 (+0900) Subject: To avoid 64bit build error X-Git-Tag: submit/tizen/20150728.092220~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b640f9cf9c9d6661adb24453ddeb1acf0d31b16e;p=platform%2Fcore%2Fapi%2Fplayer.git To avoid 64bit build error Change-Id: Ief9420ba0c643760c7dadd9de4222e9ca068584f Signed-off-by: Hyunil Park --- diff --git a/test/player_test.c b/test/player_test.c index d4c6b17..2a98568 100644 --- a/test/player_test.c +++ b/test/player_test.c @@ -258,7 +258,7 @@ static void _audio_frame_decoded_cb_ex(player_audio_raw_data_s *audio_raw_frame, if (!audio_raw) return; - g_print("[Player_Test] decoded_cb_ex! channel: %d channel_mask: %lld\n", audio_raw->channel, audio_raw->channel_mask); + g_print("[Player_Test] decoded_cb_ex! channel: %d channel_mask: %" G_GUINT64_FORMAT "\n", audio_raw->channel, audio_raw->channel_mask); #ifdef DUMP_OUTBUF if(audio_raw->channel_mask == 1) @@ -496,7 +496,7 @@ static void buffer_need_video_data_cb(unsigned int size, void *user_data) fclose(fp); fp = NULL; } - g_print("video need data - data size : %d, pts : %lld\n", real_read_len, pts); + g_print("video need data - data size : %d, pts : %" G_GUINT64_FORMAT "\n", real_read_len, pts); #if 0 player_submit_packet(g_player[0], buff_ptr, real_read_len, (pts/1000000), 1); #else @@ -567,7 +567,7 @@ static void buffer_need_audio_data_cb(unsigned int size, void *user_data) fclose(fp); fp = NULL; - g_print("\t audio need data - data size : %d, pts : %lld\n", real_read_len, audio_pts); + g_print("\t audio need data - data size : %d, pts : %" G_GUINT64_FORMAT "\n", real_read_len, audio_pts); } #if 0 player_submit_packet(g_player[0], buff_ptr, real_read_len, (audio_pts/1000000), 0);