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
14 extern "C" {
15 #endif
16 
17 typedef struct VideoExportInputParam {
18  char path[1024];
19  char reserved[64];
22 
23 typedef struct VideoExportOutputParam {
24  char path[1024];
25  char reserved[8];
28 
43 int 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_ */
char reserved[64]
Reserved data.
Definition: videoexport.h:19
char path[1024]
Path of exported file.
Definition: videoexport.h:24
VITASDK_BUILD_ASSERT_EQ(0x440, VideoExportInputParam)
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