/usr/include/gpac/media_tools.h is in libgpac-dev 0.4.5+svn3462~dfsg0-1.
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 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 | /*
* GPAC - Multimedia Framework C SDK
*
* Copyright (c) Jean Le Feuvre 2000-2005
* All rights reserved
*
* This file is part of GPAC / Authoring Tools sub-project
*
* 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_MEDIA_H_
#define _GF_MEDIA_H_
#ifdef __cplusplus
extern "C" {
#endif
#include <gpac/isomedia.h>
#include <gpac/avparse.h>
#ifndef GPAC_DISABLE_ISOM
/*creates (if needed) a GF_ESD for the given track - THIS IS RESERVED for local playback
only, since the OTI used when emulated is not standard...*/
GF_ESD *gf_media_map_esd(GF_ISOFile *mp4, u32 track);
#endif
#ifndef GPAC_DISABLE_MEDIA_IMPORT
/*
track importers
All these can import a file into a dedicated track. If esd is NULL the track is blindly added
otherwise it is added with the requested ESID if non-0, otherwise the new trackID is stored in ESID
if use_data_ref is set, data is only referenced in the file
if duration is not 0, only the first duration seconds are imported
NOTE: if an ESD is specified, its decoderSpecificInfo is also updated
*/
/*track importer flags*/
enum
{
/*references data rather than copy, whenever possible*/
GF_IMPORT_USE_DATAREF = 1,
/*for AVI video: imports at constant FPS (eg imports N-Vops due to encoder drops)*/
GF_IMPORT_NO_FRAME_DROP = 1<<1,
/*for CMP ASP only: forces treating the input as packed bitsream and discards all n-vops*/
GF_IMPORT_FORCE_PACKED = 1<<2,
/*for AAC audio: forces SBR mode with implicit signaling (backward compatible)*/
GF_IMPORT_SBR_IMPLICIT = 1<<3,
/*for AAC audio: forces SBR mode with explicit signaling (non-backward compatible).
Will override GF_IMPORT_SBR_IMPLICIT flag when set*/
GF_IMPORT_SBR_EXPLICIT = 1<<4,
/*forces MPEG-4 import - some 3GP2 streams have both native IsoMedia sample description and MPEG-4 one possible*/
GF_IMPORT_FORCE_MPEG4 = 1<<5,
/*special flag for text import at run time (never set on probe), indicates to leave the text box empty
so that we dynamically adapt to display size*/
GF_IMPORT_SKIP_TXT_BOX = 1<<6,
/*indicates to keep unknown tracks from .MOV/.IsoMedia files*/
GF_IMPORT_KEEP_ALL_TRACKS = 1<<7,
/*uses compact size in .MOV/.IsoMedia files*/
GF_IMPORT_USE_COMPACT_SIZE = 1<<8,
/*don't add a final empty sample when importing text tracks from srt*/
GF_IMPORT_NO_TEXT_FLUSH = 1<<9,
/*for SVC video: forces explicit SVC signaling */
GF_IMPORT_SVC_EXPLICIT = 1<<10,
/*for SVC video: removes all SVC extensions*/
GF_IMPORT_SVC_NONE = 1<<11,
/*for AAC audio: forces PS mode with implicit signaling (backward compatible)*/
GF_IMPORT_PS_IMPLICIT = 1<<12,
/*for AAC audio: forces PS mode with explicit signaling (non-backward compatible).
Will override GF_IMPORT_PS_IMPLICIT flag when set*/
GF_IMPORT_PS_EXPLICIT = 1<<13,
/* oversampled SBR */
GF_IMPORT_OVSBR = 1<<14,
/* set subsample information with SVC*/
GF_IMPORT_SET_SUBSAMPLES = 1<<15,
/*when set, only updates tracks info and return*/
GF_IMPORT_PROBE_ONLY = 1<<20,
/*only set when probing, signals several frames per sample possible*/
GF_IMPORT_3GPP_AGGREGATION = 1<<21,
/*only set when probing, signals video FPS overridable*/
GF_IMPORT_OVERRIDE_FPS = 1<<22,
/*only set when probing, signals duration not usable*/
GF_IMPORT_NO_DURATION = 1<<23,
/*when set IP packets found in MPE sections will be sent to the local network */
GF_IMPORT_MPE_DEMUX = 1<<24,
/*when set by user during import, will abort*/
GF_IMPORT_DO_ABORT = 1<<31
};
#define GF_IMPORT_DEFAULT_FPS 25.0
#define GF_IMPORT_AUTO_FPS 10000.0
#define GF_IMPORT_MAX_TRACKS 100
struct __track_video_info
{
u32 width, height, par;
Double FPS;
};
struct __track_audio_info
{
u32 sample_rate, nb_channels;
};
struct __track_import_info
{
u32 track_num;
/*track type (GF_ISOM_MEDIA_****)*/
u32 type;
/*media type ('MPG1', 'MPG2', ISO 4CC, AVI 4CC)*/
u32 media_type;
/*possible import flags*/
u32 flags;
/*media format info*/
struct __track_video_info video_info;
struct __track_audio_info audio_info;
u32 lang;
/*for MPEG4 on MPEG-2 TS: mpeg4 ES-ID*/
u32 mpeg4_es_id;
/*for MPEG2 TS: program number*/
u16 prog_num;
};
struct __program_import_info
{
u32 number;
char name[40];
};
/*track dumper*/
typedef struct __track_import
{
GF_ISOFile *dest;
/*media to import:
MP4/ISO media: trackID
AVI files:
0: first video and first audio,
1: video track
2->any: audio track(s)
MPEG-PS files with N video streams:
0: first video and first audio
1->N: video track
N+1->any: audio track
TrackNums can be obtain with probing
*/
u32 trackID;
/*media source - selects importer type based on extension*/
char *in_name;
/*import duration if any*/
u32 duration;
/*importer flags*/
u32 flags;
/*if non 0, force video FPS (CMP, AVI, OGG, H264) - also used by SUB import*/
Double video_fps;
/*optional ESD*/
GF_ESD *esd;
/*optional format indication for media source (used in IM1)*/
char *streamFormat;
/*frame per sample cumulation (3GP media only) - MAX 15, ignored in data ref*/
u32 frames_per_sample;
/*track ID of imported media in destination file*/
u32 final_trackID;
/*optional format indication for media source (used in IM1)*/
char *force_ext;
/*for MP4 import only*/
GF_ISOFile *orig;
/*for text import*/
u32 fontSize;
char *fontName;
u32 twidth, theight;
/*Initial offset of the first AU to import*/
Double initial_time_offset;
/*number of tracks after probing - may be set to 0, in which case no track
selection can be performed. It may also be inaccurate if probing doesn't
detect all available tracks (cf ogg import)*/
u32 nb_tracks;
/*track info after probing (GF_IMPORT_PROBE_ONLY set).*/
struct __track_import_info tk_info[GF_IMPORT_MAX_TRACKS];
/*for MPEG-TS and similar: program names*/
u32 nb_progs;
struct __program_import_info pg_info[GF_IMPORT_MAX_TRACKS];
GF_Err last_error;
} GF_MediaImporter;
GF_Err gf_media_import(GF_MediaImporter *importer);
/*adds chapter info contained in file - import_fps is optional (most formats don't use it), defaults to 25*/
GF_Err gf_media_import_chapters(GF_ISOFile *file, char *chap_file, Double import_fps);
/*save file as fragmented movie
@dash_mode: 0 = DASH not used, 1 = DASH used without GOP spliting, 2 = DASH used with GOP spliting, */
GF_Err gf_media_fragment_file(GF_ISOFile *input, char *output_file, Double max_duration_sec, u32 dash_mode, Double dash_duration_sec, char *seg_rad_name, char *seg_ext, s32 fragments_per_sidx, Bool daisy_chain_sidx, Bool use_url_template, const char *dash_ctx);
/*make the file ISMA compliant: creates ISMA BIFS / OD tracks if needed, and update audio/video IDs
the file should not contain more than one audio and one video track
@keepImage: if set, generates system info if image is found - only used for image imports
*/
GF_Err gf_media_make_isma(GF_ISOFile *mp4file, Bool keepESIDs, Bool keepImage, Bool no_ocr);
/*make the file 3GP compliant && sets profile
*/
GF_Err gf_media_make_3gpp(GF_ISOFile *mp4file);
/*make the file playable on a PSP
*/
GF_Err gf_media_make_psp(GF_ISOFile *mp4file);
/*changes pixel aspect ratio for visual tracks if supported. Negative values remove any PAR info*/
GF_Err gf_media_change_par(GF_ISOFile *file, u32 track, s32 ar_num, s32 ar_den);
/*changes the profile (if not 0) and level (if not 0) indication of the media - only AVC/H264 supported for now*/
GF_Err gf_media_change_pl(GF_ISOFile *file, u32 track, u32 profile, u32 level);
/*rewrite AVC samples if nalu size_length has to be changed*/
GF_Err gf_media_avc_rewrite_samples(GF_ISOFile *file, u32 track, u32 prev_size_in_bits, u32 new_size_in_bits);
#endif /*GPAC_DISABLE_MEDIA_IMPORT*/
#ifndef GPAC_DISABLE_MEDIA_EXPORT
enum
{
/*track dumper types are formatted as flags for conveniency for
authoring tools, but never used as a OR'ed set*/
/*native format (JPG, PNG, MP3, etc) if supported*/
GF_EXPORT_NATIVE = 1,
/*raw samples (including hint tracks for rtp)*/
GF_EXPORT_RAW_SAMPLES = (1<<1),
/*NHNT format (any MPEG-4 media)*/
GF_EXPORT_NHNT = (1<<2),
/*AVI (MPEG4 video and AVC tracks only)*/
GF_EXPORT_AVI = (1<<3),
/*MP4 (all except OD)*/
GF_EXPORT_MP4 = (1<<4),
/*AVI->RAW to dump video (trackID=1) or audio (trackID>=2)*/
GF_EXPORT_AVI_NATIVE = (1<<5),
/*NHML format (any media)*/
GF_EXPORT_NHML = (1<<6),
/*SAF format*/
GF_EXPORT_SAF = (1<<7),
/*following ones are real flags*/
/*
for MP4 extraction, indicates track should be added to dest file if any
for raw extraction, indicates data shall be appended at the end of output file if present
*/
GF_EXPORT_MERGE = (1<<10),
/*indicates QCP file format possible as well as native (EVRC and SMV audio only)*/
GF_EXPORT_USE_QCP = (1<<11),
/*indicates full NHML dump*/
GF_EXPORT_NHML_FULL = (1<<11),
/*ony probes extraction format*/
GF_EXPORT_PROBE_ONLY = (1<<30),
/*when set by user during export, will abort*/
GF_EXPORT_DO_ABORT = (1<<31),
};
/*track dumper*/
typedef struct __track_exporter
{
GF_ISOFile *file;
u32 trackID;
/*sample number to export for GF_EXPORT_RAW_SAMPLES only*/
u32 sample_num;
/*out name WITHOUT extension*/
char *out_name;
/*dump type*/
u32 flags;
/*non-IsoMedia file (AVI)*/
char *in_name;
} GF_MediaExporter;
/*if error returns same value as error signaled in message*/
GF_Err gf_media_export(GF_MediaExporter *dump);
#endif /*GPAC_DISABLE_MEDIA_EXPORT*/
#ifndef GPAC_DISABLE_ISOM_HINTING
/*
RTP IsoMedia file hinting
*/
typedef struct __tag_isom_hinter GF_RTPHinter;
GF_RTPHinter *gf_hinter_track_new(GF_ISOFile *file, u32 TrackNum,
u32 Path_MTU, u32 max_ptime, u32 default_rtp_rate, u32 hint_flags, u8 PayloadID,
Bool copy_media, u32 InterleaveGroupID, u8 InterleaveGroupPriority, GF_Err *e);
/*delete the track hinter*/
void gf_hinter_track_del(GF_RTPHinter *tkHinter);
/*hints all samples in the media track*/
GF_Err gf_hinter_track_process(GF_RTPHinter *tkHint);
/*returns media bandwidth in kbps*/
u32 gf_hinter_track_get_bandwidth(GF_RTPHinter *tkHinter);
/*retrieves hinter flags*/
u32 gf_hinter_track_get_flags(GF_RTPHinter *tkHinter);
/*retrieves rtp payload name
@payloadName: static buffer for retrieval, minimum 30 bytes
*/
void gf_hinter_track_get_payload_name(GF_RTPHinter *tkHint, char *payloadName);
/*finalizes hinting process for the track (setup flags, write SDP for RTP, ...)
@AddSystemInfo: if non-0, systems info are duplicated in the SDP (decoder cfg, PL IDs ..)
*/
GF_Err gf_hinter_track_finalize(GF_RTPHinter *tkHint, Bool AddSystemInfo);
/*SDP IOD flag*/
enum
{
/*no IOD included*/
GF_SDP_IOD_NONE = 0,
/*base64 encoding of the regular MPEG-4 IOD*/
GF_SDP_IOD_REGULAR,
/*base64 encoding of IOD containing BIFS and OD tracks (one AU only) - this is used for ISMA 1.0 profiles
note that the "hinted" file will loose all systems info*/
GF_SDP_IOD_ISMA,
/*same as ISMA but removes all clock references from IOD*/
GF_SDP_IOD_ISMA_STRICT,
};
/*finalizes hinting process for the file (setup flags, write SDP for RTP, ...)
@IOD_Profile: see above
@bandwidth: total bandwidth in kbps of all hinted tracks, 0 means no bandwidth info at session level
*/
GF_Err gf_hinter_finalize(GF_ISOFile *file, u32 IOD_Profile, u32 bandwidth);
/*returns TRUE if the encoded data fits in an ESD url - streamType is the systems stream type needed to
signal data mime-type (OD, BIFS or any) */
Bool gf_hinter_can_embbed_data(char *data, u32 data_size, u32 streamType);
#endif /*GPAC_DISABLE_ISOM_HINTING*/
/*SAF Multiplexer object. The multiplexer supports concurencial (multi-threaded) access*/
typedef struct __saf_muxer GF_SAFMuxer;
/*SAF Multiplexer constructor*/
GF_SAFMuxer *gf_saf_mux_new();
/*SAF Multiplexer destructor*/
void gf_saf_mux_del(GF_SAFMuxer *mux);
/*adds a new stream in the SAF multiplex*/
GF_Err gf_saf_mux_stream_add(GF_SAFMuxer *mux, u32 stream_id, u32 ts_res, u32 buffersize_db, u8 stream_type, u8 object_type, char *mime_type, char *dsi, u32 dsi_len, char *remote_url);
/*removes a stream from the SAF multiplex*/
GF_Err gf_saf_mux_stream_rem(GF_SAFMuxer *mux, u32 stream_id);
/*adds an AU to the given stream. !!AU data will be freed by the multiplexer!!
AUs are not reinterleaved based on their CTS, in order to enable audio interleaving
*/
GF_Err gf_saf_mux_add_au(GF_SAFMuxer *mux, u32 stream_id, u32 CTS, char *data, u32 data_len, Bool is_rap);
/*gets the content of the multiplexer for the given time.
if force_end_of_session is set, this flushes the SAF Session - no more operations will be allowed on the muxer*/
GF_Err gf_saf_mux_for_time(GF_SAFMuxer *mux, u32 time_ms, Bool force_end_of_session, char **out_data, u32 *out_size);
#ifdef __cplusplus
}
#endif
#endif /*_GF_MEDIA_H_*/
|