37#ifndef __ANX_TYPES_H__
38#define __ANX_TYPES_H__
45#if defined(_WIN32) && !defined(__GNUC__)
134typedef int (*AnxImportStream) (
double presentation_time,
double basetime,
135 char * utc,
void * user_data);
136typedef int (*AnxImportHead) (
AnxHead * head,
void * user_data);
137typedef int (*AnxImportClip) (
AnxClip * clip,
138 double time_offset,
void * user_data);
139typedef int (*AnxImportCMML) (
const char * cmml,
long n,
140 double time_offset,
void * user_data);
142typedef int (*AnxImportImport) (
double start_time,
char * filename,
143 char * id,
char * content_type,
144 double seek_offset,
double seek_end,
150 AnxImportStream import_stream;
151 AnxImportHead import_head;
152 AnxImportClip import_clip;
153 AnxImportCMML import_cmml;
154 void * import_user_data;
155 AnxImportImport import_import;
156 void * import_import_user_data;
Platform specific types for anx_int64_t.
Win32 specific type for anx_int64_t.
void ANNODEX
An ANNODEX handle.
Definition: anx_types.h:55
Definition: anx_types.h:102
const char * anchor_id
id attribute of anchor
Definition: anx_types.h:109
const char * title
title attribute of clip
Definition: anx_types.h:105
const char * anchor_text
anchor text
Definition: anx_types.h:115
const char * lang
language attribute of desc element
Definition: anx_types.h:106
const char * desc_dir
directionality of lang
Definition: anx_types.h:127
const char * track
track attribute of clip
Definition: anx_types.h:108
const char * clip_id
id attribute of clip
Definition: anx_types.h:103
const char * img_id
id attribute of image
Definition: anx_types.h:116
const char * img_src
keyframe image of clip
Definition: anx_types.h:121
const char * img_lang
language of img
Definition: anx_types.h:119
const char * anchor_title
title attribute of clip
Definition: anx_types.h:111
const char * desc_lang
language attribute of desc element
Definition: anx_types.h:126
const char * anchor_href
href out of clip
Definition: anx_types.h:114
const char * desc_class
class attribute of desc
Definition: anx_types.h:124
const char * desc_title
title attribute of desc
Definition: anx_types.h:125
AnxList * meta
list of meta elements
Definition: anx_types.h:129
const char * img_title
title attribute of image
Definition: anx_types.h:118
const char * img_dir
directionality of lang
Definition: anx_types.h:120
const char * anchor_dir
directionality of lang
Definition: anx_types.h:113
const char * img_alt
alternate text for image
Definition: anx_types.h:122
const char * anchor_lang
language of anchor
Definition: anx_types.h:112
const char * anchor_class
class attribute of clip
Definition: anx_types.h:110
const char * desc_text
the description itself
Definition: anx_types.h:128
const char * dir
directionality of lang
Definition: anx_types.h:107
const char * desc_id
id attribute of desc element
Definition: anx_types.h:123
const char * img_class
class attribute of image
Definition: anx_types.h:117
Definition: anx_types.h:87
const char * lang
language of header
Definition: anx_types.h:89
const char * title_dir
directionality of title_lang
Definition: anx_types.h:95
AnxList * meta
list of meta elements
Definition: anx_types.h:98
const char * base_id
id attribute of base element
Definition: anx_types.h:96
AnxList * link
list of link elements
Definition: anx_types.h:99
const char * base_href
href attribute of base element
Definition: anx_types.h:97
const char * title_lang
language of title
Definition: anx_types.h:94
const char * profile
profile of header
Definition: anx_types.h:91
const char * title_id
id attribute of title element
Definition: anx_types.h:93
const char * dir
directionality of lang
Definition: anx_types.h:90
const char * title
title element of header
Definition: anx_types.h:92
const char * head_id
id attribute of header
Definition: anx_types.h:88
Definition: anx_types.h:149
Definition: anx_types.h:73
char * lang
language code of link
Definition: anx_types.h:77
char * media
media attribute of link
Definition: anx_types.h:83
char * title
title attribute of link
Definition: anx_types.h:76
char * href
href attribute of link
Definition: anx_types.h:79
char * type
type attribute of link
Definition: anx_types.h:80
char * rev
rev attribute of link
Definition: anx_types.h:82
char * id
id attribute of link
Definition: anx_types.h:74
char * dir
directionality of lang (ltr/rtl)
Definition: anx_types.h:78
char * rel
rel attribute of link
Definition: anx_types.h:81
Definition: anx_list.h:47