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