add bo list to reuse it when send media packet to client in case of sw codec
[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 /**
451  * @brief data of video_bo_list
452  * @details this will be used when the sw codec is running.
453  * @since_tizen 3.0
454  */
455 typedef struct {
456         gboolean using;
457         void* bo;
458 } mm_player_video_bo_info_t;
459
460 typedef struct {
461         /* STATE */
462         int state;                                      // player current state
463         int prev_state;                         // player previous state
464         int pending_state;                      // player state which is going to now
465         int target_state;                               // player state which user want to go to
466         guint state_change_timeout;
467
468         gboolean section_repeat;
469         gint section_repeat_start;
470         gint section_repeat_end;
471         guint play_count;
472
473         gchar *album_art;
474
475         int cmd;
476
477         /* command lock */
478         GMutex cmd_lock;
479         GMutex playback_lock;
480
481         /* repeat thread lock */
482         GCond repeat_thread_cond;
483         GMutex repeat_thread_mutex;
484         GThread* repeat_thread;
485         gboolean repeat_thread_exit;
486
487         /* next play thread */
488         GThread* next_play_thread;
489         gboolean next_play_thread_exit;
490         GCond next_play_thread_cond;
491         GMutex next_play_thread_mutex;
492         mm_player_gapless_t gapless;
493
494         /* capture thread */
495         GThread* capture_thread;
496         gboolean capture_thread_exit;
497         GCond capture_thread_cond;
498         GMutex capture_thread_mutex;
499         MMPlayerVideoCapture capture;
500         MMPlayerVideoColorspace video_cs;
501         MMVideoBuffer captured;
502
503         /* fakesink handling lock */
504         GMutex fsink_lock;
505
506         /* player attributes */
507         MMHandleType attrs;
508
509         /* message callback */
510         MMMessageCallback msg_cb;
511         void* msg_cb_param;
512         GMutex msg_cb_lock;
513
514         /* progressive download */
515         mm_player_pd_t *pd_downloader;
516         gchar *pd_file_save_path;
517         MMPlayerPDMode pd_mode;
518
519         /* streaming player */
520         mm_player_streaming_t *streamer;
521
522         /* gstreamer pipeline */
523         MMPlayerGstPipelineInfo *pipeline;
524
525         /* pad */
526         GstPad *ghost_pad_for_videobin;
527
528         guint64 media_stream_buffer_max_size[MM_PLAYER_STREAM_TYPE_MAX];
529         guint media_stream_buffer_min_percent[MM_PLAYER_STREAM_TYPE_MAX];
530         mm_player_media_stream_buffer_status_callback media_stream_buffer_status_cb[MM_PLAYER_STREAM_TYPE_MAX];
531         mm_player_media_stream_seek_data_callback media_stream_seek_data_cb[MM_PLAYER_STREAM_TYPE_MAX];
532         int video_num_buffers;  /* total num of buffers in vcodec */
533         int video_extra_num_buffers; /* extra num of buffers in vcodec */
534
535         void* buffer_cb_user_param;
536
537         /* video stream changed callback */
538         mm_player_stream_changed_callback video_stream_changed_cb;
539         void* video_stream_changed_cb_user_param;
540
541         /* audio stream changed callback */
542         mm_player_stream_changed_callback audio_stream_changed_cb;
543         void* audio_stream_changed_cb_user_param;
544
545         /* video stream callback */
546         mm_player_video_stream_callback video_stream_cb;
547         void* video_stream_cb_user_param;
548         int use_video_stream;
549         GCond video_bo_cond;
550         GMutex video_bo_mutex;
551         GList* video_bo_list; /* mm_player_video_bo_info_t, bo list for decoded video data by sw codec */
552         int video_bo_size;
553
554         /* audio stram callback */
555         mm_player_audio_stream_callback audio_stream_cb;
556         void* audio_stream_cb_user_param;
557         bool audio_stream_sink_sync;
558         GList* audio_stream_buff_list; /* mm_player_audio_stream_buff_t, buff list of extract pcm data */
559
560         /* audio buffer callback */
561         mm_player_audio_stream_callback_ex audio_stream_render_cb_ex;
562
563         /* video capture callback*/
564         gulong video_capture_cb_probe_id;
565
566         /* sound info */
567         MMPlayerSoundInfo       sound;
568
569         /* type string */
570         gchar *type;
571
572         /* video stream caps parsed by demuxer */
573         GstCaps* v_stream_caps;
574
575         /* audio effect infomation */
576         MMAudioEffectInfo audio_effect_info;
577         gboolean bypass_audio_effect;
578
579         gulong audio_cb_probe_id;
580         gulong video_cb_probe_id;
581
582         /* for appsrc */
583         tBuffer mem_buf;
584
585         /* content profile */
586         MMPlayerParseProfile profile;
587
588         /* streaming service type */
589         MMStreamingType streaming_type;
590
591         /* autoplugging */
592         GList* factories;
593         gboolean have_dynamic_pad;
594         GList* parsers; // list of linked parser name
595         GList* audio_decoders; // list of linked audio name
596         gboolean no_more_pad;
597         gint num_dynamic_pad;
598         gboolean has_many_types;
599
600         /* progress callback timer */
601         /* FIXIT : since duplicated functionality with get_position
602          * this function will be deprecated after fixing all application
603          * which are using it.
604          */
605         guint progress_timer;
606
607         /* timer for sending delayed EOS */
608         guint eos_timer;
609
610         /* last point (msec) that player is paused or seeking */
611         gint64 last_position;
612
613         /* duration */
614         gint64 duration;
615
616         /* data size of http streaming  */
617         guint64 http_content_size;
618
619         /* last error */
620         gchar last_error_msg[1024]; /* FIXIT : should it be dynamic ? */
621
622         gboolean smooth_streaming;
623
624         gint videodec_linked;
625         gint audiodec_linked;
626         gint videosink_linked;
627         gint audiosink_linked;
628         gint textsink_linked;
629
630         /* missing plugin during autoplugging */
631         MissingCodec not_supported_codec;
632
633         /* unlinked audio/video mime type */
634         gchar *unlinked_video_mime;
635         gchar *unlinked_audio_mime;
636         gchar *unlinked_demuxer_mime;
637
638         /* found codec during autoplugging */
639         FoundCodec can_support_codec;
640
641         gboolean not_found_demuxer;
642
643         /* support seek even though player is not start */
644         MMPlayerPendingSeek pending_seek;
645
646         gboolean doing_seek;
647
648         /* prevent to post msg over and over */
649         gboolean msg_posted;
650
651         /* list of sink elements */
652         GList* sink_elements;
653
654         /* signal notifiers */
655         GList* signals[MM_PLAYER_SIGNAL_TYPE_MAX];
656         guint bus_watcher;
657         MMPlayerGMainContext context;
658         MMPlayerUriList uri_info;
659
660         gboolean is_sound_extraction;
661
662         gfloat playback_rate;
663
664         /* player state resumed by fast rewind */
665         gboolean resumed_by_rewind;
666
667         gboolean is_nv12_tiled;
668         gboolean is_drm_file;
669
670         /* resource manager for H/W resources */
671         MMPlayerResourceManager resource_manager;
672
673         /* sound focus for being compatible with legacy session policy internally */
674         MMPlayerSoundFocus sound_focus;
675
676         gboolean is_subtitle_off;
677         gboolean is_external_subtitle_present;
678
679         /* contents bitrate for buffering management */
680         guint bitrate[MM_PLAYER_STREAM_COUNT_MAX];
681         guint total_bitrate;
682         guint updated_bitrate_count;
683         guint maximum_bitrate[MM_PLAYER_STREAM_COUNT_MAX];
684         guint total_maximum_bitrate;
685         guint updated_maximum_bitrate_count;
686
687         /* prevent it from posting duplicatly*/
688         gboolean sent_bos;
689
690         /* timeout source for lazy pause */
691         guint lazy_pause_event_id;
692         guint resume_event_id;
693         guint resumable_cancel_id;
694
695         gboolean keep_detecting_vcodec;
696
697         gboolean play_subtitle;
698         gboolean use_textoverlay;
699         gboolean is_subtitle_force_drop;        // set TRUE after bus_cb get EOS
700
701         /* PD downloader message callback and param */
702         MMMessageCallback pd_msg_cb;
703         void* pd_msg_cb_param;
704
705         /* adjust subtitle position store */
706         gint64 adjust_subtitle_pos;
707         GList *subtitle_language_list;
708
709         /* To store the current multiwindow status */
710         gboolean last_multiwin_status;
711
712         /* To store the current running audio pad index of demuxer */
713         gint demux_pad_index;
714
715         mm_player_selector_t selector[MM_PLAYER_TRACK_TYPE_MAX];
716         mm_player_selector_t audio_mode;
717         gboolean use_deinterleave;
718         guint max_audio_channels;
719
720         guint internal_text_idx;
721         guint external_text_idx;
722
723         MMPlayerSetMode set_mode;
724
725         /* decodbin usage */
726         gboolean use_decodebin;
727
728         /* initialize values */
729         mm_player_ini_t ini;
730
731         /* check to use h/w codec */
732         GstCaps* state_tune_caps;
733         gboolean ignore_asyncdone;
734
735         /* video share sync */
736         gint64 video_share_api_delta;
737         gint64 video_share_clock_delta;
738
739         /* just for native app (video hub) */
740         gboolean video_hub_download_mode;
741         gboolean sync_handler;
742
743         /* store dump pad list */
744         GList* dump_list;
745
746         /* whether a video has closed caption or not */
747         gboolean has_closed_caption;
748
749         GstElement *video_fakesink;
750
751         /* audio stream caps parsed by demuxer or set by external demuxer */
752         GstCaps* a_stream_caps;
753
754         /* subtitle stream caps parsed by demuxer or set by external demuxer */
755         GstCaps* s_stream_caps;
756
757         /* es player using feed-data callback or calling app_src_push_buffer directly*/
758         gboolean es_player_push_mode;
759
760         /* tmb buffer manager for s/w codec tmb_bo */
761         tbm_bufmgr bufmgr;
762
763         int pcm_samplerate;
764         int pcm_channel;
765 } mm_player_t;
766
767 typedef struct
768 {
769         gchar *language_code;
770         gchar *language_key;
771         gboolean active;
772 }MMPlayerLangStruct;
773
774 typedef struct
775 {
776         GstPad *dump_pad;
777         gulong probe_handle_id;
778         FILE *dump_element_file;
779 } mm_player_dump_t;
780
781 typedef struct{
782         char *name;
783         int value_type;
784         int flags;                              // r, w
785         void *default_value;
786         int valid_type;                 // validity type
787         int value_min;                  //<- set validity value range
788         int value_max;          //->
789 }MMPlayerAttrsSpec;
790
791 /*===========================================================================================
792 |                                                                                                                                                                                       |
793 |  GLOBAL FUNCTION PROTOTYPES                                                                                                                           |
794 |                                                                                                                                                                                       |
795 ========================================================================================== */
796 #ifdef __cplusplus
797         extern "C" {
798 #endif
799
800 int _mmplayer_create_player(MMHandleType hplayer);
801 int _mmplayer_destroy(MMHandleType hplayer);
802 int _mmplayer_realize(MMHandleType hplayer);
803 int _mmplayer_unrealize(MMHandleType hplayer);
804 int _mmplayer_get_state(MMHandleType hplayer, int* pstate);
805 int _mmplayer_set_volume(MMHandleType hplayer, MMPlayerVolumeType volume);
806 int _mmplayer_get_volume(MMHandleType hplayer, MMPlayerVolumeType *volume);
807 int _mmplayer_set_mute(MMHandleType hplayer, int mute);
808 int _mmplayer_get_mute(MMHandleType hplayer, int* pmute);
809 int _mmplayer_start(MMHandleType hplayer);
810 int _mmplayer_stop(MMHandleType hplayer);
811 int _mmplayer_pause(MMHandleType hplayer);
812 int _mmplayer_resume(MMHandleType hplayer);
813 int _mmplayer_set_position(MMHandleType hplayer, int format, int pos);
814 int _mmplayer_get_position(MMHandleType hplayer, int format, unsigned long *pos);
815 int _mmplayer_adjust_subtitle_postion(MMHandleType hplayer, int format,  int pos);
816 int _mmplayer_adjust_video_postion(MMHandleType hplayer,int offset);
817 int _mmplayer_activate_section_repeat(MMHandleType hplayer, unsigned long start, unsigned long end);
818 int _mmplayer_deactivate_section_repeat(MMHandleType hplayer);
819 int _mmplayer_push_buffer(MMHandleType hplayer, unsigned char *buf, int size);
820 int _mmplayer_set_playspeed(MMHandleType hplayer, float rate, bool streaming);
821 int _mmplayer_set_message_callback(MMHandleType hplayer, MMMessageCallback callback, void *user_param);
822 int _mmplayer_set_videostream_changed_cb(MMHandleType hplayer, mm_player_stream_changed_callback callback, void *user_param);
823 int _mmplayer_set_audiostream_changed_cb(MMHandleType hplayer, mm_player_stream_changed_callback callback, void *user_param);
824 int _mmplayer_set_videostream_cb(MMHandleType hplayer,mm_player_video_stream_callback callback, void *user_param);
825 int _mmplayer_set_audiostream_cb(MMHandleType hplayer,mm_player_audio_stream_callback callback, void *user_param);
826 int _mmplayer_set_subtitle_silent (MMHandleType hplayer, int silent);
827 int _mmplayer_get_subtitle_silent (MMHandleType hplayer, int* silent);
828 int _mmplayer_set_external_subtitle_path(MMHandleType hplayer, const char* filepath);
829 int _mmplayer_get_buffer_position(MMHandleType hplayer, int format, unsigned long* start_pos, unsigned long* stop_pos);
830
831 /* test API for tuning audio gain. this API should be
832  * deprecated before the day of final release
833  */
834 int _mmplayer_set_volume_tune(MMHandleType hplayer, MMPlayerVolumeType volume);
835 int _mmplayer_update_video_param(mm_player_t* player, char *param_name);
836 int _mmplayer_set_audiobuffer_cb(MMHandleType hplayer, mm_player_audio_stream_callback callback, void *user_param);
837 int _mmplayer_change_videosink(MMHandleType handle, MMDisplaySurfaceType surface_type, void *display_overlay);
838 int _mmplayer_audio_effect_custom_apply(mm_player_t *player);
839
840 int _mmplayer_set_audiostream_cb_ex(MMHandleType hplayer, bool sync, mm_player_audio_stream_callback_ex callback, void *user_param);
841 gboolean __mmplayer_post_message(mm_player_t* player, enum MMMessageType msgtype, MMMessageParamType* param);
842
843 int _mmplayer_gst_set_audio_channel(MMHandleType hplayer, MMPlayerAudioChannel ch_idx);
844 int _mmplayer_change_track_language (MMHandleType hplayer, MMPlayerTrackType type, int index);
845 int _mmplayer_sync_subtitle_pipeline(mm_player_t* player);
846 int _mmplayer_set_prepare_buffering_time(MMHandleType hplayer, int second);
847 int _mmplayer_set_runtime_buffering_mode(MMHandleType hplayer, MMPlayerBufferingMode mode, int second);
848 int _mmplayer_set_display_zoom(MMHandleType hplayer, float level, int x, int y);
849 int _mmplayer_get_display_zoom(MMHandleType hplayer, float *level, int *x, int *y);
850 int _mmplayer_set_video_hub_download_mode(MMHandleType hplayer, bool mode);
851 int _mmplayer_use_system_clock (MMHandleType hplayer);
852 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);
853 int _mmplayer_get_video_share_master_clock(MMHandleType hplayer, long long *video_time, long long *media_clock, long long *audio_time);
854 int _mmplayer_get_video_rotate_angle(MMHandleType hplayer, int *angle);
855 int _mmplayer_enable_sync_handler(MMHandleType hplayer, bool enable);
856 int _mmplayer_set_uri(MMHandleType hplayer, const char* uri);
857 int _mmplayer_set_next_uri(MMHandleType hplayer, const char* uri, bool is_first_path);
858 int _mmplayer_get_next_uri(MMHandleType hplayer, char** uri);
859 int _mmplayer_has_closed_caption(MMHandleType hplayer, bool* exist);
860 int _mmplayer_enable_media_packet_video_stream(MMHandleType hplayer, bool enable);
861 void * _mm_player_media_packet_video_stream_internal_buffer_ref(void *buffer);
862 void _mm_player_media_packet_video_stream_internal_buffer_unref(void *buffer);
863 int _mmplayer_set_pcm_spec(MMHandleType hplayer, int samplerate, int channel);
864 int _mmplayer_get_timeout(MMHandleType hplayer, int *timeout);
865 int _mmplayer_get_num_of_video_out_buffers(MMHandleType hplayer, int *num, int *extra_num);
866 int __mmplayer_gst_set_state (mm_player_t* player, GstElement * pipeline,  GstState state, gboolean async, gint timeout );
867 int __mmplayer_set_state(mm_player_t* player, int state);
868 int __mmplayer_check_state(mm_player_t* player, enum PlayerCommandState command);
869 gboolean __mmplayer_dump_pipeline_state( mm_player_t* player );
870 void __mmplayer_remove_g_source_from_context(GMainContext *context, guint source_id);
871 /* util */
872 const gchar * __get_state_name ( int state );
873 gboolean __mmplayer_can_do_interrupt(mm_player_t *player);
874 gboolean __is_streaming( mm_player_t* player );
875 gboolean __is_rtsp_streaming( mm_player_t* player );
876 gboolean __is_wfd_streaming( mm_player_t* player );
877 gboolean __is_live_streaming ( mm_player_t* player );
878 gboolean __is_http_streaming( mm_player_t* player );
879 gboolean __is_http_live_streaming( mm_player_t* player );
880 gboolean __is_dash_streaming( mm_player_t* player );
881 gboolean __is_smooth_streaming( mm_player_t* player );
882 gboolean __is_http_progressive_down(mm_player_t* player);
883
884 gboolean __mmplayer_check_useful_message(mm_player_t *player, GstMessage * message);
885 gboolean __mmplayer_handle_gst_error ( mm_player_t* player, GstMessage * message, GError* error );
886 gint __gst_handle_core_error( mm_player_t* player, int code );
887 gint __gst_handle_library_error( mm_player_t* player, int code );
888 gint __gst_handle_resource_error( mm_player_t* player, int code );
889 gint __gst_handle_stream_error( mm_player_t* player, GError* error, GstMessage * message );
890 int _mmplayer_sound_register_with_pid(MMHandleType hplayer, int pid);
891 int _mmplayer_get_client_pid(MMHandleType hplayer, int* pid);
892 int __mmplayer_get_video_angle(mm_player_t* player, int *user_angle, int *org_angle);
893 int _mmplayer_video_stream_release_bo(mm_player_t* player, void* bo);
894
895 #ifdef __cplusplus
896         }
897 #endif
898
899 #endif  /* __MM_PLAYER_PRIV_H__ */