[0.6.201] add attribute about media stream input format
[platform/core/multimedia/libmm-player.git] / src / include / mm_player_ini.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_INI_H__
24 #define __MM_PLAYER_INI_H__
25
26 #include <glib.h>
27 #include <mm_types.h>
28 #include "mm_player_audioeffect.h"
29
30 #ifdef __cplusplus
31         extern "C" {
32 #endif
33
34 #ifdef LOG_TAG
35 #undef LOG_TAG
36 #endif
37 #define LOG_TAG "MM_PLAYER"
38
39 #define MM_PLAYER_INI_DEFAULT_PATH      SYSCONFDIR"/multimedia/mmfw_player.ini" /* SYSCONFDIR is defined at .spec */
40 #define MM_PLAYER_INI_DEFAULT_AUDIOEFFECT_PATH  SYSCONFDIR"/multimedia/mmfw_player_audio_effect.ini" /* SYSCONFDIR is defined at .spec */
41
42 #define PLAYER_INI_MAX_STRLEN       100
43 #define PLAYER_INI_MAX_PARAM_STRLEN 256
44
45 #define PLAYER_INI_MAX_ELEMENT      10
46 #define PLAYER_INI_MAX_DEVICE_TYPE  10
47 #define PLAYER_INI_MAX_SUPPORTED_MEDIA_FORMAT 10 /* @see MAX_SUPPORTED_MEDIA_FORMAT in player_private.h */
48
49 /* NOTE : MMPlayer has no initalizing API for library itself
50  * so we cannot decide when those ini values to be released.
51  * this is the reason of all string items are static array.
52  * make it do with malloc when MMPlayerInitialize() API created
53  * before that time, we should be careful with size limitation
54  * of each string item.
55  */
56 enum keyword_type {
57         KEYWORD_EXCLUDE,    // for element exclude keyword
58         KEYWORD_DUMP,       // for dump element keyword
59         KEYWORD_UNSUPPORTED_CODEC, // for un-supported codec
60         KEYWORD_A_SW_CODEC, // for audio sw codec
61         KEYWORD_V_SW_CODEC, // for video sw codec
62         KEYWORD_A_OFFLOAD_DEVICE_TYPE,  // for audio device type which can support offload
63         KEYWORD_A_OFFLOAD_MEDIA_FORMAT, // supported media format for audio offload
64         KEYWORD_MEDIA_STREAM_IN_FORMAT, // supported media format for external media stream
65 };
66
67 typedef struct {
68         /* general */
69         gchar videosink_element_overlay[PLAYER_INI_MAX_STRLEN];
70         gchar videosink_element_fake[PLAYER_INI_MAX_STRLEN];
71         gchar videoconverter_element[PLAYER_INI_MAX_STRLEN];
72         gchar videocodec_element_hw[PLAYER_INI_MAX_STRLEN];
73         gchar videocodec_element_sw[PLAYER_INI_MAX_ELEMENT][PLAYER_INI_MAX_STRLEN];
74         gchar audiocodec_element_hw[PLAYER_INI_MAX_STRLEN];
75         gchar audiocodec_element_sw[PLAYER_INI_MAX_ELEMENT][PLAYER_INI_MAX_STRLEN];
76         gchar audioresampler_element[PLAYER_INI_MAX_STRLEN];
77         gchar audiosink_element[PLAYER_INI_MAX_STRLEN];
78         gchar audio_offload_sink_element[PLAYER_INI_MAX_STRLEN];
79         gchar audio_offload_device_type[PLAYER_INI_MAX_DEVICE_TYPE][PLAYER_INI_MAX_STRLEN];
80         gchar audio_offload_media_format[PLAYER_INI_MAX_SUPPORTED_MEDIA_FORMAT][PLAYER_INI_MAX_STRLEN];
81         gchar media_stream_input_format[PLAYER_INI_MAX_SUPPORTED_MEDIA_FORMAT][PLAYER_INI_MAX_STRLEN];
82         gboolean skip_rescan;
83         gboolean generate_dot;
84         gboolean use_system_clock;
85         gint live_state_change_timeout;
86         gint localplayback_state_change_timeout;
87         gint delay_before_repeat;
88         gint eos_delay;
89         gboolean video_playback_supported;
90
91         gchar gst_param[5][PLAYER_INI_MAX_PARAM_STRLEN];
92         gchar exclude_element_keyword[PLAYER_INI_MAX_ELEMENT][PLAYER_INI_MAX_STRLEN];
93         gchar unsupported_codec_keyword[PLAYER_INI_MAX_ELEMENT][PLAYER_INI_MAX_STRLEN];
94         gboolean async_start;
95         gboolean disable_segtrap;
96         gint pcm_buffer_size;
97         gint num_of_video_bo;
98         gint video_bo_timeout;
99
100         /* http streaming */
101         gchar httpsrc_element[PLAYER_INI_MAX_STRLEN];
102         guint http_ring_buffer_size;
103         gint http_timeout;
104
105         /* audio effect */
106         gchar audioeffect_element[PLAYER_INI_MAX_STRLEN];
107         gchar audioeffect_element_custom[PLAYER_INI_MAX_STRLEN];
108
109         /* audio effect preset mode */
110         gboolean use_audio_effect_preset;
111         gboolean audio_effect_preset_list[MM_AUDIO_EFFECT_PRESET_NUM];
112         gboolean audio_effect_preset_earphone_only_list[MM_AUDIO_EFFECT_PRESET_NUM];
113
114         /* audio effect custom mode */
115         gboolean use_audio_effect_custom;
116         gboolean audio_effect_custom_list[MM_AUDIO_EFFECT_CUSTOM_NUM];
117         gboolean audio_effect_custom_earphone_only_list[MM_AUDIO_EFFECT_CUSTOM_NUM];
118         gint audio_effect_custom_eq_band_num;
119         gint audio_effect_custom_eq_band_width[MM_AUDIO_EFFECT_EQ_BAND_NUM_MAX];
120         gint audio_effect_custom_eq_band_freq[MM_AUDIO_EFFECT_EQ_BAND_NUM_MAX];
121         gint audio_effect_custom_ext_num;
122         gint audio_effect_custom_min_level_list[MM_AUDIO_EFFECT_CUSTOM_NUM];
123         gint audio_effect_custom_max_level_list[MM_AUDIO_EFFECT_CUSTOM_NUM];
124
125         /* dump buffer for debug */
126         gchar dump_element_keyword[PLAYER_INI_MAX_ELEMENT][PLAYER_INI_MAX_STRLEN];
127         gchar dump_element_path[PLAYER_INI_MAX_STRLEN];
128         gboolean set_dump_element_flag;
129 } mmplayer_ini_t;
130
131 /* default values if each values are not specified in inifile */
132 /* general */
133 #define DEFAULT_EMPTY_VALUE                               ""
134 #define DEFAULT_AUDIO_EFFECT_ELEMENT                      ""
135 #define DEFAULT_USE_AUDIO_EFFECT_PRESET                   FALSE
136 #define DEFAULT_AUDIO_EFFECT_PRESET_LIST                  ""
137 #define DEFAULT_AUDIO_EFFECT_PRESET_LIST_EARPHONE_ONLY    ""
138 #define DEFAULT_USE_AUDIO_EFFECT_CUSTOM                   FALSE
139 #define DEFAULT_AUDIO_EFFECT_CUSTOM_LIST                  ""
140 #define DEFAULT_AUDIO_EFFECT_CUSTOM_LIST_EARPHONE_ONLY    ""
141 #define DEFAULT_AUDIO_EFFECT_CUSTOM_EQ_BAND_NUM           0
142 #define DEFAULT_AUDIO_EFFECT_CUSTOM_EQ_BAND_WIDTH         ""
143 #define DEFAULT_AUDIO_EFFECT_CUSTOM_EQ_BAND_FREQ          ""
144 #define DEFAULT_AUDIO_EFFECT_CUSTOM_EQ_MIN                0
145 #define DEFAULT_AUDIO_EFFECT_CUSTOM_EQ_MAX                0
146 #define DEFAULT_AUDIO_EFFECT_CUSTOM_EXT_NUM               0
147 #define DEFAULT_USE_SINK_HANDLER                          TRUE
148 #define DEFAULT_SKIP_RESCAN                               TRUE
149 #define DEFAULT_GENERATE_DOT                              FALSE
150 #define DEFAULT_USE_SYSTEM_CLOCK                          TRUE
151 #define DEFAULT_DELAY_BEFORE_REPEAT                       50 /* msec */
152 #define DEFAULT_EOS_DELAY                                 0 /* msec */
153 #define DEFAULT_VIDEOSINK_OVERLAY                         "tizenwlsink"
154 #define DEFAULT_VIDEOSINK_EVAS                            "evasimagesink"
155 #define DEFAULT_VIDEOSINK_FAKE                            "fakesink"
156 #define DEFAULT_AUDIORESAMPLER                            "audioresample"
157 #define DEFAULT_AUDIOSINK                                 "pulsesink"
158 #define DEFAULT_CODEC_HW                                  ""
159 #define DEFAULT_CODEC_SW                                  ""
160 #define DEFAULT_A_OFFLOAD_DEVICE_TYPE                     ""
161 #define DEFAULT_GST_PARAM                                 ""
162 #define DEFAULT_EXCLUDE_KEYWORD                           ""
163 #define DEFAULT_UNSUPPORTED_CODEC_KEYWORD                 ""
164 #define DEFAULT_ASYNC_START                               TRUE
165 #define DEFAULT_DISABLE_SEGTRAP                           TRUE
166 #define DEFAULT_VIDEO_CONVERTER                           ""
167 #define DEFAULT_VIDEO_PLAYBACK_SUPPORTED                  TRUE
168 #define DEFAULT_LIVE_STATE_CHANGE_TIMEOUT                 30 /* sec */
169 #define DEFAULT_LOCALPLAYBACK_STATE_CHANGE_TIMEOUT        10 /* sec */
170 #define DEFAULT_PCM_BUFFER_SIZE                           51200 /* bytes */
171 #define DEFAULT_NUM_OF_VIDEO_BO                           10
172 #define DEFAULT_TIMEOUT_OF_VIDEO_BO                       10 /* sec */
173 #define DEFAULT_AUDIO_OFFLOAD_SINK                        ""
174
175 /* http streaming */
176 #define DEFAULT_HTTPSRC                                   "souphttpsrc"
177 #define DEFAULT_HTTP_RING_BUFFER_SIZE                     (20*1024*1024) /* bytes : 20MBytes */
178 #define DEFAULT_HTTP_TIMEOUT                              -1        /* infinite retry */
179
180 /* dump buffer for debug */
181 #define DEFAULT_DUMP_ELEMENT_KEYWORD                      ""
182 #define DEFAULT_DUMP_ELEMENT_PATH                         "/tmp/"
183
184 /* NOTE : following content should be same with above default values */
185 /* FIXIT : need smarter way to generate default ini file. */
186 /* FIXIT : finally, it should be an external file */
187 #define MM_PLAYER_DEFAULT_INI \
188 "\
189 [general] \n\
190 \n\
191 disable segtrap = yes ; same effect with --gst-disable-segtrap \n\
192 \n\
193 ; set default video sink but, it can be replaced with others selected by application\n\
194 ; 0:v4l2sink, 1:ximagesink, 2:xvimagesink, 3:fakesink 4:evasimagesink 5:glimagesink\n\
195 videosink element = 2 \n\
196 \n\
197 video converter element = \n\
198 \n\
199 audiosink element = pulsesink \n\
200 \n\
201 ; if yes. gstreamer will not update registry \n\
202 skip rescan = yes \n\
203 \n\
204 delay before repeat = 50 ; msec\n\
205 \n\
206 ; comma separated list of tocken which elemnts has it in it's name will not be used \n\
207 element exclude keyword = \n\
208 \n\
209 ; comma separated list of tocken \n\
210 unsupported codec keyword = \n\
211 \n\
212 async start = yes \n\
213 \n\
214 ; parameters for initializing gstreamer \n\
215 gstparam1 = --gst-debug=2\n\
216 gstparam2 = \n\
217 gstparam3 = \n\
218 gstparam4 = \n\
219 gstparam5 = \n\
220 \n\
221 ; generating dot file representing pipeline state \n\
222 ; export GST_DEBUG_DUMP_DOT_DIR=/tmp/\n\
223 generate dot = no \n\
224 \n\
225 ; parameter is for only video to be determined \n\
226 ; which clock will be used \n\
227 ; if yes, system clock will be used \n\
228 ; apart from this, audiosink is clock provider for audio \n\
229 use system clock = yes \n\
230 \n\
231 ; allowed timeout for changing pipeline state \n\
232 live state change timeout = 30 ; sec \n\
233 localplayback state change timeout = 4 ; sec \n\
234 \n\
235 ; delay in msec for sending EOS \n\
236 eos delay = 150 ; msec \n\
237 \n\
238 \n\
239 [http streaming] \n\
240 \n\
241 httppsrc element = souphttpsrc \n\
242 \n\
243 ; if yes, use file for buffering.\n\
244 ; if no, use memory for buffering.\n\
245 http use file buffer = no\n\
246 \n\
247 ; ring buffer size when use mem buffer \n\
248 http ring buffer size = 20971520 ; 20MBytes \n\
249 \n\
250 http buffering limit = 99 ; percent\n\
251 \n\
252 http max size bytes = 1048576 ; bytes\n\
253 \n\
254 http buffering time = 1.2 \n\
255 \n\
256 http timeout = -1 ; infinite retry \n\
257 \n\
258 "
259
260 int
261 mm_player_ini_load(mmplayer_ini_t *ini);
262
263 int
264 mm_player_audio_effect_ini_load(mmplayer_ini_t *ini);
265
266 #ifdef __cplusplus
267         }
268 #endif
269
270 #endif