libgpac
Documentation of the core library of GPAC
|
#include <gpac/tools.h>
Data Structures | |
struct | video_index_entry |
struct | audio_index_entry |
struct | avisuperindex_entry |
struct | avistdindex_entry |
struct | avistdindex_chunk |
struct | avisuperindex_chunk |
struct | track_t |
struct | alBITMAPINFOHEADER |
struct | alWAVEFORMATEX |
struct | alAVISTREAMHEADER |
struct | avi_t |
struct | riff_struct |
struct | chunk_struct |
struct | common_struct |
struct | wave_header |
struct | AVIStreamHeader |
Functions | |
avi_t * | AVI_open_output_file (char *filename, u64 opendml_threshold) |
void | AVI_set_video (avi_t *AVI, int width, int height, double fps, char *compressor) |
void | AVI_set_audio (avi_t *AVI, int channels, int rate, int bits, int format, int mp3rate) |
int | AVI_write_frame (avi_t *AVI, u8 *data, int bytes, int keyframe) |
int | AVI_write_audio (avi_t *AVI, u8 *data, int bytes) |
int | AVI_close (avi_t *AVI) |
avi_t * | AVI_open_input_file (char *filename, int getIndex) |
avi_t * | AVI_open_input_indexfile (char *filename, int getIndex, char *indexfile) |
avi_t * | AVI_open_indexfd (FILE *fd, int getIndex, char *indexfile) |
int | avi_parse_input_file (avi_t *AVI, int getIndex) |
int | avi_parse_index_from_file (avi_t *AVI, char *filename) |
int | AVI_audio_mp3rate (avi_t *AVI) |
int | AVI_video_frames (avi_t *AVI) |
int | AVI_video_width (avi_t *AVI) |
int | AVI_video_height (avi_t *AVI) |
double | AVI_frame_rate (avi_t *AVI) |
char * | AVI_video_compressor (avi_t *AVI) |
int | AVI_audio_channels (avi_t *AVI) |
int | AVI_audio_bits (avi_t *AVI) |
int | AVI_audio_format (avi_t *AVI) |
int | AVI_audio_rate (avi_t *AVI) |
u64 | AVI_audio_bytes (avi_t *AVI) |
int | AVI_audio_chunks (avi_t *AVI) |
int | AVI_frame_size (avi_t *AVI, int frame) |
int | AVI_audio_size (avi_t *AVI, int frame) |
u64 | AVI_get_video_position (avi_t *AVI, int frame) |
int | AVI_read_frame (avi_t *AVI, u8 *vidbuf, int *keyframe) |
int | AVI_read_audio (avi_t *AVI, u8 *audbuf, int bytes, int *continuous) |
int | AVI_seek_start (avi_t *AVI) |
int | AVI_set_video_position (avi_t *AVI, int frame) |
int | AVI_set_audio_position (avi_t *AVI, int byte) |
int | AVI_scan (char *name) |
int | AVI_dump (char *name, int mode) |
char * | AVI_codec2str (short cc) |
int | AVI_file_check (char *import_file) |
void | AVI_info (avi_t *avifile) |
int | avi_update_header (avi_t *AVI) |
int | AVI_set_audio_track (avi_t *AVI, u32 track) |
int | AVI_get_audio_track (avi_t *AVI) |
int | AVI_audio_tracks (avi_t *AVI) |
void | AVI_set_comment_fd (avi_t *AVI, int fd) |
int | AVI_get_comment_fd (avi_t *AVI) |
int | AVI_read_wave_header (int fd, struct wave_header *wave) |
int | AVI_write_wave_header (int fd, const struct wave_header *wave) |
size_t | AVI_read_wave_pcm_data (int fd, void *buffer, size_t buflen) |
size_t | AVI_write_wave_pcm_data (int fd, const void *buffer, size_t buflen) |
struct avistdindex_chunk |
struct avisuperindex_chunk |
Data Fields | ||
---|---|---|
char | fcc[4] | |
u32 | dwSize | |
u16 | wLongsPerEntry | |
u8 | bIndexSubType | |
u8 | bIndexType | |
u32 | nEntriesInUse | |
char | dwChunkId[4] | |
u32 | dwReserved[3] | |
avisuperindex_entry * | aIndex | |
avistdindex_chunk ** | stdindex |
struct track_t |
Data Fields | ||
---|---|---|
int | a_fmt | |
int | a_chans | |
int | a_rate | |
int | a_bits | |
int | mp3rate | |
int | a_vbr | |
int | padrate | |
int | audio_strn | |
u64 | audio_bytes | |
int | audio_chunks | |
char | audio_tag[4] | |
int | audio_posc | |
int | audio_posb | |
u64 | a_codech_off | |
u64 | a_codecf_off | |
audio_index_entry * | audio_index | |
avisuperindex_chunk * | audio_superindex |
struct alBITMAPINFOHEADER |
struct alWAVEFORMATEX |
struct alAVISTREAMHEADER |
struct avi_t |
Data Fields | ||
---|---|---|
FILE * | fdes | |
int | mode | |
int | width | |
int | height | |
double | fps | |
char | compressor[8] | |
char | compressor2[8] | |
u32 | video_strn | |
int | video_frames | |
char | video_tag[4] | |
int | video_pos | |
alAVISTREAMHEADER | video_stream_header | |
u32 | max_len | |
track_t | track[AVI_MAX_TRACKS] | |
s64 | pos | |
int | n_idx | |
int | max_idx | |
s64 | v_codech_off | |
s64 | v_codecf_off | |
u8(* | idx)[16] | |
video_index_entry * | video_index | |
avisuperindex_chunk * | video_superindex | |
int | is_opendml | |
s64 | last_pos | |
u32 | last_len | |
int | must_use_index | |
s64 | movi_start | |
int | total_frames | |
u32 | anum | |
u32 | aptr | |
char * | index_file | |
alBITMAPINFOHEADER * | bitmap_info_header | |
alWAVEFORMATEX * | wave_format_ex[AVI_MAX_TRACKS] | |
alAVISTREAMHEADER | stream_headers[AVI_MAX_TRACKS] | |
void * | extradata | |
unsigned int | extradata_size | |
u64 | new_riff_threshold |
struct common_struct |
struct wave_header |
Data Fields | ||
---|---|---|
struct riff_struct | riff | |
struct chunk_struct | format | |
struct common_struct | common | |
struct chunk_struct | data |
struct AVIStreamHeader |
#define AVI_MAX_TRACKS 8 |
#define AVI_INDEX_OF_INDEXES 0x00 |
#define AVI_INDEX_OF_CHUNKS 0x01 |
#define AVI_INDEX_IS_DATA 0x80 |
#define AVI_INDEX_2FIELD 0x01 |
#define AVI_MODE_WRITE 0 |
#define AVI_MODE_READ 1 |
#define AVI_ERR_SIZELIM |
#define AVI_ERR_OPEN |
#define AVI_ERR_READ 3 /* Error reading from AVI File */ |
#define AVI_ERR_WRITE |
#define AVI_ERR_WRITE_INDEX |
#define AVI_ERR_CLOSE |
#define AVI_ERR_NOT_PERM |
#define AVI_ERR_NO_MEM 8 /* malloc failed */ |
#define AVI_ERR_NO_AVI 9 /* Not an AVI file */ |
#define AVI_ERR_NO_HDRL |
#define AVI_ERR_NO_MOVI |
#define AVI_ERR_NO_VIDS 12 /* AVI file contains no video data */ |
#define AVI_ERR_NO_IDX |
#define WAVE_FORMAT_UNKNOWN (0x0000) |
#define WAVE_FORMAT_PCM (0x0001) |
#define WAVE_FORMAT_ADPCM (0x0002) |
#define WAVE_FORMAT_IBM_CVSD (0x0005) |
#define WAVE_FORMAT_ALAW (0x0006) |
#define WAVE_FORMAT_MULAW (0x0007) |
#define WAVE_FORMAT_OKI_ADPCM (0x0010) |
#define WAVE_FORMAT_DVI_ADPCM (0x0011) |
#define WAVE_FORMAT_DIGISTD (0x0015) |
#define WAVE_FORMAT_DIGIFIX (0x0016) |
#define WAVE_FORMAT_YAMAHA_ADPCM (0x0020) |
#define WAVE_FORMAT_DSP_TRUESPEECH (0x0022) |
#define WAVE_FORMAT_GSM610 (0x0031) |
#define IBM_FORMAT_MULAW (0x0101) |
#define IBM_FORMAT_ALAW (0x0102) |
#define IBM_FORMAT_ADPCM (0x0103) |
#define WAVE_FORMAT_MP3 (0x0055) |
#define WAVE_FORMAT_AAC_ADTS (0x706d) |
#define WAVE_FORMAT_AAC (0x00FF) |
#define WAVE_FORMAT_AC3 (0x2000) |
void AVI_set_video | ( | avi_t * | AVI, |
int | width, | ||
int | height, | ||
double | fps, | ||
char * | compressor | ||
) |
void AVI_set_audio | ( | avi_t * | AVI, |
int | channels, | ||
int | rate, | ||
int | bits, | ||
int | format, | ||
int | mp3rate | ||
) |
int AVI_close | ( | avi_t * | AVI | ) |
avi_t* AVI_open_input_file | ( | char * | filename, |
int | getIndex | ||
) |
avi_t* AVI_open_input_indexfile | ( | char * | filename, |
int | getIndex, | ||
char * | indexfile | ||
) |
avi_t* AVI_open_indexfd | ( | FILE * | fd, |
int | getIndex, | ||
char * | indexfile | ||
) |
int avi_parse_input_file | ( | avi_t * | AVI, |
int | getIndex | ||
) |
int avi_parse_index_from_file | ( | avi_t * | AVI, |
char * | filename | ||
) |
int AVI_audio_mp3rate | ( | avi_t * | AVI | ) |
int AVI_video_frames | ( | avi_t * | AVI | ) |
int AVI_video_width | ( | avi_t * | AVI | ) |
int AVI_video_height | ( | avi_t * | AVI | ) |
double AVI_frame_rate | ( | avi_t * | AVI | ) |
char* AVI_video_compressor | ( | avi_t * | AVI | ) |
int AVI_audio_channels | ( | avi_t * | AVI | ) |
int AVI_audio_bits | ( | avi_t * | AVI | ) |
int AVI_audio_format | ( | avi_t * | AVI | ) |
int AVI_audio_rate | ( | avi_t * | AVI | ) |
int AVI_audio_chunks | ( | avi_t * | AVI | ) |
int AVI_frame_size | ( | avi_t * | AVI, |
int | frame | ||
) |
int AVI_audio_size | ( | avi_t * | AVI, |
int | frame | ||
) |
int AVI_seek_start | ( | avi_t * | AVI | ) |
int AVI_set_video_position | ( | avi_t * | AVI, |
int | frame | ||
) |
int AVI_set_audio_position | ( | avi_t * | AVI, |
int | byte | ||
) |
int AVI_scan | ( | char * | name | ) |
int AVI_dump | ( | char * | name, |
int | mode | ||
) |
char* AVI_codec2str | ( | short | cc | ) |
int AVI_file_check | ( | char * | import_file | ) |
void AVI_info | ( | avi_t * | avifile | ) |
int avi_update_header | ( | avi_t * | AVI | ) |
int AVI_get_audio_track | ( | avi_t * | AVI | ) |
int AVI_audio_tracks | ( | avi_t * | AVI | ) |
void AVI_set_comment_fd | ( | avi_t * | AVI, |
int | fd | ||
) |
int AVI_get_comment_fd | ( | avi_t * | AVI | ) |
int AVI_read_wave_header | ( | int | fd, |
struct wave_header * | wave | ||
) |
int AVI_write_wave_header | ( | int | fd, |
const struct wave_header * | wave | ||
) |
size_t AVI_read_wave_pcm_data | ( | int | fd, |
void * | buffer, | ||
size_t | buflen | ||
) |
size_t AVI_write_wave_pcm_data | ( | int | fd, |
const void * | buffer, | ||
size_t | buflen | ||
) |