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