[0.6.36] unrealize player if the external storage is removed
[platform/core/multimedia/libmm-player.git] / src / include / mm_player_priv.h
1 /*
2  * libmm-player
3  *
4  * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
5  *
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>
8  *
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
12  *
13  * http://www.apache.org/licenses/LICENSE-2.0
14  *
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.
20  *
21  */
22
23 #ifndef __MM_PLAYER_PRIV_H__
24 #define __MM_PLAYER_PRIV_H__
25
26 /*===========================================================================================
27 |                                                                                                                                                                                       |
28 |  INCLUDE FILES                                                                                                                                                        |
29 |                                                                                                                                                                               |
30 ========================================================================================== */
31 #include <glib.h>
32 #include <gst/gst.h>
33 #include <mm_attrs.h>
34 #include <math.h>
35 #include <sys/stat.h>
36 #include <unistd.h>
37 #include <stdlib.h>
38 #include <stdio.h>
39 #include <tbm_bufmgr.h>
40 #include <storage.h>
41 #include "mm_player.h"
42 #include "mm_player_internal.h"
43 #include "mm_player_audioeffect.h"
44 #include "mm_message.h"
45 #include "mm_player_ini.h"
46 #include "mm_player_resource.h"
47 #include "mm_player_sound_focus.h"
48 #include "mm_player_pd.h"
49 #include "mm_player_streaming.h"
50
51 /*===========================================================================================
52 |                                                                                                                                                                                       |
53 |  GLOBAL DEFINITIONS AND DECLARATIONS FOR MODULE                                                                                       |
54 |                                                                                                                                                                                       |
55 ========================================================================================== */
56
57 /*---------------------------------------------------------------------------
58 |    GLOBAL #defines:                                                                                                           |
59 ---------------------------------------------------------------------------*/
60 #define MM_PLAYER_IMGB_MPLANE_MAX       4
61 #define MM_PLAYER_STREAM_COUNT_MAX      3
62
63 #define MM_PLAYER_CAST(x_player)                ((mm_player_t *)(x_player))
64 /**
65  * @x_player: MMHandleType of player
66  *
67  * Get the PD downloader of this player.
68  */
69 #define MM_PLAYER_GET_PD(x_player)      (MM_PLAYER_CAST(x_player)->pd_downloader)
70 /**
71  * @x_player: MMHandleType of player
72  *
73  * Get the attributes handle of this player.
74  */
75 #define MM_PLAYER_GET_ATTRS(x_player)   (MM_PLAYER_CAST(x_player)->attrs)
76
77 #define ROTATION_USING_SINK     0
78 #define ROTATION_USING_CUSTOM   1
79 #define ROTATION_USING_FLIP     2
80
81 /*---------------------------------------------------------------------------
82 |    GLOBAL CONSTANT DEFINITIONS:                                                                                       |
83 ---------------------------------------------------------------------------*/
84 enum latency_mode {
85         AUDIO_LATENCY_MODE_LOW = 0,     /**< Low audio latency mode */
86         AUDIO_LATENCY_MODE_MID,         /**< Middle audio latency mode */
87         AUDIO_LATENCY_MODE_HIGH,        /**< High audio latency mode */
88 };
89
90 enum tag_info {
91         TAG_AUDIO_CODEC = 0x0001,
92         TAG_VIDEO_CODEC = 0x0002,
93         TAG_ARTIST              = 0x0004,
94         TAG_TITLE               = 0x0008,
95         TAG_ALBUM               = 0x0010,
96         TAG_GENRE               = 0x0020,
97         TAG_COPYRIGHT   = 0x0040,
98         TAG_DATE                = 0x0080,
99         TAG_DESCRIPTION = 0x0100,
100         TAG_TRACK_NUMBER = 0x0200
101 };
102
103 enum content_attr_flag {
104         ATTR_MISSING_ONLY = 0x0001,
105         ATTR_DURATION = 0x0002,
106         ATTR_AUDIO  = 0x0004,
107         ATTR_VIDEO = 0x0008,
108         ATTR_BITRATE = 0x0010,
109         ATTR_ALL = 0x0020,
110 };
111
112 /* async mode makes trouble. alsasink sometimes fails to pause. */
113 enum alassink_sync {
114         ALSASINK_SYNC,
115         ALSASINK_ASYNC
116 };
117
118 /**
119  * Enumerations of Player Uri type
120  */
121 enum MMPlayerUriType {
122         MM_PLAYER_URI_TYPE_NONE,                        /**< Player URI type None */
123         MM_PLAYER_URI_TYPE_URL_RTSP,            /**< Player URI type RTSP */
124         MM_PLAYER_URI_TYPE_URL_WFD,                     /**< Player URI type WFD */
125         MM_PLAYER_URI_TYPE_URL_HTTP,            /**< Player URI type HTTP */
126         MM_PLAYER_URI_TYPE_URL_MMS,                     /**< Player URI type MMS */
127         MM_PLAYER_URI_TYPE_MEM,                         /**< Player URI type Mem */
128         MM_PLAYER_URI_TYPE_FILE,                        /**< Player URI type File */
129         MM_PLAYER_URI_TYPE_URL,                         /**< Player URI type URL */
130         MM_PLAYER_URI_TYPE_MS_BUFF,                     /**< Player URI type Media Stream Buffer */
131         MM_PLAYER_URI_TYPE_HLS,                         /**< Player URI type http live streaming */
132         MM_PLAYER_URI_TYPE_SS,                          /**< Player URI type Smooth streaming */
133         MM_PLAYER_URI_TYPE_DASH,                        /**< Player URI type Mpeg Dash */
134         MM_PLAYER_URI_TYPE_NO_PERMISSION,       /**< Player URI type No Permission  */
135         MM_PLAYER_URI_TYPE_TEMP,                        /**< Player URI type Temp */
136 };
137
138 typedef enum _MissingCodec {
139         MISSING_PLUGIN_NONE = 0x00,
140         MISSING_PLUGIN_AUDIO = 0x01,
141         MISSING_PLUGIN_VIDEO = 0x02
142 } MissingCodec;
143
144
145 typedef enum _FoundCodec {
146         FOUND_PLUGIN_NONE = 0x00,
147         FOUND_PLUGIN_AUDIO = 0x01,
148         FOUND_PLUGIN_VIDEO = 0x02
149 } FoundCodec;
150
151 /**
152  * Enumeration of signal type
153  */
154 typedef enum {
155         MM_PLAYER_SIGNAL_TYPE_AUTOPLUG = 0,
156         MM_PLAYER_SIGNAL_TYPE_VIDEOBIN,
157         MM_PLAYER_SIGNAL_TYPE_AUDIOBIN,
158         MM_PLAYER_SIGNAL_TYPE_TEXTBIN,
159         MM_PLAYER_SIGNAL_TYPE_OTHERS,
160         MM_PLAYER_SIGNAL_TYPE_ALL,
161         MM_PLAYER_SIGNAL_TYPE_MAX = MM_PLAYER_SIGNAL_TYPE_ALL,
162 } MMPlayerSignalType;
163
164 /* main pipeline's element id */
165 enum MainElementID {
166         MMPLAYER_M_PIPE = 0, /* NOTE : MMPLAYER_M_PIPE should be zero */
167         MMPLAYER_M_SRC,
168         MMPLAYER_M_2ND_SRC,     /* 2nd Source Element for es buff src */
169         MMPLAYER_M_SUBSRC,
170
171         /* it could be a decodebin or could be a typefind. depends on player ini */
172         MMPLAYER_M_TYPEFIND,
173         MMPLAYER_M_AUTOPLUG,
174
175         MMPLAYER_M_AUTOPLUG_V_DEC,
176         MMPLAYER_M_AUTOPLUG_A_DEC,
177
178         /* NOTE : we need two fakesink to autoplug without decodebin.
179          * first one will hold whole pipeline state. and second one will hold state of
180          * a sink-decodebin for an elementary stream. no metter if there's more then one
181          * elementary streams because MSL reuse it.
182          */
183         MMPLAYER_M_SRC_FAKESINK,
184         MMPLAYER_M_SRC_2ND_FAKESINK,
185
186         /* streaming plugin */
187         MMPLAYER_M_MUXED_S_BUFFER,
188         MMPLAYER_M_DEMUXED_S_BUFFER,
189         MMPLAYER_M_ID3DEMUX,
190
191         /* es buff src queue */
192         MMPLAYER_M_V_BUFFER,
193         MMPLAYER_M_A_BUFFER,
194         MMPLAYER_M_S_BUFFER,
195
196         /* FIXIT : if there's really no usage for following IDs. remove it */
197         MMPLAYER_M_DEC1,
198         MMPLAYER_M_DEC2,
199         MMPLAYER_M_Q1,
200         MMPLAYER_M_Q2,
201         MMPLAYER_M_DEMUX,
202         MMPLAYER_M_SUBPARSE,
203         MMPLAYER_M_DEMUX_EX,
204         MMPLAYER_M_V_INPUT_SELECTOR,    // video input_select
205         MMPLAYER_M_A_INPUT_SELECTOR,    // audio input_select
206         MMPLAYER_M_T_INPUT_SELECTOR,    // text input_select
207         MMPLAYER_M_A_TEE,
208         MMPLAYER_M_A_Q1,
209         MMPLAYER_M_A_Q2,
210         MMPLAYER_M_A_CONV,
211         MMPLAYER_M_A_FILTER,
212         MMPLAYER_M_A_DEINTERLEAVE,
213         MMPLAYER_M_A_SELECTOR,
214         MMPLAYER_M_V_SINK,
215         MMPLAYER_M_V_CONV,
216         MMPLAYER_M_NUM
217 };
218
219 /* audio pipeline's element id */
220 enum AudioElementID {
221         MMPLAYER_A_BIN = 0, /* NOTE : MMPLAYER_A_BIN should be zero */
222         MMPLAYER_A_TP,
223         MMPLAYER_A_CONV,
224         MMPLAYER_A_VOL,
225         MMPLAYER_A_FILTER,
226         MMPLAYER_A_FILTER_SEC,
227         MMPLAYER_A_VSP,
228         MMPLAYER_A_CAPS_DEFAULT,
229         MMPLAYER_A_SINK,
230         MMPLAYER_A_RESAMPLER,
231         MMPLAYER_A_DEINTERLEAVE,
232         MMPLAYER_A_NUM
233 };
234
235 /* video pipeline's element id */
236 enum VideoElementID {
237         MMPLAYER_V_BIN = 0, /* NOTE : MMPLAYER_V_BIN should be zero */
238         MMPLAYER_V_FLIP,
239         MMPLAYER_V_CONV,
240         MMPLAYER_V_SCALE,
241         MMPLAYER_V_CAPS,
242         MMPLAYER_V_SINK,
243         MMPLAYER_V_NUM
244 };
245
246 /* text pipeline's element id */
247 enum TextElementID {
248         MMPLAYER_T_BIN = 0, /* NOTE : MMPLAYER_V_BIN should be zero */
249         MMPLAYER_T_QUEUE,
250         MMPLAYER_T_VIDEO_QUEUE,
251         MMPLAYER_T_VIDEO_CONVERTER,
252         MMPLAYER_T_OVERLAY,
253         MMPLAYER_T_FAKE_SINK,
254         MMPLAYER_T_IDENTITY,
255         MMPLAYER_T_NUM
256 };
257
258 /* midi main pipeline's element id */
259 enum MidiElementID {
260         MMPLAYER_MIDI_PIPE,
261         MMPLAYER_MIDI_PLAYER,
262         MMPLAYER_MIDI_NUM
263 };
264
265 enum PlayerCommandState {
266         MMPLAYER_COMMAND_NONE,
267         MMPLAYER_COMMAND_CREATE,
268         MMPLAYER_COMMAND_DESTROY,
269         MMPLAYER_COMMAND_UNREALIZE,
270         MMPLAYER_COMMAND_START,
271         MMPLAYER_COMMAND_REALIZE,
272         MMPLAYER_COMMAND_STOP,
273         MMPLAYER_COMMAND_PAUSE,
274         MMPLAYER_COMMAND_RESUME,
275         MMPLAYER_COMMAND_NUM
276 };
277
278 /* Note : StreamingSrcError is error enum for streaming source which post error message
279  *      using custom message made by itself. The enum value must start with zero,
280  *      because the streaming source(secrtspsrc) also does.
281  */
282 enum StreamingSrcError {
283         MMPLAYER_STREAMING_ERROR_NONE = 0,
284         MMPLAYER_STREAMING_ERROR_UNSUPPORTED_AUDIO,
285         MMPLAYER_STREAMING_ERROR_UNSUPPORTED_VIDEO,
286         MMPLAYER_STREAMING_ERROR_CONNECTION_FAIL,
287         MMPLAYER_STREAMING_ERROR_DNS_FAIL,
288         MMPLAYER_STREAMING_ERROR_SERVER_DISCONNECTED,
289         MMPLAYER_STREAMING_ERROR_BAD_SERVER,
290         MMPLAYER_STREAMING_ERROR_INVALID_PROTOCOL,
291         MMPLAYER_STREAMING_ERROR_INVALID_URL,
292         MMPLAYER_STREAMING_ERROR_UNEXPECTED_MSG,
293         MMPLAYER_STREAMING_ERROR_OUT_OF_MEMORIES,
294         MMPLAYER_STREAMING_ERROR_RTSP_TIMEOUT,
295         MMPLAYER_STREAMING_ERROR_BAD_REQUEST,
296         MMPLAYER_STREAMING_ERROR_NOT_AUTHORIZED,
297         MMPLAYER_STREAMING_ERROR_PAYMENT_REQUIRED,
298         MMPLAYER_STREAMING_ERROR_FORBIDDEN,
299         MMPLAYER_STREAMING_ERROR_CONTENT_NOT_FOUND,
300         MMPLAYER_STREAMING_ERROR_METHOD_NOT_ALLOWED,
301         MMPLAYER_STREAMING_ERROR_NOT_ACCEPTABLE,
302         MMPLAYER_STREAMING_ERROR_PROXY_AUTHENTICATION_REQUIRED,
303         MMPLAYER_STREAMING_ERROR_SERVER_TIMEOUT,
304         MMPLAYER_STREAMING_ERROR_GONE,
305         MMPLAYER_STREAMING_ERROR_LENGTH_REQUIRED,
306         MMPLAYER_STREAMING_ERROR_PRECONDITION_FAILED,
307         MMPLAYER_STREAMING_ERROR_REQUEST_ENTITY_TOO_LARGE,
308         MMPLAYER_STREAMING_ERROR_REQUEST_URI_TOO_LARGE,
309         MMPLAYER_STREAMING_ERROR_UNSUPPORTED_MEDIA_TYPE,
310         MMPLAYER_STREAMING_ERROR_PARAMETER_NOT_UNDERSTOOD,
311         MMPLAYER_STREAMING_ERROR_CONFERENCE_NOT_FOUND,
312         MMPLAYER_STREAMING_ERROR_NOT_ENOUGH_BANDWIDTH,
313         MMPLAYER_STREAMING_ERROR_NO_SESSION_ID,
314         MMPLAYER_STREAMING_ERROR_METHOD_NOT_VALID_IN_THIS_STATE,
315         MMPLAYER_STREAMING_ERROR_HEADER_FIELD_NOT_VALID_FOR_SOURCE,
316         MMPLAYER_STREAMING_ERROR_INVALID_RANGE,
317         MMPLAYER_STREAMING_ERROR_PARAMETER_IS_READONLY,
318         MMPLAYER_STREAMING_ERROR_AGGREGATE_OP_NOT_ALLOWED,
319         MMPLAYER_STREAMING_ERROR_ONLY_AGGREGATE_OP_ALLOWED,
320         MMPLAYER_STREAMING_ERROR_BAD_TRANSPORT,
321         MMPLAYER_STREAMING_ERROR_DESTINATION_UNREACHABLE,
322         MMPLAYER_STREAMING_ERROR_INTERNAL_SERVER_ERROR,
323         MMPLAYER_STREAMING_ERROR_NOT_IMPLEMENTED,
324         MMPLAYER_STREAMING_ERROR_BAD_GATEWAY,
325         MMPLAYER_STREAMING_ERROR_SERVICE_UNAVAILABLE,
326         MMPLAYER_STREAMING_ERROR_GATEWAY_TIME_OUT       ,
327         MMPLAYER_STREAMING_ERROR_RTSP_VERSION_NOT_SUPPORTED,
328         MMPLAYER_STREAMING_ERROR_OPTION_NOT_SUPPORTED,
329 };
330
331 typedef enum {
332         MMPLAYER_PATH_VOD = 0,
333         MMPLAYER_PATH_TEXT,
334         MMPLAYER_PATH_MAX
335 } MMPlayerPathType;
336
337 /*---------------------------------------------------------------------------
338 |    GLOBAL DATA TYPE DEFINITIONS:                                                                                      |
339 ---------------------------------------------------------------------------*/
340
341 typedef struct {
342         int id;
343         GstElement *gst;
344 } MMPlayerGstElement;
345
346 typedef struct {
347         GstTagList *tag_list;
348         MMPlayerGstElement *mainbin;
349         MMPlayerGstElement *audiobin;
350         MMPlayerGstElement *videobin;
351         MMPlayerGstElement *textbin;
352 } MMPlayerGstPipelineInfo;
353
354 typedef struct {
355         float volume;
356         int mute;
357         int bluetooth;  /* enable/disable */
358 } MMPlayerSoundInfo;
359
360 typedef struct {
361         char *buf;
362         int len;
363         int offset;
364
365 } tBuffer; /* FIXIT : choose better name */
366
367 typedef struct {
368         int uri_type;
369         int     play_mode;
370         void *mem;
371         int     mem_size;
372         char uri[MM_MAX_URL_LEN];
373         char urgent[MM_MAX_FILENAME_LEN];
374 } MMPlayerParseProfile;
375
376 typedef struct {
377         storage_type_e type;
378         storage_state_e state;
379         int id;
380 } MMPlayerStorageInfo;
381
382 typedef struct {
383         bool is_pending;
384         MMPlayerPosFormatType format;
385         unsigned long pos;
386 } MMPlayerPendingSeek;
387
388 typedef struct {
389         GObject* obj;
390         gulong sig;
391 } MMPlayerSignalItem;
392
393 typedef struct {
394         bool rich_audio;
395         bool safety_volume;
396         bool pcm_extraction;
397         bool video_zc; // video zero-copy
398         bool subtitle_off;
399         bool media_packet_video_stream;
400 } MMPlayerSetMode;
401
402 typedef struct {
403         GMainContext *global_default;
404         GMainContext *thread_default;
405 } MMPlayerGMainContext;
406
407 typedef struct {
408         gint uri_idx;
409         GList *uri_list;
410 } MMPlayerUriList;
411
412 typedef struct {
413         gint active_pad_index;
414         gint total_track_num;
415         GPtrArray *channels;
416         gulong block_id;
417         gulong event_probe_id;
418 } mm_player_selector_t;
419
420 typedef struct {
421         gboolean running;
422
423         gboolean stream_changed;
424         gboolean reconfigure;
425
426         GstClockTime start_time[MM_PLAYER_TRACK_TYPE_MAX];      /* updated once get SEGMENT event */
427         GstSegment segment[MM_PLAYER_TRACK_TYPE_MAX];
428         gboolean update_segment[MM_PLAYER_TRACK_TYPE_MAX];
429
430 } mm_player_gapless_t;
431
432 typedef struct {
433         int channel;
434         int bitrate;
435         int depth;
436         bool is_little_endian;
437         guint64 channel_mask;
438         void *pcm_data;
439         int data_size;
440         int buff_size;
441 } mm_player_audio_stream_buff_t;
442
443 /**
444  * @brief data of video_bo_list
445  * @details this will be used when the sw codec is running.
446  * @since_tizen 3.0
447  */
448 typedef struct {
449         gboolean using;
450         void* bo;
451 } mm_player_video_bo_info_t;
452
453 typedef struct {
454         /* STATE */
455         int state;                                      // player current state
456         int prev_state;                         // player previous state
457         int pending_state;                      // player state which is going to now
458         int target_state;                               // player state which user want to go to
459         guint state_change_timeout;
460
461         gboolean section_repeat;
462         gint section_repeat_start;
463         gint section_repeat_end;
464         guint play_count;
465
466         gchar *album_art;
467
468         int cmd;
469
470         /* command lock */
471         GMutex cmd_lock;
472         GMutex playback_lock;
473
474         /* repeat thread lock */
475         GCond repeat_thread_cond;
476         GMutex repeat_thread_mutex;
477         GThread* repeat_thread;
478         gboolean repeat_thread_exit;
479
480         /* next play thread */
481         GThread* next_play_thread;
482         gboolean next_play_thread_exit;
483         GCond next_play_thread_cond;
484         GMutex next_play_thread_mutex;
485         mm_player_gapless_t gapless;
486
487         /* capture thread */
488         GThread* capture_thread;
489         gboolean capture_thread_exit;
490         GCond capture_thread_cond;
491         GMutex capture_thread_mutex;
492         MMPlayerVideoCapture capture;
493         MMPlayerVideoColorspace video_cs;
494         MMVideoBuffer captured;
495
496         /* fakesink handling lock */
497         GMutex fsink_lock;
498
499         /* update tag lock */
500         GMutex update_tag_lock;
501
502         /* player attributes */
503         MMHandleType attrs;
504
505         /* message callback */
506         MMMessageCallback msg_cb;
507         void* msg_cb_param;
508
509         /* progressive download */
510         mm_player_pd_t *pd_downloader;
511         gchar *pd_file_save_path;
512         MMPlayerPDMode pd_mode;
513
514         /* streaming player */
515         mm_player_streaming_t *streamer;
516         gchar *http_file_buffering_path;
517
518         /* gstreamer pipeline */
519         MMPlayerGstPipelineInfo *pipeline;
520
521         /* pad */
522         GstPad *ghost_pad_for_videobin;
523
524         guint64 media_stream_buffer_max_size[MM_PLAYER_STREAM_TYPE_MAX];
525         guint media_stream_buffer_min_percent[MM_PLAYER_STREAM_TYPE_MAX];
526         mm_player_media_stream_buffer_status_callback media_stream_buffer_status_cb[MM_PLAYER_STREAM_TYPE_MAX];
527         mm_player_media_stream_seek_data_callback media_stream_seek_data_cb[MM_PLAYER_STREAM_TYPE_MAX];
528         GMutex media_stream_cb_lock;
529
530         int video_num_buffers;  /* total num of buffers in vcodec */
531         int video_extra_num_buffers; /* extra num of buffers in vcodec */
532
533         void* buffer_cb_user_param;
534
535         /* video stream changed callback */
536         mm_player_stream_changed_callback video_stream_changed_cb;
537         void* video_stream_changed_cb_user_param;
538
539         /* audio stream changed callback */
540         mm_player_stream_changed_callback audio_stream_changed_cb;
541         void* audio_stream_changed_cb_user_param;
542
543         /* video stream callback */
544         mm_player_video_stream_callback video_stream_cb;
545         void* video_stream_cb_user_param;
546         GCond video_bo_cond;
547         GMutex video_bo_mutex;
548         GList* video_bo_list; /* mm_player_video_bo_info_t, bo list for decoded video data by sw codec */
549         int video_bo_size;
550         bool video_stream_prerolled;
551
552         /* audio stram callback */
553         mm_player_audio_stream_callback audio_stream_cb;
554         void* audio_stream_cb_user_param;
555         bool audio_stream_sink_sync;
556         GList* audio_stream_buff_list; /* mm_player_audio_stream_buff_t, buff list of extract pcm data */
557
558         /* audio buffer callback */
559         mm_player_audio_stream_callback_ex audio_stream_render_cb_ex;
560
561         /* video capture callback*/
562         gulong video_capture_cb_probe_id;
563
564         /* sound info */
565         MMPlayerSoundInfo       sound;
566
567         /* type string */
568         gchar *type;
569
570         /* video stream caps parsed by demuxer */
571         GstCaps* v_stream_caps;
572
573         /* audio effect infomation */
574         MMAudioEffectInfo audio_effect_info;
575         gboolean bypass_audio_effect;
576
577         gulong audio_cb_probe_id;
578
579         /* for appsrc */
580         tBuffer mem_buf;
581
582         /* content profile */
583         MMPlayerParseProfile profile;
584         MMPlayerStorageInfo storage_info[MMPLAYER_PATH_MAX];
585
586         /* streaming service type */
587         MMStreamingType streaming_type;
588
589         /* autoplugging */
590         GList* factories;
591         gboolean have_dynamic_pad;
592         GList* parsers; // list of linked parser name
593         GList* audio_decoders; // list of linked audio name
594         gboolean no_more_pad;
595         gint num_dynamic_pad;
596         gboolean has_many_types;
597
598         /* progress callback timer */
599         /* FIXIT : since duplicated functionality with get_position
600          * this function will be deprecated after fixing all application
601          * which are using it.
602          */
603         guint progress_timer;
604
605         /* timer for sending delayed EOS */
606         guint eos_timer;
607
608         /* last point (msec) that player is paused or seeking */
609         gint64 last_position;
610
611         /* duration */
612         gint64 duration;
613
614         /* data size of http streaming  */
615         guint64 http_content_size;
616
617         /* last error */
618         gchar last_error_msg[1024]; /* FIXIT : should it be dynamic ? */
619
620         gboolean smooth_streaming;
621
622         gint videodec_linked;
623         gint audiodec_linked;
624         gint videosink_linked;
625         gint audiosink_linked;
626         gint textsink_linked;
627
628         /* missing plugin during autoplugging */
629         MissingCodec not_supported_codec;
630
631         /* unlinked audio/video mime type */
632         gchar *unlinked_video_mime;
633         gchar *unlinked_audio_mime;
634         gchar *unlinked_demuxer_mime;
635
636         /* found codec during autoplugging */
637         FoundCodec can_support_codec;
638
639         gboolean not_found_demuxer;
640
641         /* support seek even though player is not start */
642         MMPlayerPendingSeek pending_seek;
643
644         gboolean doing_seek;
645
646         /* prevent to post msg over and over */
647         gboolean msg_posted;
648
649         /* list of sink elements */
650         GList* sink_elements;
651
652         /* signal notifiers */
653         GList* signals[MM_PLAYER_SIGNAL_TYPE_MAX];
654         guint bus_watcher;
655         MMPlayerGMainContext context;
656         MMPlayerUriList uri_info;
657
658         gboolean is_sound_extraction;
659
660         gfloat playback_rate;
661
662         /* player state resumed by fast rewind */
663         gboolean resumed_by_rewind;
664
665         gboolean is_nv12_tiled;
666
667         /* resource manager for H/W resources */
668         MMPlayerResourceManager resource_manager;
669
670         /* sound focus for being compatible with legacy session policy internally */
671         MMPlayerSoundFocus sound_focus;
672
673         gboolean is_subtitle_off;
674         gboolean is_external_subtitle_present;
675         gboolean is_external_subtitle_added_now;
676         gboolean pending_resume;
677
678         /* contents bitrate for buffering management */
679         guint bitrate[MM_PLAYER_STREAM_COUNT_MAX];
680         guint total_bitrate;
681         guint updated_bitrate_count;
682         guint maximum_bitrate[MM_PLAYER_STREAM_COUNT_MAX];
683         guint total_maximum_bitrate;
684         guint updated_maximum_bitrate_count;
685
686         /* prevent it from posting duplicatly*/
687         gboolean sent_bos;
688
689         /* timeout source for lazy pause */
690         guint lazy_pause_event_id;
691         guint resume_event_id;
692         guint resumable_cancel_id;
693
694         gboolean keep_detecting_vcodec;
695
696         gboolean play_subtitle;
697         gboolean use_textoverlay;
698         gboolean is_subtitle_force_drop;        // set TRUE after bus_cb get EOS
699
700         /* PD downloader message callback and param */
701         MMMessageCallback pd_msg_cb;
702         void* pd_msg_cb_param;
703
704         /* adjust subtitle position store */
705         gint64 adjust_subtitle_pos;
706         GList *subtitle_language_list;
707
708         /* To store the current multiwindow status */
709         gboolean last_multiwin_status;
710
711         /* To store the current running audio pad index of demuxer */
712         gint demux_pad_index;
713
714         mm_player_selector_t selector[MM_PLAYER_TRACK_TYPE_MAX];
715         mm_player_selector_t audio_mode;
716         gboolean use_deinterleave;
717         guint max_audio_channels;
718
719         guint internal_text_idx;
720         guint external_text_idx;
721
722         MMPlayerSetMode set_mode;
723
724         /* decodbin usage */
725         gboolean use_decodebin;
726
727         /* initialize values */
728         mm_player_ini_t ini;
729
730         /* check to use h/w codec */
731         GstCaps* state_tune_caps;
732         gboolean ignore_asyncdone;
733
734         /* video share sync */
735         gint64 video_share_api_delta;
736         gint64 video_share_clock_delta;
737
738         /* just for native app (video hub) */
739         gboolean video_hub_download_mode;
740         gboolean sync_handler;
741
742         /* store dump pad list */
743         GList* dump_list;
744
745         /* whether a video has closed caption or not */
746         gboolean has_closed_caption;
747
748         GstElement *video_fakesink;
749
750         /* audio stream caps parsed by demuxer or set by external demuxer */
751         GstCaps* a_stream_caps;
752
753         /* subtitle stream caps parsed by demuxer or set by external demuxer */
754         GstCaps* s_stream_caps;
755
756         /* es player using feed-data callback or calling app_src_push_buffer directly*/
757         gboolean es_player_push_mode;
758
759         /* tmb buffer manager for s/w codec tmb_bo */
760         tbm_bufmgr bufmgr;
761
762         int pcm_samplerate;
763         int pcm_channel;
764 } mm_player_t;
765
766 typedef struct {
767         gchar *language_code;
768         gchar *language_key;
769         gboolean active;
770 } MMPlayerLangStruct;
771
772 typedef struct {
773         GstPad *dump_pad;
774         gulong probe_handle_id;
775         FILE *dump_element_file;
776 } mm_player_dump_t;
777
778 typedef struct {
779         char *name;
780         int value_type;
781         int flags;                              // r, w
782         void *default_value;
783         int valid_type;                 // validity type
784         int value_min;                  //<- set validity value range
785         int value_max;          //->
786 } MMPlayerAttrsSpec;
787
788 /*===========================================================================================
789 |                                                                                                                                                                                       |
790 |  GLOBAL FUNCTION PROTOTYPES                                                                                                                           |
791 |                                                                                                                                                                                       |
792 ========================================================================================== */
793 #ifdef __cplusplus
794         extern "C" {
795 #endif
796
797 int _mmplayer_create_player(MMHandleType hplayer);
798 int _mmplayer_destroy(MMHandleType hplayer);
799 int _mmplayer_realize(MMHandleType hplayer);
800 int _mmplayer_unrealize(MMHandleType hplayer);
801 int _mmplayer_get_state(MMHandleType hplayer, int* pstate);
802 int _mmplayer_set_volume(MMHandleType hplayer, MMPlayerVolumeType volume);
803 int _mmplayer_get_volume(MMHandleType hplayer, MMPlayerVolumeType *volume);
804 int _mmplayer_set_mute(MMHandleType hplayer, int mute);
805 int _mmplayer_get_mute(MMHandleType hplayer, int* pmute);
806 int _mmplayer_start(MMHandleType hplayer);
807 int _mmplayer_stop(MMHandleType hplayer);
808 int _mmplayer_pause(MMHandleType hplayer);
809 int _mmplayer_resume(MMHandleType hplayer);
810 int _mmplayer_set_position(MMHandleType hplayer, int format, int pos);
811 int _mmplayer_get_position(MMHandleType hplayer, int format, unsigned long *pos);
812 int _mmplayer_adjust_subtitle_postion(MMHandleType hplayer, int format,  int pos);
813 int _mmplayer_adjust_video_postion(MMHandleType hplayer, int offset);
814 int _mmplayer_activate_section_repeat(MMHandleType hplayer, unsigned long start, unsigned long end);
815 int _mmplayer_deactivate_section_repeat(MMHandleType hplayer);
816 int _mmplayer_set_playspeed(MMHandleType hplayer, float rate, bool streaming);
817 int _mmplayer_set_message_callback(MMHandleType hplayer, MMMessageCallback callback, void *user_param);
818 int _mmplayer_set_videostream_changed_cb(MMHandleType hplayer, mm_player_stream_changed_callback callback, void *user_param);
819 int _mmplayer_set_audiostream_changed_cb(MMHandleType hplayer, mm_player_stream_changed_callback callback, void *user_param);
820 int _mmplayer_set_videostream_cb(MMHandleType hplayer, mm_player_video_stream_callback callback, void *user_param);
821 int _mmplayer_set_audiostream_cb(MMHandleType hplayer, mm_player_audio_stream_callback callback, void *user_param);
822 int _mmplayer_set_subtitle_silent(MMHandleType hplayer, int silent);
823 int _mmplayer_get_subtitle_silent(MMHandleType hplayer, int* silent);
824 int _mmplayer_set_external_subtitle_path(MMHandleType hplayer, const char* filepath);
825 int _mmplayer_get_buffer_position(MMHandleType hplayer, int format, unsigned long* start_pos, unsigned long* stop_pos);
826
827 /* test API for tuning audio gain. this API should be
828  * deprecated before the day of final release
829  */
830 int _mmplayer_set_volume_tune(MMHandleType hplayer, MMPlayerVolumeType volume);
831 int _mmplayer_update_video_param(mm_player_t* player, char *param_name);
832 int _mmplayer_set_audiobuffer_cb(MMHandleType hplayer, mm_player_audio_stream_callback callback, void *user_param);
833 int _mmplayer_change_videosink(MMHandleType handle, MMDisplaySurfaceType surface_type, void *display_overlay);
834 int _mmplayer_audio_effect_custom_apply(mm_player_t *player);
835
836 int _mmplayer_set_audiostream_cb_ex(MMHandleType hplayer, bool sync, mm_player_audio_stream_callback_ex callback, void *user_param);
837 gboolean __mmplayer_post_message(mm_player_t* player, enum MMMessageType msgtype, MMMessageParamType* param);
838
839 int _mmplayer_gst_set_audio_channel(MMHandleType hplayer, MMPlayerAudioChannel ch_idx);
840 int _mmplayer_change_track_language(MMHandleType hplayer, MMPlayerTrackType type, int index);
841 int _mmplayer_sync_subtitle_pipeline(mm_player_t* player);
842 int _mmplayer_set_prepare_buffering_time(MMHandleType hplayer, int second);
843 int _mmplayer_set_runtime_buffering_mode(MMHandleType hplayer, MMPlayerBufferingMode mode, int second);
844 int _mmplayer_set_display_zoom(MMHandleType hplayer, float level, int x, int y);
845 int _mmplayer_get_display_zoom(MMHandleType hplayer, float *level, int *x, int *y);
846 int _mmplayer_set_video_hub_download_mode(MMHandleType hplayer, bool mode);
847 int _mmplayer_use_system_clock(MMHandleType hplayer);
848 int _mmplayer_set_video_share_master_clock(MMHandleType hplayer, long long clock, long long clock_delta, long long video_time, long long media_clock, long long audio_time);
849 int _mmplayer_get_video_share_master_clock(MMHandleType hplayer, long long *video_time, long long *media_clock, long long *audio_time);
850 int _mmplayer_get_video_rotate_angle(MMHandleType hplayer, int *angle);
851 int _mmplayer_enable_sync_handler(MMHandleType hplayer, bool enable);
852 int _mmplayer_set_file_buffering_path(MMHandleType hplayer, const char* file_path);
853 int _mmplayer_set_uri(MMHandleType hplayer, const char* uri);
854 int _mmplayer_set_next_uri(MMHandleType hplayer, const char* uri, bool is_first_path);
855 int _mmplayer_get_next_uri(MMHandleType hplayer, char** uri);
856 int _mmplayer_has_closed_caption(MMHandleType hplayer, bool* exist);
857 void * _mm_player_media_packet_video_stream_internal_buffer_ref(void *buffer);
858 void _mm_player_media_packet_video_stream_internal_buffer_unref(void *buffer);
859 int _mmplayer_set_pcm_spec(MMHandleType hplayer, int samplerate, int channel);
860 int _mmplayer_get_timeout(MMHandleType hplayer, int *timeout);
861 int _mmplayer_get_num_of_video_out_buffers(MMHandleType hplayer, int *num, int *extra_num);
862 int _mmplayer_manage_external_storage_state(MMHandleType hplayer, int state);
863 int __mmplayer_gst_set_state(mm_player_t* player, GstElement * pipeline,  GstState state, gboolean async, gint timeout);
864 int __mmplayer_set_state(mm_player_t* player, int state);
865 int __mmplayer_check_state(mm_player_t* player, enum PlayerCommandState command);
866 gboolean __mmplayer_dump_pipeline_state(mm_player_t* player);
867 void __mmplayer_remove_g_source_from_context(GMainContext *context, guint source_id);
868 /* util */
869 const gchar * __get_state_name(int state);
870 gboolean __mmplayer_can_do_interrupt(mm_player_t *player);
871 gboolean __is_streaming(mm_player_t* player);
872 gboolean __is_rtsp_streaming(mm_player_t* player);
873 gboolean __is_wfd_streaming(mm_player_t* player);
874 gboolean __is_live_streaming(mm_player_t* player);
875 gboolean __is_http_streaming(mm_player_t* player);
876 gboolean __is_http_live_streaming(mm_player_t* player);
877 gboolean __is_dash_streaming(mm_player_t* player);
878 gboolean __is_smooth_streaming(mm_player_t* player);
879 gboolean __is_http_progressive_down(mm_player_t* player);
880
881 gboolean __mmplayer_check_useful_message(mm_player_t *player, GstMessage * message);
882 gboolean __mmplayer_handle_gst_error(mm_player_t* player, GstMessage * message, GError* error);
883 gint __gst_handle_core_error(mm_player_t* player, int code);
884 gint __gst_handle_library_error(mm_player_t* player, int code);
885 gint __gst_handle_resource_error(mm_player_t* player, int code, GstMessage * message);
886 gint __gst_handle_stream_error(mm_player_t* player, GError* error, GstMessage * message);
887 int _mmplayer_sound_register_with_pid(MMHandleType hplayer, int pid);
888 int _mmplayer_get_client_pid(MMHandleType hplayer, int* pid);
889 int __mmplayer_get_video_angle(mm_player_t* player, int *user_angle, int *org_angle);
890 int _mmplayer_video_stream_release_bo(mm_player_t* player, void* bo);
891
892 #ifdef __cplusplus
893         }
894 #endif
895
896 #endif  /* __MM_PLAYER_PRIV_H__ */