shithub: rtmp

ref: fbf19d0c31e7597f3e31c40b8c55f4dc0bd047dd
dir: /ivf.h/

View raw version
typedef struct IVF IVF;
typedef struct IVFrame IVFrame;

struct IVF {
	u32int tbdenum;
	u32int tbnum;
	u16int w;
	u16int h;
	char type[6];
};

struct IVFrame {
	u64int ts;
	u8int *buf;
	int bufsz;
	int sz;
};

int ivfopen(Biobuf *v, IVF *ivf);
int ivfread(Biobuf *v, IVFrame *f);
u64int ivfns(IVF *ivf, u64int ts);