4 * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
6 * Contact: JongHyuk Choi <jhchoi.choi@samsung.com>, YeJin Cho <cho.yejin@samsung.com>,
7 * Seungbae Shin <seungbae.shin@samsung.com>, YoungHwan An <younghwan_.an@samsung.com>
9 * Licensed under the Apache License, Version 2.0 (the "License");
10 * you may not use this file except in compliance with the License.
11 * You may obtain a copy of the License at
13 * http://www.apache.org/licenses/LICENSE-2.0
15 * Unless required by applicable law or agreed to in writing, software
16 * distributed under the License is distributed on an "AS IS" BASIS,
17 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 * See the License for the specific language governing permissions and
19 * limitations under the License.
23 #ifndef __MM_PLAYER_H__
24 #define __MM_PLAYER_H__
27 /*===========================================================================================
31 ========================================================================================== */
36 #include <mm_message.h>
37 #include <media_packet.h>
48 This part describes APIs used for playback of multimedia contents.
49 All multimedia contents are created by a media player through handle of playback.
50 In creating a player, it displays the player's status or information
51 by registering callback function.
54 In case of streaming playback, network has to be opend by using datanetwork API.
55 If proxy, cookies and the other attributes for streaming playback are needed,
56 set those attributes using mm_player_set_attribute() before create player.
59 The subtitle for local video playback is supported. Set "subtitle_uri" attribute
60 using mm_player_set_attribute() before the application creates the player.
61 Then the application could receive MMMessageParamType which includes subtitle string and duration.
64 Player can have 5 states, and each state can be changed by calling
65 described functions on "Figure1. State of Player".
68 @image html player_state.jpg "Figure1. State of Player" width=12cm
69 @image latex player_state.jpg "Figure1. State of Player" width=12cm
72 Most of functions which change player state work as synchronous. But, mm_player_start() should be used
73 asynchronously. Both mm_player_pause() and mm_player_resume() should also be used asynchronously
74 in the case of streaming data.
75 So, application have to confirm the result of those APIs through message callback function.
78 Note that "None" and Null" state could be reached from any state
79 by calling mm_player_destroy() and mm_player_unrealize().
84 <td><B>FUNCTION</B></td>
85 <td><B>PRE-STATE</B></td>
86 <td><B>POST-STATE</B></td>
87 <td><B>SYNC TYPE</B></td>
90 <td>mm_player_create()</td>
96 <td>mm_player_destroy()</td>
102 <td>mm_player_realize()</td>
108 <td>mm_player_unrealize()</td>
114 <td>mm_player_start()</td>
120 <td>mm_player_stop()</td>
126 <td>mm_player_pause()</td>
132 <td>mm_player_resume()</td>
138 <td>mm_player_set_message_callback()</td>
144 <td>mm_player_get_state()</td>
150 <td>mm_player_set_volume()</td>
156 <td>mm_player_get_volume()</td>
162 <td>mm_player_set_position()</td>
168 <td>mm_player_get_position()</td>
174 <td>mm_player_get_attribute()</td>
180 <td>mm_player_set_attribute()</td>
188 Following are the attributes supported in player which may be set after initialization. \n
189 Those are handled as a string.
199 <td>"profile_uri"</td>
204 <td>"content_duration"</td>
209 <td>"content_video_width"</td>
214 <td>"content_video_height"</td>
219 <td>"display_evas_do_scaling"</td>
224 <td>"display_evas_surface_sink"</td>
229 <td>"profile_user_param"</td>
234 <td>"profile_play_count"</td>
239 <td>"streaming_type"</td>
244 <td>"streaming_udp_timeout"</td>
249 <td>"streaming_user_agent"</td>
254 <td>"streaming_wap_profile"</td>
259 <td>"streaming_network_bandwidth"</td>
264 <td>"streaming_cookie"</td>
269 <td>"streaming_proxy_ip"</td>
274 <td>"streaming_proxy_port"</td>
279 <td>"streaming_timeout"</td>
284 <td>"display_overlay"</td>
289 <td>"display_rotation"</td>
294 <td>"subtitle_uri"</td>
301 Following attributes are supported for playing stream data. Those value can be readable only and valid after starting playback.\n
302 Please use mm_fileinfo for local playback.
312 <td>"content_video_found"</td>
317 <td>"content_video_codec"</td>
322 <td>"content_video_track_num"</td>
327 <td>"content_audio_found"</td>
332 <td>"content_audio_codec"</td>
337 <td>"content_audio_bitrate"</td>
342 <td>"content_audio_channels"</td>
347 <td>"content_audio_samplerate"</td>
352 <td>"content_audio_track_num"</td>
357 <td>"content_text_track_num"</td>
362 <td>"tag_artist"</td>
382 <td>"tag_author"</td>
387 <td>"tag_copyright"</td>
397 <td>"tag_description"</td>
402 <td>"tag_track_num"</td>
411 /*===========================================================================================
413 | GLOBAL DEFINITIONS AND DECLARATIONS |
415 ========================================================================================== */
420 * uri to play (string)
423 #define MM_PLAYER_CONTENT_URI "profile_uri"
425 * MM_PLAYER_CONTENT_DURATION:
427 * get the duration (int) as millisecond, It's guaranteed after calling mm_player_start() or
428 * receiving MM_MESSAGE_BEGIN_OF_STREAM.
431 #define MM_PLAYER_CONTENT_DURATION "content_duration"
433 * MM_PLAYER_VIDEO_ROTATION
435 * can change video angle (int)
436 * @see MMDisplayRotationType
438 #define MM_PLAYER_VIDEO_ROTATION "display_rotation"
440 * MM_PLAYER_VIDEO_WIDTH:
442 * get the video width (int), It's guaranteed after calling mm_player_start() or
443 * receiving MM_MESSAGE_BEGIN_OF_STREAM.
446 #define MM_PLAYER_VIDEO_WIDTH "content_video_width"
448 * MM_PLAYER_VIDEO_HEIGHT:
450 * get the video height (int), It's guaranteed after calling mm_player_start() or
451 * receiving MM_MESSAGE_BEGIN_OF_STREAM.
454 #define MM_PLAYER_VIDEO_HEIGHT "content_video_height"
456 * MM_PLAYER_VIDEO_EVAS_SURFACE_DO_SCALING:
458 * set whether or not to scale frames size for evas surface.
459 * if TRUE, it scales down width, height size of frames with given size.
460 * if FALSE, it does not scale down any frames.
463 #define MM_PLAYER_VIDEO_EVAS_SURFACE_DO_SCALING "display_evas_do_scaling"
465 * MM_PLAYER_VIDEO_EVAS_SURFACE_SINK:
467 * get the video evas surface sink plugin name (string), It's guaranteed after calling mm_player_create()
470 #define MM_PLAYER_VIDEO_EVAS_SURFACE_SINK "display_evas_surface_sink"
474 * set memory pointer to play (data)
477 #define MM_PLAYER_MEMORY_SRC "profile_user_param"
479 * MM_PLAYER_PLAYBACK_COUNT
481 * can set playback count (int), Default value is 1 and -1 is for infinity playing until releasing it.
484 #define MM_PLAYER_PLAYBACK_COUNT "profile_play_count"
486 * MM_PLAYER_SUBTITLE_URI
488 * set the subtitle path (string)
490 #define MM_PLAYER_SUBTITLE_URI "subtitle_uri"
492 * MM_PLAYER_STREAMING_TYPE
494 * set the streaming type (int)
495 * @see MMStreamingType
497 #define MM_PLAYER_STREAMING_TYPE "streaming_type"
499 * MM_PLAYER_STREAMING_UDP_TIMEOUT
501 * set the streaming udp timeout(int)
503 #define MM_PLAYER_STREAMING_UDP_TIMEOUT "streaming_udp_timeout"
505 * MM_PLAYER_STREAMING_USER_AGENT
507 * set the streaming user agent (string)
509 #define MM_PLAYER_STREAMING_USER_AGENT "streaming_user_agent"
511 * MM_PLAYER_STREAMING_WAP_PROFILE
513 * set the streaming wap profile (int)
515 #define MM_PLAYER_STREAMING_WAP_PROFILE "streaming_wap_profile"
517 * MM_PLAYER_STREAMING_NET_BANDWIDTH
519 * set the streaming network bandwidth (int)
521 #define MM_PLAYER_STREAMING_NET_BANDWIDTH "streaming_network_bandwidth"
523 * MM_PLAYER_STREAMING_COOKIE
525 * set the streaming cookie (int)
527 #define MM_PLAYER_STREAMING_COOKIE "streaming_cookie"
529 * MM_PLAYER_STREAMING_PROXY_IP
531 * set the streaming proxy ip (string)
533 #define MM_PLAYER_STREAMING_PROXY_IP "streaming_proxy_ip"
535 * MM_PLAYER_STREAMING_PROXY_PORT
537 * set the streaming proxy port (int)
539 #define MM_PLAYER_STREAMING_PROXY_PORT "streaming_proxy_port"
541 * MM_PLAYER_STREAMING_TIMEOUT
543 * set the streaming timeout (int)
545 #define MM_PLAYER_STREAMING_TIMEOUT "streaming_timeout"
547 * MM_PLAYER_VIDEO_CODEC
549 * codec the video data is stored in (string)
551 #define MM_PLAYER_VIDEO_CODEC "content_video_codec"
553 * MM_PLAYER_VIDEO_TRACK_NUM
555 * track number inside a collection (int)
557 #define MM_PLAYER_VIDEO_TRACK_NUM "content_video_track_num"
559 * MM_PLAYER_AUDIO_CODEC
561 * codec the audio data is stored in (string)
563 #define MM_PLAYER_AUDIO_CODEC "content_audio_codec"
565 * MM_PLAYER_AUDIO_BITRATE
567 * set the streaming proxy port (int)
569 #define MM_PLAYER_AUDIO_BITRATE "content_audio_bitrate"
571 * MM_PLAYER_AUDIO_CHANNEL
573 * the number of audio channel (int)
575 #define MM_PLAYER_AUDIO_CHANNEL "content_audio_channels"
577 * MM_PLAYER_AUDIO_SAMPLERATE
579 * audio samplerate (int)
581 #define MM_PLAYER_AUDIO_SAMPLERATE "content_audio_samplerate"
583 * MM_PLAYER_AUDIO_TRACK_NUM
585 * track number inside a collection (int)
587 #define MM_PLAYER_AUDIO_TRACK_NUM "content_audio_track_num"
589 * MM_PLAYER_TEXT_TRACK_NUM
591 * track number inside a collection (int)
593 #define MM_PLAYER_TEXT_TRACK_NUM "content_text_track_num"
595 * MM_PLAYER_TAG_ARTIST
597 * person(s) responsible for the recording (string)
599 #define MM_PLAYER_TAG_ARTIST "tag_artist"
601 * MM_PLAYER_TAG_ARTIST
605 #define MM_PLAYER_TAG_TITLE "tag_title"
607 * MM_PLAYER_TAG_ARTIST
609 * album containing this data (string)
611 #define MM_PLAYER_TAG_ALBUM "tag_album"
613 * MM_PLAYER_TAG_ARTIST
615 * genre this data belongs to (string)
617 #define MM_PLAYER_TAG_GENRE "tag_genre"
619 * MM_PLAYER_TAG_ARTIST
623 #define MM_PLAYER_TAG_AUTHOUR "tag_author"
625 * MM_PLAYER_TAG_ARTIST
627 * copyright notice of the data (string)
629 #define MM_PLAYER_TAG_COPYRIGHT "tag_copyright"
631 * MM_PLAYER_TAG_ARTIST
633 * date the data was created (string)
635 #define MM_PLAYER_TAG_DATE "tag_date"
637 * MM_PLAYER_TAG_ARTIST
639 * short text describing the content of the data (string)
641 #define MM_PLAYER_TAG_DESCRIPRION "tag_description"
643 * MM_PLAYER_TAG_ARTIST
645 * track number inside a collection (int)
647 #define MM_PLAYER_TAG_TRACK_NUM "tag_track_num"
651 * progressive download mode (int)
653 #define MM_PLAYER_PD_MODE "pd_mode"
658 * dynamic resolution change mode (int)
660 #define MM_PLAYER_DRC_MODE "drc_mode"
663 * MM_PLAYER_GAPLESS_MODE
665 * gapless playback mode (int)
667 #define MM_PLAYER_GAPLESS_MODE "gapless_mode"
670 * MM_PLAYER_ENABLE_VIDEO_DECODED_CB
672 * enable video decoded callback (int)
674 #define MM_PLAYER_ENABLE_VIDEO_DECODED_CB "enable_video_decoded_cb"
676 #define BUFFER_MAX_PLANE_NUM (4)
679 MMPixelFormatType format; /**< image format */
680 int width; /**< width of video buffer */
681 int height; /**< height of video buffer */
682 unsigned int timestamp; /**< timestamp of stream buffer (msec)*/
683 unsigned int length_total; /**< total length of stream buffer (in byte)*/
684 void *data[BUFFER_MAX_PLANE_NUM];
685 void *bo[BUFFER_MAX_PLANE_NUM]; /**< TBM buffer object */
686 void *internal_buffer; /**< Internal buffer pointer */
687 int stride[BUFFER_MAX_PLANE_NUM]; /**< stride of plane */
688 int elevation[BUFFER_MAX_PLANE_NUM]; /**< elevation of plane */
689 } MMPlayerVideoStreamDataType;
692 * Enumerations of player state.
695 MM_PLAYER_STATE_NULL, /**< Player is created, but not realized yet */
696 MM_PLAYER_STATE_READY, /**< Player is ready to play media */
697 MM_PLAYER_STATE_PLAYING, /**< Player is now playing media */
698 MM_PLAYER_STATE_PAUSED, /**< Player is paused while playing media */
699 MM_PLAYER_STATE_NONE, /**< Player is not created yet */
700 MM_PLAYER_STATE_NUM, /**< Number of player states */
704 * Enumerations of position formats.
705 * Used while invoking mm_player_get_position/mm_player_set_position APIs
708 MM_PLAYER_POS_FORMAT_TIME, /**< Format for time based */
709 MM_PLAYER_POS_FORMAT_PERCENT, /**< Format for percentage */
710 MM_PLAYER_POS_FORMAT_NUM, /**< Number of position formats */
711 } MMPlayerPosFormatType;
714 * Enumeration for attribute values types.
717 MM_PLAYER_ATTRS_TYPE_INVALID = -1, /**< Type is invalid */
718 MM_PLAYER_ATTRS_TYPE_INT, /**< Integer type */
719 MM_PLAYER_ATTRS_TYPE_DOUBLE, /**< Double type */
720 MM_PLAYER_ATTRS_TYPE_STRING, /**< UTF-8 String type */
721 MM_PLAYER_ATTRS_TYPE_DATA, /**< Pointer type */
722 MM_PLAYER_ATTRS_TYPE_ARRAY, /**< Array type */
723 MM_PLAYER_ATTRS_TYPE_RANGE, /**< Range type */
724 MM_PLAYER_ATTRS_TYPE_NUM, /**< Number of attribute type */
728 * Enumeration for attribute validation type.
731 MM_PLAYER_ATTRS_VALID_TYPE_INVALID = -1, /**< Invalid validation type */
732 MM_PLAYER_ATTRS_VALID_TYPE_NONE, /**< Do not check validity */
733 MM_PLAYER_ATTRS_VALID_TYPE_INT_ARRAY, /**< validity checking type of integer array */
734 MM_PLAYER_ATTRS_VALID_TYPE_INT_RANGE, /**< validity checking type of integer range */
735 MM_PLAYER_ATTRS_VALID_TYPE_DOUBLE_ARRAY, /**< validity checking type of double array */
736 MM_PLAYER_ATTRS_VALID_TYPE_DOUBLE_RANGE, /**< validity checking type of double range */
737 } MMPlayerAttrsValidType;
740 * Enumeration for attribute access flag.
743 MM_PLAYER_ATTRS_FLAG_NONE = 0, /**< None flag is set */
744 MM_PLAYER_ATTRS_FLAG_READABLE = 1 << 0, /**< Readable */
745 MM_PLAYER_ATTRS_FLAG_WRITABLE = 1 << 1, /**< Writable */
746 MM_PLAYER_ATTRS_FLAG_MODIFIED = 1 << 2, /**< Modified */
748 MM_PLAYER_ATTRS_FLAG_RW = MM_PLAYER_ATTRS_FLAG_READABLE | MM_PLAYER_ATTRS_FLAG_WRITABLE, /**< Readable and Writable */
752 * Enumeration for progressive download
755 MM_PLAYER_PD_MODE_NONE,
756 MM_PLAYER_PD_MODE_URI,
757 MM_PLAYER_PD_MODE_FILE // not tested yet, because of no fixed scenario
761 * Enumeration of track types
764 MM_PLAYER_TRACK_TYPE_AUDIO = 0,
765 MM_PLAYER_TRACK_TYPE_VIDEO,
766 MM_PLAYER_TRACK_TYPE_TEXT,
767 MM_PLAYER_TRACK_TYPE_MAX
771 * Enumeration of runtime buffering mode
774 MM_PLAYER_BUFFERING_MODE_ADAPTIVE = 0, /**< default, If buffering is occurred, player will consider the bandwidth to adjust buffer setting. */
775 MM_PLAYER_BUFFERING_MODE_FIXED, /**< player will set buffer size with this fixed size value. */
776 MM_PLAYER_BUFFERING_MODE_MAX,
777 } MMPlayerBufferingMode;
780 MM_PLAYER_FOCUS_CHANGED_COMPLETED = 0,
781 MM_PLAYER_FOCUS_CHANGED_BY_MEDIA,
782 MM_PLAYER_FOCUS_CHANGED_BY_CALL,
783 MM_PLAYER_FOCUS_CHANGED_BY_EARJACK_UNPLUG,
784 MM_PLAYER_FOCUS_CHANGED_BY_RESOURCE_CONFLICT,
785 MM_PLAYER_FOCUS_CHANGED_BY_ALARM,
786 MM_PLAYER_FOCUS_CHANGED_BY_EMERGENCY,
787 MM_PLAYER_FOCUS_CHANGED_BY_NOTIFICATION,
788 MM_PLAYER_FOCUS_CHANGED_BY_UNKNOWN,
789 } MMPlayerFocusChangedMsg;
793 * Edge Properties of the text.
797 MM_PLAYER_EDGE_RAISED,
798 MM_PLAYER_EDGE_DEPRESSED,
799 MM_PLAYER_EDGE_UNIFORM,
800 MM_PLAYER_EDGE_DROPSHADOW
801 } MMPlayerSubtitleEdge;
804 * Enumeration of media stream buffer status
807 MM_PLAYER_MEDIA_STREAM_BUFFER_UNDERRUN,
808 MM_PLAYER_MEDIA_STREAM_BUFFER_OVERFLOW,
809 } MMPlayerMediaStreamBufferStatus;
812 * Enumeration for stream type.
815 MM_PLAYER_STREAM_TYPE_DEFAULT, /**< Container type */
816 MM_PLAYER_STREAM_TYPE_AUDIO, /**< Audio element stream type */
817 MM_PLAYER_STREAM_TYPE_VIDEO, /**< Video element stream type */
818 MM_PLAYER_STREAM_TYPE_TEXT, /**< Text type */
819 MM_PLAYER_STREAM_TYPE_MAX,
820 } MMPlayerStreamType;
823 * Attribute validity structure
826 MMPlayerAttrsType type;
827 MMPlayerAttrsValidType validity_type;
828 MMPlayerAttrsFlag flag;
830 * a union that describes validity of the attribute.
831 * Only when type is 'MM_ATTRS_TYPE_INT' or 'MM_ATTRS_TYPE_DOUBLE',
832 * the attribute can have validity.
836 * Validity structure for integer array.
839 int *array; /**< a pointer of array */
840 int count; /**< size of array */
844 * Validity structure for integer range.
847 int min; /**< minimum range */
848 int max; /**< maximum range */
852 * Validity structure for double array.
855 double * array; /**< a pointer of array */
856 int count; /**< size of array */
860 * Validity structure for double range.
863 double min; /**< minimum range */
864 double max; /**< maximum range */
873 * @see mm_player_set_volume, mm_player_get_volume
876 float level[MM_VOLUME_CHANNEL_NUM]; /**< Relative volume factor for each channels */
877 } MMPlayerVolumeType;
880 * Video stream info in external demux case
883 typedef struct _VideoStreamInfo {
885 unsigned int framerate_num;
886 unsigned int framerate_den;
889 unsigned char *codec_extradata;
890 unsigned int extradata_size;
891 unsigned int version;
892 } MMPlayerVideoStreamInfo;
895 * Audio stream info in external demux case
898 typedef struct _AudioStreamInfo {
900 unsigned int channels;
901 unsigned int sample_rate;
902 unsigned char *codec_extradata;
903 unsigned int extradata_size;
904 unsigned int version;
905 unsigned int user_info;
908 // unsigned int width;
909 // unsigned int depth;
910 // unsigned int endianness;
912 } MMPlayerAudioStreamInfo;
915 * Subtitle stream info in external demux case
918 typedef struct _SubtitleStreamInfo {
920 unsigned int codec_tag;
921 void *context; //for smpte text
922 } MMPlayerSubtitleStreamInfo;
925 * Audio stream callback function type.
927 * @param stream [in] Reference pointer to audio frame data
928 * @param stream_size [in] Size of audio frame data
929 * @param user_param [in] User defined parameter which is passed when set
930 * audio stream callback
932 * @return This callback function have to return MM_ERROR_NONE.
934 typedef bool (*mm_player_audio_stream_callback) (void *stream, int stream_size, void *user_param);
938 * selected subtitle track number callback function type.
940 * @param track_num [in] Track number of subtitle
941 * @param user_param [in] User defined parameter
944 * @return This callback function have to return MM_ERROR_NONE.
946 typedef bool (*mm_player_track_selected_subtitle_language_callback)(int track_num, void *user_param);
949 * Buffer underrun / overflow data callback function type.
951 * @param status [in] buffer status
952 * @param user_param [in] User defined parameter which is passed when set
953 * to enough data callback or need data callback
955 * @return This callback function have to return MM_ERROR_NONE.
957 typedef bool (*mm_player_media_stream_buffer_status_callback) (MMPlayerStreamType type, MMPlayerMediaStreamBufferStatus status, unsigned long long bytes, void *user_param);
960 * Buffer seek data callback function type.
962 * @param offset [in] offset for the buffer playback
963 * @param user_param [in] User defined parameter which is passed when set
964 * to seek data callback
966 * @return This callback function have to return MM_ERROR_NONE.
968 typedef bool (*mm_player_media_stream_seek_data_callback) (MMPlayerStreamType type, unsigned long long offset, void *user_param);
971 * Called to notify the stream changed.
973 * @param user_data [in] The user data passed from the callback registration function
975 * @return This callback function have to return MM_ERROR_NONE.
977 typedef bool (*mm_player_stream_changed_callback) (void *user_param);
980 /*===========================================================================================
982 | GLOBAL FUNCTION PROTOTYPES |
984 ========================================================================================== */
987 * This function creates a player object for playing multimedia contents. \n
988 * The attributes of player are created to get/set some values with application. \n
989 * And, mutex, gstreamer and other resources are initialized at this time. \n
990 * If player is created, the state will become MM_PLAYER_STATE_NULL.
992 * @param player [out] Handle of player
994 * @return This function returns zero on success, or negative value with error code. \n
995 * Please refer 'mm_error.h' to know it in detail.
997 * @post MM_PLAYER_STATE_NULL
998 * @see mm_player_destroy
999 * @remark You can create multiple handles on a context at the same time. \n
1000 * However, player cannot guarantee proper operation because of limitation of resources, \n
1001 * such as audio device or display device.
1005 char *g_err_attr_name = NULL;
1007 if (mm_player_create(&g_player) != MM_ERROR_NONE) {
1008 LOGE("failed to create player\n");
1011 if (mm_player_set_attribute(g_player,
1013 "profile_uri", filename, strlen(filename),
1014 "display_overlay", (void*)&g_win.xid, sizeof(g_win.xid),
1015 NULL) != MM_ERROR_NONE) {
1016 LOGE("failed to set %s attribute\n", g_err_attr_name);
1017 free(g_err_attr_name);
1020 mm_player_set_message_callback(g_player, msg_callback, (void*)g_player);
1023 int mm_player_create(MMHandleType *player);
1026 * This function releases player object and all resources which were created by mm_player_create(). \n
1027 * And, player handle will also be destroyed.
1029 * @param player [in] Handle of player
1031 * @return This function returns zero on success, or negative value with error code.
1032 * @pre Player state may be MM_PLAYER_STATE_NULL. \n
1033 * But, it can be called in any state.
1034 * @post Because handle is released, there is no any state.
1035 * @see mm_player_create
1036 * @remark This method can be called with a valid player handle from any state to \n
1037 * completely shutdown the player operation.
1041 if (mm_player_destroy(g_player) != MM_ERROR_NONE) {
1042 LOGE("failed to destroy player\n");
1046 int mm_player_destroy(MMHandleType player);
1049 * This function register the sound focus using application PID \n
1050 * So, application PID should be set before realizing with mm_player_set_attribute(). \n
1052 * @param player [in] Handle of player
1053 * @param pid [in] application PID
1055 * @return This function returns zero on success, or negative value with error code.
1057 * @pre Player state should be MM_PLAYER_STATE_NULL.
1060 int mm_player_sound_register(MMHandleType player, int pid);
1063 * This function get the application PID that is registered \n
1064 * So, application PID should be set before realizing with mm_player_set_attribute(). \n
1066 * @param player [in] Handle of player
1067 * @param pid [out] application PID
1069 * @return This function returns zero on success, or negative value with error code.
1071 * @pre Player state should be MM_PLAYER_STATE_NULL.
1074 int mm_player_get_client_pid(MMHandleType player, int* pid);
1077 * This function parses uri and makes gstreamer pipeline by uri scheme. \n
1078 * So, uri should be set before realizing with mm_player_set_attribute(). \n
1080 * @param player [in] Handle of player
1082 * @return This function returns zero on success, or negative value with error code.
1084 * @pre Player state should be MM_PLAYER_STATE_NULL.
1085 * @post player state will be MM_PLAYER_STATE_READY.
1086 * @see mm_player_unrealize
1090 if (mm_player_realize(g_player) != MM_ERROR_NONE) {
1091 LOGE("failed to realize player\n");
1095 int mm_player_realize(MMHandleType player);
1098 * This function uninitializes player object. So, resources and allocated memory \n
1099 * will be freed. And, gstreamer pipeline is also destroyed. So, if you want to play \n
1100 * other contents, player should be created again after destruction or realized with new uri.
1102 * @param player [in] Handle of player
1104 * @return This function returns zero on success, or negative value with error code.
1105 * @pre Player state may be MM_PLAYER_STATE_READY to unrealize. \n
1106 * But, it can be called in any state.
1107 * @post Player state will be MM_PLAYER_STATE_NULL.
1108 * @see mm_player_realize
1109 * @remark This method can be called with a valid player handle from any state.
1113 if (mm_player_unrealize(g_player) != MM_ERROR_NONE) {
1114 LOGE("failed to unrealize player\n");
1118 int mm_player_unrealize(MMHandleType player);
1121 * This function is to get current state of player. \n
1122 * Application have to check current state before doing some action.
1124 * @param player [in] Handle of player
1125 * @param state [out] current state of player on success
1127 * @return This function returns zero on success, or negative value with error code.
1129 * @see MMPlayerStateType
1133 if (mm_player_get_state(g_player, &state) != MM_ERROR_NONE) {
1134 LOGE("failed to get state\n");
1138 int mm_player_get_state(MMHandleType player, MMPlayerStateType *state);
1141 * This function is to set relative volume of player. \n
1142 * So, It controls logical volume value. \n
1143 * But, if developer want to change system volume, mm sound api should be used.
1145 * @param player [in] Handle of player
1146 * @param volume [in] Volume factor of each channel
1148 * @return This function returns zero on success, or negative value with error code.
1149 * @see MMPlayerVolumeType, mm_player_get_volume
1150 * @remark The range of factor range is from 0 to 1.0. (1.0 = 100%) And, default value is 1.0.
1153 MMPlayerVolumeType volume;
1156 for (i = 0; i < MM_VOLUME_CHANNEL_NUM; i++)
1157 volume.level[i] = MM_VOLUME_LEVEL_MAX;
1159 if (mm_player_set_volume(g_player, &volume) != MM_ERROR_NONE)
1161 LOGE("failed to set volume\n");
1165 int mm_player_set_volume(MMHandleType player, MMPlayerVolumeType *volume);
1168 * This function is to get current volume factor of player.
1170 * @param player [in] Handle of player.
1171 * @param volume [out] Volume factor of each channel.
1173 * @return This function returns zero on success, or negative value with error code.
1175 * @see MMPlayerVolumeType, mm_player_set_volume
1179 MMPlayerVolumeType volume;
1182 if (mm_player_get_volume(g_player, &volume) != MM_ERROR_NONE)
1184 LOGW("failed to get volume\n");
1187 for (i = 0; i < MM_VOLUME_CHANNEL_NUM; i++)
1188 LOGD("channel[%d] = %d \n", i, volume.level[i]);
1191 int mm_player_get_volume(MMHandleType player, MMPlayerVolumeType *volume);
1194 * This function is to start playing media contents. Demux(parser), codec and related plugins are decided \n
1195 * at this time. And, MM_MESSAGE_BEGIN_OF_STREAM will be posted through callback function registered \n
1196 * by mm_player_set_message_callback().
1198 * @param player [in] Handle of player
1200 * @return This function returns zero on success, or negative value with error code.
1203 * @pre Player state may be MM_PLAYER_STATE_READY.
1204 * @post Player state will be MM_PLAYER_STATE_PLAYING.
1205 * @see mm_player_stop
1209 if (mm_player_start(g_player) != MM_ERROR_NONE)
1211 LOGE("failed to start player\n");
1215 int mm_player_start(MMHandleType player);
1218 * This function is to stop playing media contents and it's different with pause. \n
1219 * If mm_player_start() is called after this, content will be started again from the beginning. \n
1220 * So, it can be used to close current playback.
1222 * @param player [in] Handle of player
1224 * @return This function returns zero on success, or negative value with error code.
1226 * @pre Player state may be MM_PLAYER_STATE_PLAYING.
1227 * @post Player state will be MM_PLAYER_STATE_READY.
1228 * @see mm_player_start
1232 if (mm_player_stop(g_player) != MM_ERROR_NONE)
1234 LOGE("failed to stop player\n");
1238 int mm_player_stop(MMHandleType player);
1241 * This function is to pause playing media contents.
1243 * @param player [in] Handle of player.
1245 * @return This function returns zero on success, or negative value with error code.
1247 * @pre Player state may be MM_PLAYER_STATE_PLAYING.
1248 * @post Player state will be MM_PLAYER_STATE_PAUSED.
1249 * @see mm_player_resume
1253 if (mm_player_pause(g_player) != MM_ERROR_NONE)
1255 LOGE("failed to pause player\n");
1259 int mm_player_pause(MMHandleType player);
1262 * This function is to resume paused media contents.
1264 * @param player [in] Handle of player.
1266 * @return This function returns zero on success, or negative value with error code.
1268 * @pre Player state may be MM_PLAYER_STATE_PAUSED.
1269 * @post Player state will be MM_PLAYER_STATE_PLAYING.
1270 * @see mm_player_pause
1274 if (mm_player_resume(g_player) != MM_ERROR_NONE)
1276 LOGE("failed to resume player\n");
1280 int mm_player_resume(MMHandleType player);
1283 * This function is to set the position for playback. \n
1284 * So, it can be seeked to requested position. \n
1286 * @param player [in] Handle of player
1287 * @param format [in] Format of position.
1288 * @param pos [in] Position for playback
1290 * @return This function returns zero on success, or negative value with error code.
1291 * @see MMPlayerPosFormatType, mm_player_get_position
1292 * @remark the unit of time-based format is millisecond and other case is percent.
1295 int position = 1000; //1sec
1297 if (mm_player_set_position(g_player, MM_PLAYER_POS_FORMAT_TIME, position) != MM_ERROR_NONE)
1299 LOGE("failed to set position\n");
1303 int mm_player_set_position(MMHandleType player, MMPlayerPosFormatType format, int pos);
1306 * This function is to get current position of playback content.
1308 * @param player [in] Handle of player.
1309 * @param format [in] Format of position.
1310 * @param pos [out] contains current position on success or zero in case of failure.
1312 * @return This function returns zero on success, or negative value with errors
1313 * @see MMPlayerPosFormatType, mm_player_set_position
1314 * @remark the unit of time-based format is millisecond and other case is percent.
1320 mm_player_get_position(g_player, MM_PLAYER_POS_FORMAT_TIME, &position);
1322 mm_player_get_attribute(g_player, &g_err_name, "content_duration", &duration, NULL);
1324 LOGD("pos: [%d/%d] msec\n", position, duration);
1327 int mm_player_get_position(MMHandleType player, MMPlayerPosFormatType format, unsigned long *pos);
1330 * This function is to get current buffer position of playback content.
1332 * @param player [in] Handle of player.
1333 * @param format [in] Format of position.
1334 * @param start_pos [out] contains buffer start position on success or zero in case of failure.
1335 * @param stop_pos [out] contains buffer current position on success or zero in case of failure.
1337 * @return This function returns zero on success, or negative value with errors
1338 * @see MMPlayerPosFormatType, mm_player_set_position
1339 * @remark the unit of time-based format is millisecond and other case is percent.
1342 int start_pos = 0, stop_pos = 0;
1344 mm_player_get_buffer_position(g_player, MM_PLAYER_POS_FORMAT_PERCENT, &start_pos, &stop_pos );
1346 LOGD("buffer position: [%d] ~ [%d] \%\n", start_pos, stop_pos );
1349 int mm_player_get_buffer_position(MMHandleType player, MMPlayerPosFormatType format, unsigned long *start_pos, unsigned long *stop_pos);
1352 * This function is to activate the section repeat. If it's set, selected section will be played \n
1353 * continually before deactivating it by mm_player_deactivate_section_repeat(). \n
1354 * The unit for setting is millisecond.
1356 * @param player [in] Handle of player.
1357 * @param start_pos [in] start position.
1358 * @param end_pos [in] end position.
1360 * @return This function returns zero on success, or negative value with error code.
1361 * @see mm_player_deactivate_section_repeat
1366 int endtime = 4000; //msec
1368 mm_player_get_position(g_player, MM_PLAYER_POS_FORMAT_TIME, &position);
1370 mm_player_activate_section_repeat(g_player, position, position+endtime);
1373 int mm_player_activate_section_repeat(MMHandleType player, int start_pos, int end_pos);
1376 * This function is to deactivate the section repeat.
1378 * @param player [in] Handle of player.
1380 * @return This function returns zero on success, or negative value with error code.
1381 * @see mm_player_activate_section_repeat
1385 if ( mm_player_deactivate_section_repeat(g_player) != MM_ERROR_NONE)
1387 LOGW("failed to deactivate section repeat\n");
1391 int mm_player_deactivate_section_repeat(MMHandleType player);
1394 * This function sets callback function for receiving messages from player.
1395 * So, player can notify warning, error and normal cases to application.
1397 * @param player [in] Handle of player.
1398 * @param callback [in] Message callback function.
1399 * @param user_param [in] User parameter which is passed to callback function.
1401 * @return This function returns zero on success, or negative value with error code.
1402 * @see MMMessageCallback
1406 int msg_callback(int message, MMMessageParamType *param, void *user_param)
1410 case MM_MESSAGE_ERROR:
1414 case MM_MESSAGE_END_OF_STREAM:
1418 case MM_MESSAGE_STATE_CHANGED:
1422 case MM_MESSAGE_BEGIN_OF_STREAM:
1432 mm_player_set_message_callback(g_player, msg_callback, (void*)g_player);
1435 int mm_player_set_message_callback(MMHandleType player, MMMessageCallback callback, void *user_param);
1438 * This function set callback function for receiving audio stream from player. \n
1439 * So, application can get raw audio data and modify it. \n
1440 * But, if callback don't return or holds it for long time, performance can be deteriorated. \n
1441 * It's only supported when audio stream is included in file. \n
1442 * So, if there is video stream or DRM content, it can't be used.
1444 * @param player [in] Handle of player.
1445 * @param callback [in] Audio stream callback function.
1446 * @param user_param [in] User parameter.
1448 * @return This function returns zero on success, or negative value with error
1450 * @see mm_player_audio_stream_callback
1451 * @remark It can be used for audio playback only.
1454 bool audio_callback(void *stream, int stream_size, void *user_param)
1456 LOGD("audio stream callback\n");
1459 mm_player_set_audio_stream_callback(g_player, audio_callback, NULL);
1462 int mm_player_set_audio_stream_callback(MMHandleType player, mm_player_audio_stream_callback callback, void *user_param);
1465 * This function is to mute volume of player
1467 * @param player [in] Handle of player
1468 * @param mute [in] Mute(1) or not mute(0)
1470 * @return This function returns zero on success, or negative value with error code
1471 * @see mm_player_get_mute
1475 if (mm_player_set_mute(g_player, TRUE) != MM_ERROR_NONE)
1477 LOGW("failed to set mute\n");
1481 int mm_player_set_mute(MMHandleType player, int mute);
1484 * This function is to get mute value of player
1486 * @param player [in] Handle of player
1487 * @param mute [out] Sound is muted
1489 * @return This function returns zero on success, or negative value with error code
1490 * @see mm_player_set_mute
1496 if (mm_player_get_mute(g_player, &mute) != MM_ERROR_NONE)
1498 LOGW("failed to get mute\n");
1501 LOGD("mute status:%d\n", mute);
1504 int mm_player_get_mute(MMHandleType player, int *mute);
1507 * This function is to adjust subtitle postion. So, subtitle can show at the adjusted position. \n
1508 * If pos is negative, subtitle will be displayed previous time, the other hand forward time. \n
1510 * @param player [in] Handle of player
1511 * @param pos [in] postion to be adjusted
1513 * @return This function returns zero on success, or negative value with error
1515 * @see mm_player_adjust_subtitle_position
1522 if (mm_player_adjust_subtitle_position(g_player, MM_PLAYER_POS_FORMAT_TIME, pos) != MM_ERROR_NONE)
1524 LOGW("failed to adjust subtitle postion.\n");
1529 int mm_player_adjust_subtitle_position(MMHandleType player, MMPlayerPosFormatType format, int pos);
1532 * This function is to set the offset in timestamps of video so as to bring the a/v sync
1533 * @param player Handle of player
1534 * @param offset offset to be set in milliseconds(can be positive or negative both)
1535 * postive offset to make video lag
1536 * negative offset to make video lead
1538 int mm_player_adjust_video_position(MMHandleType player, int offset);
1540 * This function is to set subtitle silent status. So, subtitle can show or hide during playback \n
1541 * by this value. But, one subtitle file should be set with "subtitle_uri" attribute before calling mm_player_realize(); \n
1542 * Player FW parses subtitle file and send text data including timestamp to application \n
1543 * through message callback with MM_MESSAGE_UPDATE_SUBTITLE will be. \n
1544 * So, application have to render it. And, subtitle can be supported only in a seprate file. \n
1545 * So, it's not supported for embedded case.
1547 * @param player [in] Handle of player
1548 * @param silent [in] silent(integer value except 0) or not silent(0)
1550 * @return This function returns zero on success, or negative value with error
1552 * @see mm_player_get_subtitle_silent, MM_MESSAGE_UPDATE_SUBTITLE
1556 mm_player_set_attribute(g_player,
1558 "subtitle_uri", g_subtitle_uri, strlen(g_subtitle_uri),
1562 if (mm_player_set_subtitle_silent(g_player, TRUE) != MM_ERROR_NONE)
1564 LOGW("failed to set subtitle silent\n");
1568 int mm_player_set_subtitle_silent(MMHandleType player, int silent);
1571 * This function is to get silent status of subtitle.
1573 * @param player [in] Handle of player
1574 * @param silent [out] subtitle silent property
1576 * @return This function returns zero on success, or negative value with error
1578 * @see mm_player_set_subtitle_silent, MM_MESSAGE_UPDATE_SUBTITLE
1584 if (mm_player_get_subtitle_silent(g_player, &silent) != MM_ERROR_NONE)
1586 LOGW("failed to set subtitle silent\n");
1590 int mm_player_get_subtitle_silent(MMHandleType player, int *silent);
1593 * This function is to set attributes into player. Multiple attributes can be set simultaneously. \n
1594 * If one of attribute fails, this function will stop at the point and let you know the name which is failed. \n
1596 * @param player [in] Handle of player.
1597 * @param err_attr_name [out] Name of attribute which is failed to set
1598 * @param first_attribute_name [in] Name of the first attribute to set
1599 * @param ... [in] Value for the first attribute, followed optionally by more name/value pairs, terminated by NULL.
1600 * But, in the case of data or string type, it should be name/value/size.
1602 * @return This function returns zero on success, or negative value with error code.
1604 * @see mm_player_get_attribute
1605 * @remark This function must be terminated by NULL argument.
1606 * And, if this function is failed, err_attr_name param must be free.
1609 char *g_err_attr_name = NULL;
1611 if (mm_player_set_attribute(g_player,
1613 "profile_uri", filename, strlen(filename),
1614 "profile_play_count", count,
1615 NULL) != MM_ERROR_NONE) {
1616 LOGW("failed to set %s attribute\n", g_err_attr_name);
1617 free(g_err_attr_name);
1622 int mm_player_set_attribute(MMHandleType player, char **err_attr_name, const char *first_attribute_name, ...)G_GNUC_NULL_TERMINATED;
1625 * This function is to get attributes from player. Multiple attributes can be got simultaneously.
1627 * @param player [in] Handle of player.
1628 * @param err_attr_name [out] Name of attribute which is failed to get
1629 * @param first_attribute_name [in] Name of the first attribute to get
1630 * @param ... [out] Value for the first attribute, followed optionally by more name/value pairs, terminated by NULL.
1631 * But, in the case of data or string type, it should be name/value/size.
1633 * @return This function returns zero on success, or negative value with error
1635 * @see mm_player_set_attribute
1636 * @remark This function must be terminated by NULL argument.
1637 * And, if this function is failed, err_attr_name param must be free.
1640 char *g_err_attr_name = NULL;
1642 if (mm_player_get_attribute(g_player, &g_err_attr_name, "content_duration", &duration, NULL) != MM_ERROR_NONE) {
1643 LOGW("failed to set %s attribute\n", g_err_attr_name);
1644 free(g_err_attr_name);
1648 int mm_player_get_attribute(MMHandleType player, char **err_attr_name, const char *first_attribute_name, ...)G_GNUC_NULL_TERMINATED;
1651 * This function is to get detail information of attribute.
1653 * @param player [in] Handle of player.
1654 * @param attribute_name [in] Name of the attribute to get
1655 * @param info [out] Attribute infomation
1657 * @return This function returns zero on success, or negative value with error
1660 * @see mm_player_set_attribute, mm_player_get_attribute
1664 if (mm_player_get_attribute_info(g_player, "display_method", &method_info) != MM_ERROR_NONE) {
1665 LOGW("failed to get info\n");
1668 LOGD("type:%d \n", method_info.type); //int, double..
1669 LOGD("flag:%d \n", method_info.flag); //readable, writable..
1670 LOGD("validity type:%d \n", method_info.validity_type); //range, array..
1672 if (method_info. validity_type == MM_PLAYER_ATTRS_VALID_TYPE_INT_RANGE) {
1673 LOGD("range min:%d\n", method_info.int_range.min);
1674 LOGD("range max:%d\n", method_info.int_range.max);
1678 int mm_player_get_attribute_info(MMHandleType player, const char *attribute_name, MMPlayerAttrsInfo *info);
1681 * This function is to get download position and total size of progressive download
1683 * @param player [in] Handle of player.
1684 * @param current_pos [in] Download position currently (bytes)
1685 * @param total_size [in] Total size of file (bytes)
1687 * @return This function returns zero on success, or negative value with error code.
1690 guint64 current_pos = 0LLU;
1691 guint64 total_size = 0LLU;
1693 if (mm_player_get_pd_status(g_player, ¤t_pos, &total_size, NULL) != MM_ERROR_NONE)
1695 LOGD("current download pos = %llu, total size = %llu\n", current_pos, total_size);
1699 int mm_player_get_pd_status(MMHandleType player, guint64 *current_pos, guint64 *total_size);
1702 * This function sets callback function for receiving messages of PD downloader.
1704 * @param player [in] Handle of player.
1705 * @param callback [in] Message callback function.
1706 * @param user_param [in] User parameter which is passed to callback function.
1708 * @return This function returns zero on success, or negative value with error code.
1713 int msg_callback(int message, MMMessageParamType *param, void *user_param)
1717 case MM_MESSAGE_PD_DOWNLOADER_START:
1718 LOGD("Progressive download is started...\n");
1720 case MM_MESSAGE_PD_DOWNLOADER_END:
1721 LOGD("Progressive download is ended...\n");
1729 mm_player_set_pd_message_callback(g_player, msg_callback, NULL);
1732 int mm_player_set_pd_message_callback(MMHandleType player, MMMessageCallback callback, void *user_param);
1735 * This function is to get the track count
1737 * @param player [in] handle of player.
1738 * @param track [in] type of the track type
1739 * @param info [out] the count of the track
1741 * @return This function returns zero on success, or negative value with error
1746 gint audio_count = 0;
1748 if (mm_player_get_track_count(g_player, MM_PLAYER_TRACK_TYPE_AUDIO, &audio_count) != MM_ERROR_NONE) {
1749 LOGW("failed to get audio track count\n");
1752 LOGD("audio track count : %d \n", audio_count);
1755 int mm_player_get_track_count(MMHandleType player, MMPlayerTrackType type, int *count);
1758 * This function is to select the track
1760 * @param player [in] handle of player.
1761 * @param type [in] type of the track type
1762 * @param index [in] the index of the track
1764 * @return This function returns zero on success, or negative value with error
1767 int mm_player_select_track(MMHandleType player, MMPlayerTrackType type, int index);
1770 * This function is to add the track when user want multi subtitle
1772 * @param player [in] handle of player.
1773 * @param index [in] the index of the track
1775 * @return This function returns zero on success, or negative value with error
1778 int mm_player_track_add_subtitle_language(MMHandleType player, int index);
1781 * This function is to remove the track when user want multi subtitle
1783 * @param player [in] handle of player.
1784 * @param index [in] the index of the track
1786 * @return This function returns zero on success, or negative value with error
1789 int mm_player_track_remove_subtitle_language(MMHandleType player, int index);
1792 * This function is to notify which sutitle track is in use
1794 * @param player [in] handle of player.
1795 * @param callback [in] callback function to register
1796 * @param user_data [in] user data to be passed to the callback function
1798 * @return This function returns zero on success, or negative value with error
1801 int mm_player_track_foreach_selected_subtitle_language(MMHandleType player, mm_player_track_selected_subtitle_language_callback callback, void *user_param);
1804 * This function is to get the track language
1806 * @param player [in] handle of player.
1807 * @param type [in] type of the track type
1808 * @param index [in] the index of the track
1809 * @param code [out] language code in ISO 639-1(string)
1811 * @return This function returns zero on success, or negative value with error
1814 int mm_player_get_track_language_code(MMHandleType player, MMPlayerTrackType type, int index, char **code);
1817 * This function is to get the current running track
1819 * @param player [in] handle of player.
1820 * @param type [in] type of the track type
1821 * @param index [out] the index of the track
1823 * @return This function returns zero on success, or negative value with error
1827 int mm_player_get_current_track(MMHandleType hplayer, MMPlayerTrackType type, int *index);
1830 * This function is to set the subtitle path
1832 * @param player [in] handle of player
1833 * @param path [in] subtitle path
1835 * @return This function returns zero on success, or negative value with error code.
1837 int mm_player_set_external_subtitle_path(MMHandleType player, const char* path);
1840 * This function is to set the clock which is from master player
1842 * @param player [in] handle of player
1843 * @param clock [in] clock of master player
1844 * @param clock_delta [in] clock difference between master and slave
1845 * @param video_time [in] current playing position
1846 * @param media_clock [in] media clock information
1847 * @param audio_time [in] audio timestamp information
1848 * @return This function returns zero on success, or negative value with error code.
1850 int mm_player_set_video_share_master_clock(MMHandleType player, long long clock, long long clock_delta, long long video_time, long long media_clock, long long audio_time);
1852 * This function is to get the master clock
1854 * @param player [in] handle of player
1855 * @param video_time [out] current playing position
1856 * @param media_clock [out] media clock information
1857 * @param audio_time [out] audio timestamp information
1858 * @return This function returns zero on success, or negative value with error code.
1860 int mm_player_get_video_share_master_clock(MMHandleType player, long long *video_time, long long *media_clock, long long *audio_time);
1863 * This function is to get the content angle
1865 * @param player [in] handle of player
1866 * @param angle [out] orignal angle from content
1867 * @return This function returns zero on success, or negative value with error code.
1869 int mm_player_get_video_rotate_angle(MMHandleType player, int *angle);
1872 * This function is to set download mode of video hub
1874 * @param player [in] handle of player
1875 * @param mode [in] download mode
1876 * @return This function returns zero on success, or negative value with error code.
1878 int mm_player_set_video_hub_download_mode(MMHandleType player, bool mode);
1881 * This function is to set using sync handler.
1883 * @param player [in] handle of player
1884 * @param enable [in] enable/disable
1885 * @return This function returns zero on success, or negative value with error code.
1887 int mm_player_enable_sync_handler(MMHandleType player, bool enable);
1890 * This function is to set uri.
1892 * @param player [in] handle of player
1893 * @param uri [in] uri
1894 * @return This function returns zero on success, or negative value with error code.
1896 int mm_player_set_uri(MMHandleType player, const char *uri);
1899 * This function is to set next uri.
1901 * @param player [in] handle of player
1902 * @param uri [in] uri
1903 * @return This function returns zero on success, or negative value with error code.
1905 int mm_player_set_next_uri(MMHandleType player, const char *uri);
1908 * This function is to get next uri.
1910 * @param player [in] handle of player
1911 * @param uri [out] uri
1912 * @return This function returns zero on success, or negative value with error code.
1914 int mm_player_get_next_uri(MMHandleType player, char **uri);
1917 * This function is to decrease reference count of internal buffer.
1919 * @param buffer [in] video callback internal buffer
1922 void mm_player_video_stream_internal_buffer_unref(void *buffer);
1924 /**mm_player_submit_packet
1925 * This function is to submit buffer to appsrc. \n
1926 * @param player [in] Handle of player.
1927 * @param buf [in] buffer to be submit in appsrc in external feeder case.
1928 * @param len [in] length of buffer.
1929 * @param pts [in] timestamp of buffer.
1930 * @param streamtype [in] stream type of buffer.
1931 * @return This function returns zero on success, or negative value with error code.
1933 int mm_player_submit_packet(MMHandleType player, media_packet_h packet);
1935 /**mm_player_set_video_info
1936 * This function is to set caps of src pad of video appsrc in external feeder case. \n
1937 * @param player [in] Handle of player.
1938 * @param media_format_h [in] Video stream info.
1939 * @return This function returns zero on success, or negative value with error code.
1941 int mm_player_set_video_info(MMHandleType player, media_format_h format);
1943 /**mm_player_set_audio_info
1944 * This function is to set caps of src pad of Audio appsrc in external feeder case. \n
1945 * @param player [in] Handle of player.
1946 * @param media_format_h [in] Audio stream info.
1947 * @return This function returns zero on success, or negative value with error code.
1949 int mm_player_set_audio_info(MMHandleType player, media_format_h format);
1951 /**mm_player_set_subtitle_info
1952 * This function is to set caps of src pad of subtitle appsrc in external feeder case. \n
1953 * @param player [in] Handle of player.
1954 * @param subtitle_stream_info [in] Subtitle stream info.
1955 * @return This function returns zero on success, or negative value with error code.
1957 int mm_player_set_subtitle_info(MMHandleType player, MMPlayerSubtitleStreamInfo *info);
1960 * This function set callback function for receiving need or enough data message from player.
1962 * @param player [in] Handle of player.
1963 * @param type [in] stream type
1964 * @param callback [in] data callback function for stream type.
1965 * @param user_param [in] User parameter.
1967 * @return This function returns zero on success, or negative value with error
1970 int mm_player_set_media_stream_buffer_status_callback(MMHandleType player, MMPlayerStreamType type, mm_player_media_stream_buffer_status_callback callback, void * user_param);
1973 * This function set callback function for receiving seek data message from player.
1975 * @param player [in] Handle of player.
1976 * @param type [in] stream type
1977 * @param callback [in] Seek data callback function for stream type.
1978 * @param user_param [in] User parameter.
1980 * @return This function returns zero on success, or negative value with error
1983 int mm_player_set_media_stream_seek_data_callback(MMHandleType player, MMPlayerStreamType type, mm_player_media_stream_seek_data_callback callback, void * user_param);
1986 * This function is to set max size of buffer(appsrc).
1988 * @param player [in] Handle of player.
1989 * @param type [in] stream type
1990 * @param max_size [in] max bytes of buffer.
1992 * @return This function returns zero on success, or negative value with error
1995 int mm_player_set_media_stream_buffer_max_size(MMHandleType player, MMPlayerStreamType type, unsigned long long max_size);
1998 * This function is to get max size of buffer(appsrc).
2000 * @param player [in] Handle of player.
2001 * @param type [in] stream type
2002 * @param max_size [out] max bytes of buffer.
2004 * @return This function returns zero on success, or negative value with error
2007 int mm_player_get_media_stream_buffer_max_size(MMHandleType player, MMPlayerStreamType type, unsigned long long *max_size);
2010 * This function is to set min percent of buffer(appsrc).
2012 * @param player [in] Handle of player.
2013 * @param type [in] stream type
2014 * @param min_percent [in] min percent of buffer.
2016 * @return This function returns zero on success, or negative value with error
2019 int mm_player_set_media_stream_buffer_min_percent(MMHandleType player, MMPlayerStreamType type, unsigned min_percent);
2022 * This function is to get min percent of buffer(appsrc).
2024 * @param player [in] Handle of player.
2025 * @param type [in] stream type
2026 * @param min_percent [out] min percent of buffer.
2028 * @return This function returns zero on success, or negative value with error
2031 int mm_player_get_media_stream_buffer_min_percent(MMHandleType player, MMPlayerStreamType type, unsigned int *min_percent);
2034 * This function set callback function for changing audio stream from player. \n
2035 * It's only supported when audio stream is included in file. \n
2037 * @param player [in] Handle of player.
2038 * @param callback [in] Audio stream changed callback function.
2039 * @param user_param [in] User parameter.
2041 * @return This function returns zero on success, or negative value with error
2043 * @see mm_player_stream_changed_callback
2046 int mm_player_set_audio_stream_changed_callback(MMHandleType player, mm_player_stream_changed_callback callback, void *user_param);
2049 * This function set callback function for changing video stream from player. \n
2050 * It's only supported when video stream is included in file. \n
2052 * @param player [in] Handle of player.
2053 * @param callback [in] Video stream changed callback function.
2054 * @param user_param [in] User parameter.
2056 * @return This function returns zero on success, or negative value with error
2058 * @see mm_player_stream_changed_callback
2060 int mm_player_set_video_stream_changed_callback(MMHandleType player, mm_player_stream_changed_callback callback, void *user_param);
2063 * This function is to get timeout value according to the content type for muse. \n
2064 * It's only supported when video stream is included in file. \n
2066 * @param player [in] Handle of player.
2067 * @param timeout [out] timeout value (sec).
2069 * @return This function returns zero on success, or negative value with error
2073 int mm_player_get_timeout(MMHandleType player, int *timeout);
2076 * This function is to get the number of video output buffers. \n
2077 * It's only supported when video stream is included in file. \n
2079 * @param player [in] Handle of player.
2080 * @param num [out] num of buffers.
2081 * @param extra_num [out] extra num of buffers.
2083 * @return This function returns zero on success, or negative value with error
2087 int mm_player_get_num_of_video_out_buffers(MMHandleType player, int *num, int *extra_num);
2090 * This function is to set the dynamic resolution information. \n
2091 * It's only supported when video stream is included in file. \n
2093 * @param player [in] Handle of player.
2094 * @param drc [in] dynamic resolution info of media stream data
2096 * @return This function returns zero on success, or negative value with error
2100 int mm_player_set_media_stream_dynamic_resolution(MMHandleType player, bool drc);
2103 * This function is to release the video stream bo to reuse. \n
2104 * It's only supported when sw codec is used to decode video stream. \n
2106 * @param player [in] Handle of player.
2107 * @param bo [in] bo address to be released
2109 * @return This function returns zero on success, or negative value with error
2113 int mm_player_release_video_stream_bo(MMHandleType player, void* bo);
2116 * This function is to set http file buffering path
2118 * @param player [in] handle of player
2119 * @param file_path [in] file path
2120 * @return This function returns zero on success, or negative value with error code.
2122 int mm_player_set_file_buffering_path(MMHandleType player, const char *file_path);
2125 * This function is to set sound stream info
2127 int mm_player_set_sound_stream_info(MMHandleType player, char *stream_type, int stream_index);
2130 * This function is to manage the playback according to the external storage state
2132 int mm_player_manage_external_storage_state(MMHandleType player, int state);
2135 * These functions are to set/get the max variant of HAS
2137 int mm_player_get_adaptive_variant_info(MMHandleType player, int *num, char **var_info);
2138 int mm_player_set_max_adaptive_variant_limit(MMHandleType player, int bandwidth, int width, int height);
2139 int mm_player_get_max_adaptive_variant_limit(MMHandleType player, int *bandwidth, int *width, int *height);
2142 * These functions are to set/get the audio only mode
2144 int mm_player_set_audio_only(MMHandleType player, bool audio_only);
2145 int mm_player_get_audio_only(MMHandleType player, bool *audio_only);
2148 * These functions are to set/get the streaming bufferint time
2150 int mm_player_set_streaming_buffering_time(MMHandleType player, int buffer_ms, int rebuffer_ms);
2151 int mm_player_get_streaming_buffering_time(MMHandleType player, int *buffer_ms, int *rebuffer_ms);
2154 * These functions are to display the 360 video content
2156 int mm_player_360_set_enable(MMHandleType player, bool enable);
2157 int mm_player_360_is_enabled(MMHandleType player, bool *enabled);
2159 int mm_player_360_set_direction_of_view(MMHandleType player, float yaw, float pitch);
2160 int mm_player_360_get_direction_of_view(MMHandleType player, float *yaw, float *pitch);
2162 int mm_player_360_set_zoom(MMHandleType player, float level);
2163 int mm_player_360_get_zoom(MMHandleType player, float *level);
2165 int mm_player_360_set_field_of_view(MMHandleType player, int horizontal_degrees, int vertical_degrees);
2166 int mm_player_360_get_field_of_view(MMHandleType player, int *horizontal_degrees, int *vertical_degrees);
2176 #endif /* __MM_PLAYER_H__ */