Project:
DeaDBeeF
Code Location:
git://deadbeef.git.sourceforge.net/gitroot/deadbeef/deadbeefmaster
/
Outline
- > S playItem_s
plugins.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
/* This file is part of Deadbeef Player source code http://deadbeef.sourceforge.net plugin management Copyright (C) 2009-2012 Alexey Yakovenko This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. Alexey Yakovenko waker@users.sourceforge.net */ #ifndef __PLUGINS_H #define __PLUGINS_H #include "deadbeef.h" extern DB_functions_t *deadbeef; struct playItem_s; int plug_load_all (void); void plug_unload_all (void); void plug_connect_all (void); void plug_disconnect_all (void); void plug_cleanup (void); void plug_ev_subscribe (DB_plugin_t *plugin, int ev, DB_callback_t callback, uintptr_t data); void plug_ev_unsubscribe (DB_plugin_t *plugin, int ev, DB_callback_t callback, uintptr_t data); void plug_md5 (uint8_t sig[16], const char *in, int len); void plug_md5_to_str (char *str, const uint8_t sig[16]); float plug_playback_get_pos (void); void plug_playback_set_pos (float pos); struct DB_plugin_s ** plug_get_list (void); struct DB_decoder_s ** plug_get_decoder_list (void); struct DB_output_s ** plug_get_output_list (void); struct DB_vfs_s ** plug_get_vfs_list (void); struct DB_dsp_s ** plug_get_dsp_list (void); struct DB_playlist_s ** plug_get_playlist_list (void); void plug_volume_set_db (float db); void plug_volume_set_amp (float amp); const char * plug_get_config_dir (void); const char * plug_get_prefix (void); const char * plug_get_doc_dir (void); const char * plug_get_plugin_dir (void); const char * plug_get_pixmap_dir (void); int plug_activate (DB_plugin_t *plug, int activate); DB_output_t * plug_get_output (void); void plug_reinit_sound (void); int plug_select_output (void); const char * plug_get_decoder_id (const char *id); void plug_remove_decoder_id (const char *id); void plug_free_decoder_ids (void); DB_decoder_t * plug_get_decoder_for_id (const char *id); DB_plugin_t * plug_get_for_id (const char *id); int plug_is_local_file (const char *fname); const char ** plug_get_gui_names (void); void plug_event_call (ddb_event_t *ev); #endif // __PLUGINS_H
