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