This file is indexed.

/usr/include/gpac/html5_media.h is in libgpac-dev 0.5.0+svn5324~dfsg1-1+b3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
/*
 *			GPAC - Multimedia Framework C SDK
 *
 *			Authors: Cyril Concolato
 *			Copyright (c) Telecom ParisTech 2013-
 *					All rights reserved
 *
 *  This file is part of GPAC / HTML Media Element header
 *
 *  GPAC 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, or (at your option)
 *  any later version.
 *
 *  GPAC 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 this library; see the file COPYING.  If not, write to
 *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
 *
 */


#ifndef _GF_HTMLMEDIA_H_
#define _GF_HTMLMEDIA_H_

#ifdef __cplusplus
extern "C" {
#endif

#include <gpac/internal/scenegraph_dev.h>

/*base SVG type*/
#include <gpac/nodes_svg.h>
/*dom events*/
#include <gpac/events.h>
/*dom text event*/
#include <gpac/utf.h>

#include <gpac/download.h>
#include <gpac/network.h>
#include <gpac/modules/service.h>
#include <gpac/xml.h>
#include <gpac/internal/terminal_dev.h>

#ifdef GPAC_HAS_SPIDERMONKEY
#include <gpac/internal/smjs_api.h>
#endif

typedef struct
{
	u32 nb_inst;
	/* Basic classes */
	GF_JSClass  arrayBufferClass;

	/*HTML Media classes*/
	GF_JSClass  htmlVideoElementClass;
	GF_JSClass  htmlAudioElementClass;
	GF_JSClass  htmlSourceElementClass;
	GF_JSClass  htmlTrackElementClass;
	GF_JSClass  htmlMediaElementClass;
	GF_JSClass  mediaControllerClass;
	GF_JSClass  audioTrackListClass;
	GF_JSClass  audioTrackClass;
	GF_JSClass  videoTrackListClass;
	GF_JSClass  videoTrackClass;
	GF_JSClass  textTrackListClass;
	GF_JSClass  textTrackClass;
	GF_JSClass  textTrackCueListClass;
	GF_JSClass  textTrackCueClass;
	GF_JSClass  timeRangesClass;
	GF_JSClass  trackEventClass;
	GF_JSClass  mediaErrorClass;

	/* Media Source Extensions */
	GF_JSClass  mediaSourceClass;
	GF_JSClass  sourceBufferClass;
	GF_JSClass  sourceBufferListClass;
	GF_JSClass  URLClass;

	/* Media Capture */
	GF_JSClass  mediaStreamClass;
	GF_JSClass  localMediaStreamClass;
	GF_JSClass  mediaStreamTrackClass;
	GF_JSClass  mediaStreamTrackListClass;
	GF_JSClass  navigatorUserMediaClass;
	GF_JSClass  navigatorUserMediaErrorClass;
} GF_HTML_MediaRuntime;

/************************************************************
 *
 *  HTML 5 Media Element
 *  http://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#media-element
 *
 *************************************************************/

typedef enum
{
	MEDIA_ERR_ABORTED           = 1,
	MEDIA_ERR_NETWORK           = 2,
	MEDIA_ERR_DECODE            = 3,
	MEDIA_ERR_SRC_NOT_SUPPORTED = 4
} GF_HTML_MediaErrorCode;

typedef enum
{
	NETWORK_EMPTY               = 0,
	NETWORK_IDLE                = 1,
	NETWORK_LOADING             = 2,
	NETWORK_NO_SOURCE           = 3
} GF_HTML_NetworkState;

typedef enum
{
	HAVE_NOTHING                = 0,
	HAVE_METADATA               = 1,
	HAVE_CURRENT_DATA           = 2,
	HAVE_FUTURE_DATA            = 3,
	HAVE_ENOUGH_DATA            = 4
} GF_HTML_MediaReadyState;

typedef struct
{
	/* JavaScript context associated to this object */
	JSContext               *c;
	/* JavaScript counterpart */
	JSObject                *_this;

	GF_HTML_MediaErrorCode   code;
} GF_HTML_MediaError;

typedef struct _timerange
{
	/* JavaScript context associated to this object */
	JSContext               *c;
	/* JavaScript counterpart */
	JSObject                *_this;

	GF_List                 *times;
	u32						timescale;
} GF_HTML_MediaTimeRanges;

typedef enum {
	HTML_MEDIA_TRACK_TYPE_UNKNOWN = 0,
	HTML_MEDIA_TRACK_TYPE_AUDIO = 1,
	HTML_MEDIA_TRACK_TYPE_VIDEO = 2,
	HTML_MEDIA_TRACK_TYPE_TEXT  = 3
} GF_HTML_TrackType;

#define BASE_HTML_TRACK     \
    /* JavaScript context associated to this object */\
    JSContext               *c;\
    /* JavaScript counterpart */\
    JSObject                *_this;\
    /* GPAC-specific properties */\
    u32                     bin_id;    /* track id */\
    LPNETCHANNEL            channel;   /* channel object used by the terminal */\
    GF_ObjectDescriptor     *od;       /* MPEG-4 Object descriptor for this track */\
    GF_List                 *buffer;   /* List of MSE Packets */\
    u32						packet_index;   /* index of MSE Packets*/\
    GF_Mutex                *buffer_mutex;\
    Bool                    last_dts_set; \
    u64						last_dts; /* MSE  last decode timestamp (in timescale units)*/ \
    u32						last_dur; /* MSE  last frame duration (in timescale units)*/ \
    Bool                    highest_pts_set; \
    u64						highest_pts; /* MSE highest presentation timestamp (in timescale units)*/ \
    Bool                    needs_rap; /* MSE  need random access point flag */ \
    u32                     timescale; /* used by time stamps in MSE Packets */ \
    s64                     timestampOffset; /* MSE SourceBuffer value (in timescale units) */ \
    /* standard HTML properties */ \
    GF_HTML_TrackType        type;\
    char                    *id;\
    char                    *kind;\
    char                    *label;\
    char                    *language;\
    char                    *mime; \
    Bool                    enabled_or_selected;

typedef struct
{
	BASE_HTML_TRACK
} GF_HTML_Track;

typedef struct
{
	BASE_HTML_TRACK
	JSFunction				*oncuechange;
	char                    *inBandMetadataTrackDispatchType;
	//GF_HTMLTextTrackMode    mode;
	//GF_HTMLTextTrackCueList cues;
	//GF_HTMLTextTrackCueList activeCues;
} GF_HTML_TextTrack;

#define BASE_HTML_TRACK_LIST     \
    /* JavaScript context associated to this object */\
    JSContext               *c;\
    /* JavaScript counterpart */\
    JSObject                *_this;\
    GF_List                 *tracks; \
	jsval					onchange; \
	jsval					onaddtrack; \
	jsval					onremovetrack; \
    u32                     selected_index;

typedef struct
{
	BASE_HTML_TRACK_LIST
} GF_HTML_TrackList;

typedef enum
{
	MEDIA_CONTROLLER_WAITING = 0,
	MEDIA_CONTROLLER_PLAYING = 1,
	MEDIA_CONTROLLER_ENDED   = 2
} GF_HTML_MediaControllerPlaybackState;

typedef struct
{
	/* JavaScript context associated to this object */
	JSContext               *c;
	/* JavaScript counterpart */
	JSObject                *_this;

	GF_HTML_MediaTimeRanges  *buffered;
	GF_HTML_MediaTimeRanges  *seekable;
	GF_HTML_MediaTimeRanges  *played;
	Bool                    paused;
	GF_HTML_MediaControllerPlaybackState playbackState;
	double                  defaultPlaybackRate;

	/* list of media elements using this media controller */
	GF_List                 *media_elements;
} GF_HTML_MediaController;

typedef struct
{
	/* JavaScript context associated to this object */
	JSContext               *c;
	/* JavaScript counterpart */
	JSObject                *_this;

	/* The audio or video node */
	GF_Node                 *node;

	/* error state */
	GF_HTML_MediaError       error;

	/* src: not stored in this structure,
	        using the value stored in the node ( see HTML 5 "must reflect the content of the attribute")*/
	/* currentSrc: the actual source used for the video (src attribute on video, audio or source elements) */
	char                    *currentSrc;
	/* crossOrigin: "must reflect the content of the attribute of the same name", use the node */
	/* networkState: retrieved dynamically from GPAC Service */
	/* preload: "must reflect the content of the attribute of the same name", use the node */
	GF_HTML_MediaTimeRanges  *buffered;
	/* ready state */
	/* readyState: retrieved from GPAC Media Object dynamically */
	Bool                    seeking;

	/* playback state */
	/* currentTime: retrieved from GPAC Media Object */
	/* duration: retrieved from GPAC Media Object */
	char                    *startDate;
	Bool                    paused;
	double                  defaultPlaybackRate;
	GF_HTML_MediaTimeRanges  *played;
	GF_HTML_MediaTimeRanges  *seekable;
	/* ended: retrieved from the state of GPAC Media Object */
	/* autoplay: "must reflect the content of the attribute of the same name", use the node */
	/* loop: "must reflect the content of the attribute of the same name", use the node */

	/* media controller*/
	/* mediaGroup: "must reflect the content of the attribute of the same name", use the node */
	GF_HTML_MediaController  *controller;

	/* controls*/
	/* controls: "must reflect the content of the attribute of the same name", use the node */
	/* volume: retrieved from GPAC Audio Input in GPAC Media Object */
	/* muted: retrieved from GPAC media object */
	/* defaultMuted: "must reflect the content of the attribute of with the name" muted */

	/* tracks*/
	GF_HTML_TrackList        audioTracks;
	GF_HTML_TrackList        videoTracks;
	GF_HTML_TrackList        textTracks;

	GF_DOMEventTarget		 *evt_target;
} GF_HTML_MediaElement;

typedef struct
{
	/* JavaScript context used to create the JavaScript object below */
	JSContext               *c;

	/* JavaScript counterpart for this object*/
	JSObject                *_this;

	char    *data;
	u32     length;
	char    *url;
	Bool	is_init;

	/* used to do proper garbage collection between JS and Terminal */
	u32     reference_count;
} GF_HTML_ArrayBuffer;

/*
 * TimeRanges
 */
GF_HTML_MediaTimeRanges *gf_html_timeranges_new(u32 timescale);
GF_Err gf_html_timeranges_add_start(GF_HTML_MediaTimeRanges *timeranges, u64 start);
GF_Err gf_html_timeranges_add_end(GF_HTML_MediaTimeRanges *timeranges, u64 end);
void	gf_html_timeranges_reset(GF_HTML_MediaTimeRanges *range);
void	gf_html_timeranges_del(GF_HTML_MediaTimeRanges *range);
GF_HTML_MediaTimeRanges *gf_html_timeranges_intersection(GF_HTML_MediaTimeRanges *a, GF_HTML_MediaTimeRanges *b);
GF_HTML_MediaTimeRanges *gf_html_timeranges_union(GF_HTML_MediaTimeRanges *a, GF_HTML_MediaTimeRanges *b);

/*
 * HTML5 TrackList
 */
GF_HTML_Track *html_media_add_new_track_to_list(GF_HTML_TrackList *tracklist,
        GF_HTML_TrackType type, const char *mime, Bool enable_or_selected,
        const char *id, const char *kind, const char *label, const char *lang);
Bool html_media_tracklist_has_track(GF_HTML_TrackList *tracklist, const char *id);
GF_HTML_Track *html_media_tracklist_get_track(GF_HTML_TrackList *tracklist, const char *id);
void gf_html_tracklist_del(GF_HTML_TrackList *tlist);

/*
 * HTML5 Tracks
 */
GF_HTML_Track *gf_html_media_track_new(GF_HTML_TrackType type, const char *mime, Bool enable_or_selected,
                                       const char *id, const char *kind, const char *label, const char *lang);
void gf_html_track_del(GF_HTML_Track *track);

/*
 * HTML5 Media Element
 */
GF_HTML_MediaElement *gf_html_media_element_new(GF_Node *media_node, GF_HTML_MediaController *mc);
void gf_html_media_element_del(GF_HTML_MediaElement *me);

void html_media_element_js_init(JSContext *c, JSObject *new_obj, GF_Node *n);

/*
 * HTML5 Media Controller
 */
GF_HTML_MediaController *gf_html_media_controller_new();
void gf_html_media_controller_del(GF_HTML_MediaController *mc);

/*
 * HTML5 Array Buffer
 */
GF_HTML_ArrayBuffer *gf_arraybuffer_new(char *data, u32 length);
JSObject *gf_arraybuffer_js_new(JSContext *c, char *data, u32 length, JSObject *parent);
void gf_arraybuffer_del(GF_HTML_ArrayBuffer *buffer, Bool del_js);

#ifdef __cplusplus
}
#endif

#endif	// _GF_HTMLMEDIA_H_