comparison framehook.h @ 65:a58a8a53eb46 libavformat

* UINTX -> uintx_t INTX -> intx_t
author kabi
date Tue, 11 Feb 2003 16:35:48 +0000
parents dcc03a32d1bb
children 96f8086bc2ba
comparison
equal deleted inserted replaced
64:b0e0eb595e29 65:a58a8a53eb46
11 typedef int (FrameHookConfigure)(void **ctxp, int argc, char *argv[]); 11 typedef int (FrameHookConfigure)(void **ctxp, int argc, char *argv[]);
12 typedef FrameHookConfigure *FrameHookConfigureFn; 12 typedef FrameHookConfigure *FrameHookConfigureFn;
13 extern FrameHookConfigure Configure; 13 extern FrameHookConfigure Configure;
14 14
15 /* Function must be called 'Process' */ 15 /* Function must be called 'Process' */
16 typedef void (FrameHookProcess)(void *ctx, struct AVPicture *pict, enum PixelFormat pix_fmt, int width, int height, INT64 pts); 16 typedef void (FrameHookProcess)(void *ctx, struct AVPicture *pict, enum PixelFormat pix_fmt, int width, int height, int64_t pts);
17 typedef FrameHookProcess *FrameHookProcessFn; 17 typedef FrameHookProcess *FrameHookProcessFn;
18 extern FrameHookProcess Process; 18 extern FrameHookProcess Process;
19 19
20 /* Function must be called 'Release' */ 20 /* Function must be called 'Release' */
21 typedef void (FrameHookRelease)(void *ctx); 21 typedef void (FrameHookRelease)(void *ctx);