split 0.1.0

Resource Split for BIN/IVF/WEBM/PSNR/YUV/...
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef _LIBP_VPX_H_
#define _LIBP_VPX_H_

#ifdef __cplusplus
extern "C" {
#endif

void* vpx_init(const char* filename);

const unsigned char* vpx_read(void *input, unsigned int *length);

void vpx_destroy(void *input);

#ifdef __cplusplus
}
#endif

#endif