projects
/
platform
/
core
/
api
/
player.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
71c495c
)
add video resolution info when media packet is pushed
65/60265/1
accepted/tizen/ivi/20160225.081913
accepted/tizen/mobile/20160225.081817
accepted/tizen/tv/20160225.081830
accepted/tizen/wearable/20160225.081845
submit/tizen/20160224.124741
author
Eunhae Choi
<eunhae1.choi@samsung.com>
Wed, 24 Feb 2016 12:43:14 +0000
(21:43 +0900)
committer
Eunhae Choi
<eunhae1.choi@samsung.com>
Wed, 24 Feb 2016 12:43:14 +0000
(21:43 +0900)
Change-Id: I082926bf3ccf1f45db10a26046c14da7e90511e5
src/player.c
patch
|
blob
|
history
diff --git
a/src/player.c
b/src/player.c
index 2f246ed1b48fd25e07b3a1f23a5f359e08812e42..cb9537fbcc0f4124e84e54eaeca56eba6d9f824c 100644
(file)
--- a/
src/player.c
+++ b/
src/player.c
@@
-2761,7
+2761,7
@@
int player_push_media_stream(player_h player, media_packet_h packet)
media_packet_is_video(packet, &is_video);
media_packet_is_audio(packet, &is_audio);
if (is_video)
- media_format_get_video_info(format, &push_media.mimetype,
NULL, NULL
, NULL, NULL);
+ media_format_get_video_info(format, &push_media.mimetype,
&push_media.width, &push_media.height
, NULL, NULL);
else if (is_audio)
media_format_get_audio_info(format, &push_media.mimetype, NULL, NULL, NULL, NULL);