Home
last modified time | relevance | path

Searched refs:vobgroup (Results 1 – 5 of 5) sorted by relevance

/dports/multimedia/dvdauthor/dvdauthor-d5bb0b/src/
H A Dda-internal.h207 struct vobgroup *mg_vg; /* common among all groups[i]->pg elements */
212 struct vobgroup { /* contents of a menuset or titleset (<menus> or <titles>) */ struct
267 int getratedenom(const struct vobgroup *va);
270 pts_t getframepts(const struct vobgroup *va);
271 unsigned int buildtimeeven(const struct vobgroup *va,int64_t num);
272 int getaudch(const struct vobgroup *va,int a);
275 int vobgroup_set_video_attr(struct vobgroup *va,int attr,const char *s);
276 int vobgroup_set_video_framerate(struct vobgroup *va,int rate);
307 int FindVobus(const char *fbase,struct vobgroup *va,vtypes ismenu);
308 void MarkChapters(struct vobgroup *va);
[all …]
H A Ddvdauthor.c134 static int getratecode(const struct vobgroup *va) in getratecode()
161 int getratedenom(const struct vobgroup *va) in getratedenom()
167 pts_t getframepts(const struct vobgroup *va) in getframepts()
218 unsigned int buildtimeeven(const struct vobgroup *va, int64_t num) in buildtimeeven()
231 int getaudch(const struct vobgroup *va, int a) in getaudch()
619 struct vobgroup * va, in set_video_format_attr()
641 struct vobgroup * va, in setattr()
1324 static struct vobgroup *vobgroup_new() in vobgroup_new()
1326 struct vobgroup *vg=malloc(sizeof(struct vobgroup)); in vobgroup_new()
1327 memset(vg,0,sizeof(struct vobgroup)); in vobgroup_new()
[all …]
H A Ddvdifo.c204 static int getvoblen(const struct vobgroup *va) in getvoblen()
216 static unsigned int pts_seconds_to_ticks(const struct vobgroup *va, int nsec) in pts_seconds_to_ticks()
222 static unsigned int pts_ticks_to_seconds(const struct vobgroup *va, int pts) in pts_ticks_to_seconds()
346 static int numsectVOBUAD(const struct vobgroup *va) in numsectVOBUAD()
355 static int CreateCellAddressTable(FILE *h, const struct vobgroup *va) in CreateCellAddressTable()
391 static void CreateVOBUAD(FILE *h, const struct vobgroup *va) in CreateVOBUAD()
504 static void BuildAVInfo(unsigned char *buf, const struct vobgroup *va) in BuildAVInfo()
H A Ddvdvob.c96 const struct vobgroup *va, in calcpts()
523 struct vobgroup *va, in scanvideoptr()
768 static void finishvideoscan(struct vobgroup *va, int vob, int prevsect, struct vscani *vsi) in finishvideoscan()
1024 static void printvobustatus(struct vobgroup *va, int cursect, bool checknonempty) in printvobustatus()
1119 int FindVobus(const char *fbase, struct vobgroup *va, vtypes ismenu) in FindVobus()
2047 void MarkChapters(struct vobgroup *va) in MarkChapters()
2191 static pts_t getcellaudiopts(const struct vobgroup *va,int vcid,int ach,int w) in getcellaudiopts()
2203 static int hasaudio(const struct vobgroup *va,int vcid,int ach,int w) in hasaudio()
2213 static pts_t getcellvideopts(const struct vobgroup *va,int vcid,int w) in getcellvideopts()
2227 static pts_t calcaudiodiff(const struct vobgroup *va,int vcid,int ach,int w) in calcaudiodiff()
[all …]
H A Ddvdpgc.c161 const struct vobgroup *va = (ismenu != VTYPE_VTS ? ws->menus->mg_vg : ws->titles->pg_vg); in genpgc()