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