9bdb2599db6ee059bc0d155313a579739c7885d7
[platform/core/multimedia/libmm-player.git] / src / include / mm_player_tracks.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  * 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_TRACKS_H__
24 #define __MM_PLAYER_TRACKS_H__
25
26 #include "mm_player_priv.h"
27
28 #ifdef __cplusplus
29         extern "C" {
30 #endif
31
32 #define DEFAULT_TRACK 0
33
34 void _mmplayer_track_initialize(mmplayer_t *player);
35
36 void _mmplayer_track_destroy(mmplayer_t *player);
37
38 void _mmplayer_track_update_stream(mmplayer_t *player, mmplayer_track_type_e type, void *stream);
39
40 void _mmplayer_track_update_text_attr_info(mmplayer_t *player, GstMessage *msg);
41
42 int _mmplayer_get_track_count(MMHandleType hplayer,  mmplayer_track_type_e type, int *count);
43
44 int _mmplayer_select_track(MMHandleType hplayer, mmplayer_track_type_e type, int index);
45
46 int _mmplayer_get_track_language_code(MMHandleType hplayer, mmplayer_track_type_e type, int index, char **code);
47
48 int _mmplayer_get_current_track(MMHandleType hplayer, mmplayer_track_type_e type, int *index);
49 #ifdef __cplusplus
50         }
51 #endif
52
53 #endif /* __MM_PLAYER_TRACKS_H__ */