vitasdk
Documentation of the vitasdk
videoexport.h
Go to the documentation of this file.
1
7#ifndef _PSP2_VIDEOEXPORT_H_
8#define _PSP2_VIDEOEXPORT_H_
9
10#include <vitasdk/build_utils.h>
11#include <psp2/types.h>
12
13#ifdef __cplusplus
14extern "C" {
15#endif
16
17typedef struct VideoExportInputParam {
18 char path[1024];
19 char reserved[64];
22
23typedef struct VideoExportOutputParam {
24 char path[1024];
25 char reserved[8];
28
43int sceVideoExportFromFile(const VideoExportInputParam* in_param, int unk, void* workingMemory, void* cancelCb, void (*progress)(void*, int), void* user, int unk2, VideoExportOutputParam* out_param);
44
45#ifdef __cplusplus
46}
47#endif
48
49#endif /* _PSP2_VIDEOEXPORT_H_ */
#define VITASDK_BUILD_ASSERT_EQ(__size__, __name__)
Definition build_utils.h:13
char reserved[64]
Reserved data.
Definition videoexport.h:19
char path[1024]
Path of exported file.
Definition videoexport.h:24
char path[1024]
Path of file to be exported.
Definition videoexport.h:18
char reserved[8]
Reserved data.
Definition videoexport.h:25
int sceVideoExportFromFile(const VideoExportInputParam *in_param, int unk, void *workingMemory, void *cancelCb, void(*progress)(void *, int), void *user, int unk2, VideoExportOutputParam *out_param)
Export video file.
Definition videoexport.h:17
Definition videoexport.h:23