forked from ArduPilot/MissionPlanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLibVLCLibrary.Media.cs
398 lines (314 loc) · 14.1 KB
/
LibVLCLibrary.Media.cs
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
////////////////////////////////////////////////////////////////////////////////
//
// LibVLCLibrary.Media.cs - This file is part of LibVLC.NET.
//
// Copyright (C) 2011 Boris Richter <[email protected]>
//
// ==========================================================================
//
// LibVLC.NET is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation; either version 2.1 of the License, or (at
// your option) any later version.
//
// LibVLC.NET is distributed in the hope that it will be useful, but WITHOUT
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
// License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with LibVLC.NET; if not, see http://www.gnu.org/licenses/.
//
// ==========================================================================
//
// $LastChangedRevision$
// $LastChangedDate$
// $LastChangedBy$
//
////////////////////////////////////////////////////////////////////////////////
using System;
using System.Runtime.InteropServices;
using System.Text;
using System.Linq;
using System.Collections.Generic;
#pragma warning disable 1591
namespace LibVLC.NET
{
//****************************************************************************
partial class LibVLCLibrary
{
//==========================================================================
public enum libvlc_meta_t
: int
{
libvlc_meta_Title,
libvlc_meta_Artist,
libvlc_meta_Genre,
libvlc_meta_Copyright,
libvlc_meta_Album,
libvlc_meta_TrackNumber,
libvlc_meta_Description,
libvlc_meta_Rating,
libvlc_meta_Date,
libvlc_meta_Setting,
libvlc_meta_URL,
libvlc_meta_Language,
libvlc_meta_NowPlaying,
libvlc_meta_Publisher,
libvlc_meta_EncodedBy,
libvlc_meta_ArtworkURL,
libvlc_meta_TrackID
}
//==========================================================================
public enum libvlc_state_t
: int
{
libvlc_NothingSpecial = 0,
libvlc_Opening,
libvlc_Buffering,
libvlc_Playing,
libvlc_Paused,
libvlc_Stopped,
libvlc_Ended,
libvlc_Error
}
//==========================================================================
[StructLayout(LayoutKind.Sequential)]
public struct libvlc_media_track_info_t_audio
{
public uint i_channels;
public uint i_rate;
}
//==========================================================================
[StructLayout(LayoutKind.Sequential)]
public struct libvlc_media_track_info_t_video
{
public uint i_height;
public uint i_width;
}
//==========================================================================
public enum libvlc_track_type_t
: int
{
libvlc_track_unknown = -1,
libvlc_track_audio = 0,
libvlc_track_video = 1,
libvlc_track_text = 2
}
//==========================================================================
[StructLayout(LayoutKind.Explicit)]
public struct libvlc_media_track_info_t
{
/* Codec fourcc */
[FieldOffset(0)]
public uint i_codec;
[FieldOffset(4)]
public int i_id;
[FieldOffset(8)]
public libvlc_track_type_t i_type;
[FieldOffset(12)]
public int i_profile;
[FieldOffset(16)]
public int i_level;
[FieldOffset(20)]
public libvlc_media_track_info_t_audio audio;
[FieldOffset(20)]
public libvlc_media_track_info_t_video video;
}
//==========================================================================
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate IntPtr libvlc_media_new_location_signature(IntPtr p_instance, string psz_mrl);
//==========================================================================
private readonly libvlc_media_new_location_signature m_libvlc_media_new_location;
//==========================================================================
public IntPtr libvlc_media_new_location(IntPtr p_instance, string psz_mrl)
{
VerifyAccess();
return m_libvlc_media_new_location(p_instance, psz_mrl);
}
//==========================================================================
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate IntPtr libvlc_media_new_path_signature(IntPtr p_instance, IntPtr psz_path);
//==========================================================================
private readonly libvlc_media_new_path_signature m_libvlc_media_new_path;
//==========================================================================
public IntPtr libvlc_media_new_path(IntPtr p_instance, string psz_path)
{
VerifyAccess();
byte[] parameter = Encoding.UTF8.GetBytes(psz_path).Concat(new byte[] { 0x00 }).ToArray();
GCHandle handle = GCHandle.Alloc(parameter, GCHandleType.Pinned);
IntPtr result = m_libvlc_media_new_path(p_instance, handle.AddrOfPinnedObject());
handle.Free();
return result;
}
//==========================================================================
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate IntPtr libvlc_media_new_as_node_signature(IntPtr p_instance, string psz_mrl);
//==========================================================================
private readonly libvlc_media_new_as_node_signature m_libvlc_media_new_as_node;
//==========================================================================
public IntPtr libvlc_media_new_as_node(IntPtr p_instance, string psz_mrl)
{
VerifyAccess();
return m_libvlc_media_new_as_node(p_instance, psz_mrl);
}
/*
void libvlc_media_add_option (libvlc_media_t *p_md, const char *ppsz_options)
void libvlc_media_add_option_flag (libvlc_media_t *p_md, const char *ppsz_options, unsigned i_flags)
void libvlc_media_retain (libvlc_media_t *p_md)
*/
//==========================================================================
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void libvlc_media_release_signature(IntPtr p_instance);
//==========================================================================
private readonly libvlc_media_release_signature m_libvlc_media_release;
//==========================================================================
public void libvlc_media_release(IntPtr p_instance)
{
VerifyAccess();
m_libvlc_media_release(p_instance);
}
//==========================================================================
// char * libvlc_media_get_mrl (libvlc_media_t *p_md)
//==========================================================================
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate IntPtr libvlc_media_get_mrl_signature(IntPtr p_md);
//==========================================================================
private readonly libvlc_media_get_mrl_signature m_libvlc_media_get_mrl;
//==========================================================================
public string libvlc_media_get_mrl(IntPtr p_md)
{
VerifyAccess();
List<byte> buffer = new List<byte>();
IntPtr result = m_libvlc_media_get_mrl(p_md);
if(result == IntPtr.Zero)
return null;
do
{
buffer.Add(Marshal.ReadByte(result));
result += 1;
}
while(buffer[buffer.Count - 1] != 0);
string mrl = Encoding.ASCII.GetString(buffer.ToArray(), 0, buffer.Count - 1);
return mrl;
}
/*
libvlc_media_t * libvlc_media_duplicate (libvlc_media_t *p_md)
char * libvlc_media_get_meta (libvlc_media_t *p_md, libvlc_meta_t e_meta)
void libvlc_media_set_meta (libvlc_media_t *p_md, libvlc_meta_t e_meta, const char *psz_value)
int libvlc_media_save_meta (libvlc_media_t *p_md)
libvlc_state_t libvlc_media_get_state (libvlc_media_t *p_md)
int libvlc_media_get_stats (libvlc_media_t *p_md, libvlc_media_stats_t *p_stats)
*/
//==========================================================================
// struct libvlc_media_list_t* libvlc_media_subitems (libvlc_media_t *p_md)
//==========================================================================
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate IntPtr libvlc_media_subitems_signature(IntPtr p_md);
//==========================================================================
private readonly libvlc_media_subitems_signature m_libvlc_media_subitems;
//==========================================================================
public IntPtr libvlc_media_subitems(IntPtr p_md)
{
VerifyAccess();
return m_libvlc_media_subitems(p_md);
}
//==========================================================================
// LIBVLC_API libvlc_event_manager_t* libvlc_media_event_manager ( libvlc_media_t * p_md )
//==========================================================================
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate IntPtr libvlc_media_event_manager_signature(IntPtr p_md);
//==========================================================================
private readonly libvlc_media_event_manager_signature m_libvlc_media_event_manager;
//==========================================================================
public IntPtr libvlc_media_event_manager(IntPtr p_md)
{
VerifyAccess();
return m_libvlc_media_event_manager(p_md);
}
//==========================================================================
// libvlc_time_t libvlc_media_get_duration (libvlc_media_t *p_md)
//==========================================================================
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate long libvlc_media_get_duration_signature(IntPtr p_md);
//==========================================================================
private readonly libvlc_media_get_duration_signature m_libvlc_media_get_duration;
//==========================================================================
public long libvlc_media_get_duration(IntPtr p_md)
{
VerifyAccess();
return m_libvlc_media_get_duration(p_md);
}
//==========================================================================
// void libvlc_media_parse (libvlc_media_t *p_md)
//==========================================================================
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void libvlc_media_parse_signature(IntPtr p_md);
//==========================================================================
private readonly libvlc_media_parse_signature m_libvlc_media_parse;
//==========================================================================
public void libvlc_media_parse(IntPtr p_md)
{
VerifyAccess();
m_libvlc_media_parse(p_md);
}
//==========================================================================
// void libvlc_media_parse_async (libvlc_media_t *p_md)
//==========================================================================
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void libvlc_media_parse_async_signature(IntPtr p_md);
//==========================================================================
private readonly libvlc_media_parse_async_signature m_libvlc_media_parse_async;
//==========================================================================
public void libvlc_media_parse_async(IntPtr p_md)
{
VerifyAccess();
m_libvlc_media_parse_async(p_md);
}
//==========================================================================
// int libvlc_media_is_parsed (libvlc_media_t *p_md)
//==========================================================================
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate int libvlc_media_is_parsed_signature(IntPtr p_md);
//==========================================================================
private readonly libvlc_media_is_parsed_signature m_libvlc_media_is_parsed;
//==========================================================================
public int libvlc_media_is_parsed(IntPtr p_md)
{
VerifyAccess();
return m_libvlc_media_is_parsed(p_md);
}
/*
void libvlc_media_set_user_data (libvlc_media_t *p_md, void *p_new_user_data)
void * libvlc_media_get_user_data (libvlc_media_t *p_md)
*/
//==========================================================================
// int libvlc_media_get_tracks_info (libvlc_media_t *p_md, libvlc_media_track_info_t **tracks)
//==========================================================================
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate int libvlc_media_get_tracks_info_signature(IntPtr p_md, out IntPtr tracks);
//==========================================================================
private readonly libvlc_media_get_tracks_info_signature m_libvlc_media_get_tracks_info;
//==========================================================================
public int libvlc_media_get_tracks_info(IntPtr p_md, out libvlc_media_track_info_t[] tracks)
{
VerifyAccess();
IntPtr result_buffer;
int result = m_libvlc_media_get_tracks_info(p_md, out result_buffer);
if(result < 0)
{
tracks = null;
return result;
}
IntPtr buffer = result_buffer;
tracks = new libvlc_media_track_info_t[result];
for(int i = 0; i < tracks.Length; i++)
{
tracks[i] = (libvlc_media_track_info_t)Marshal.PtrToStructure(buffer, typeof(libvlc_media_track_info_t));
buffer += Marshal.SizeOf(typeof(libvlc_media_track_info_t));
}
libvlc_free(result_buffer);
return result;
}
} // class LibVLCLibrary
}