-
Notifications
You must be signed in to change notification settings - Fork 4
/
dvd_vob.h
42 lines (36 loc) · 1.1 KB
/
dvd_vob.h
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
#ifndef DVD_INFO_VOB_H
#define DVD_INFO_VOB_H
#include <stdint.h>
#include <math.h>
#include <dvdread/dvd_reader.h>
struct dvd_vob {
uint16_t vts;
uint16_t vob;
uint64_t blocks;
ssize_t filesize;
double filesize_mbs;
};
/**
* Gets the block size of a VOB in a VTS
*
* A simple helper function around dvd_vob_filesize to do the math of number of
* blocks, which is the filesize divided by the block size (2 KiB), or DVD_VIDEO_LB_LEN
*
*/
uint64_t dvd_vob_blocks(dvd_reader_t *dvdread_dvd, uint16_t vts_number, uint16_t vob_number);
/**
* Checks a VOB in a VTS to get its filesize.
*
* If the VOB # is zero, then it looks at the menu VOB: VIDEO_TS.VOB or VTS_XX_0.VOB
* Otherwise, it looks at the title VOB: VTS_XX_[1-9].VOB
*
* A menu vob may or may not be present on a disc, so this can safely be run to check
* if it's zero or not.
*
*/
ssize_t dvd_vob_filesize(dvd_reader_t *dvdread_dvd, uint16_t vts_number, uint16_t vob_number);
/**
* Helper function to get filesize of a VOB in MBs.
*/
double dvd_vob_filesize_mbs(dvd_reader_t *dvdread_dvd, uint16_t vts_number, uint16_t vob_number);
#endif