annotate vidix/vidixlib.h @ 22857:77def5093daf

switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
author ben
date Sun, 01 Apr 2007 11:06:06 +0000
parents 62a6135d090e
children 6c57087c5a2d
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3991
dcc632dd2097 preliminary version
nick
parents:
diff changeset
1 /*
dcc632dd2097 preliminary version
nick
parents:
diff changeset
2 * vidixlib.h
dcc632dd2097 preliminary version
nick
parents:
diff changeset
3 * VIDIXLib - Library for VIDeo Interface for *niX
dcc632dd2097 preliminary version
nick
parents:
diff changeset
4 * This interface is introduced as universal one to MPEG decoder,
dcc632dd2097 preliminary version
nick
parents:
diff changeset
5 * BES == Back End Scaler and YUV2RGB hw accelerators.
dcc632dd2097 preliminary version
nick
parents:
diff changeset
6 * In the future it may be expanded up to capturing and audio things.
dcc632dd2097 preliminary version
nick
parents:
diff changeset
7 * Main goal of this this interface imlpementation is providing DGA
dcc632dd2097 preliminary version
nick
parents:
diff changeset
8 * everywhere where it's possible (unlike X11 and other).
dcc632dd2097 preliminary version
nick
parents:
diff changeset
9 * Copyright 2002 Nick Kurshev
dcc632dd2097 preliminary version
nick
parents:
diff changeset
10 * Licence: GPL
dcc632dd2097 preliminary version
nick
parents:
diff changeset
11 * This interface is based on v4l2, fbvid.h, mga_vid.h projects
dcc632dd2097 preliminary version
nick
parents:
diff changeset
12 * and personally my ideas.
dcc632dd2097 preliminary version
nick
parents:
diff changeset
13 * NOTE: This interface is introduces as APP interface.
dcc632dd2097 preliminary version
nick
parents:
diff changeset
14 * Don't use it for driver.
dcc632dd2097 preliminary version
nick
parents:
diff changeset
15 * It provides multistreaming. This mean that APP can handle
dcc632dd2097 preliminary version
nick
parents:
diff changeset
16 * several streams simultaneously. (Example: Video capturing and video
dcc632dd2097 preliminary version
nick
parents:
diff changeset
17 * playback or capturing, video playback, audio encoding and so on).
dcc632dd2097 preliminary version
nick
parents:
diff changeset
18 */
dcc632dd2097 preliminary version
nick
parents:
diff changeset
19 #ifndef VIDIXLIB_H
dcc632dd2097 preliminary version
nick
parents:
diff changeset
20 #define VIDIXLIB_H
dcc632dd2097 preliminary version
nick
parents:
diff changeset
21
dcc632dd2097 preliminary version
nick
parents:
diff changeset
22 #ifdef __cplusplus
dcc632dd2097 preliminary version
nick
parents:
diff changeset
23 extern "C" {
dcc632dd2097 preliminary version
nick
parents:
diff changeset
24 #endif
dcc632dd2097 preliminary version
nick
parents:
diff changeset
25
dcc632dd2097 preliminary version
nick
parents:
diff changeset
26 #include "vidix.h"
dcc632dd2097 preliminary version
nick
parents:
diff changeset
27
22857
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 4191
diff changeset
28 typedef struct VDXDriver {
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 4191
diff changeset
29 const char *name;
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 4191
diff changeset
30 struct VDXDriver *next;
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 4191
diff changeset
31 int (* probe) (int verbose, int force);
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 4191
diff changeset
32 unsigned int (* get_version)(void);
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 4191
diff changeset
33 int (* get_caps) (vidix_capability_t *cap);
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 4191
diff changeset
34 int (*query_fourcc)(vidix_fourcc_t *);
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 4191
diff changeset
35 int (*init)(void);
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 4191
diff changeset
36 void (*destroy)(void);
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 4191
diff changeset
37 int (*config_playback)(vidix_playback_t *);
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 4191
diff changeset
38 int (*playback_on)( void );
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 4191
diff changeset
39 int (*playback_off)( void );
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 4191
diff changeset
40 /* Functions below can be missed in driver ;) */
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 4191
diff changeset
41 int (*frame_sel)( unsigned frame_idx );
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 4191
diff changeset
42 int (*get_eq)( vidix_video_eq_t * );
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 4191
diff changeset
43 int (*set_eq)( const vidix_video_eq_t * );
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 4191
diff changeset
44 int (*get_deint)( vidix_deinterlace_t * );
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 4191
diff changeset
45 int (*set_deint)( const vidix_deinterlace_t * );
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 4191
diff changeset
46 int (*copy_frame)( const vidix_dma_t * );
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 4191
diff changeset
47 int (*get_gkey)( vidix_grkey_t * );
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 4191
diff changeset
48 int (*set_gkey)( const vidix_grkey_t * );
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 4191
diff changeset
49 int (*get_num_fx)( unsigned * );
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 4191
diff changeset
50 int (*get_fx)( vidix_oem_fx_t * );
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 4191
diff changeset
51 int (*set_fx)( const vidix_oem_fx_t * );
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 4191
diff changeset
52 } VDXDriver;
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 4191
diff changeset
53
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 4191
diff changeset
54 typedef struct VDXContext {
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 4191
diff changeset
55 VDXDriver *drv;
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 4191
diff changeset
56 /* might be filled in by much more info later on */
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 4191
diff changeset
57 } VDXContext;
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 4191
diff changeset
58
3991
dcc632dd2097 preliminary version
nick
parents:
diff changeset
59 typedef void * VDL_HANDLE;
dcc632dd2097 preliminary version
nick
parents:
diff changeset
60
dcc632dd2097 preliminary version
nick
parents:
diff changeset
61 /* returns library version */
dcc632dd2097 preliminary version
nick
parents:
diff changeset
62 extern unsigned vdlGetVersion( void );
dcc632dd2097 preliminary version
nick
parents:
diff changeset
63
dcc632dd2097 preliminary version
nick
parents:
diff changeset
64 /* Opens corresponded video driver and returns handle
dcc632dd2097 preliminary version
nick
parents:
diff changeset
65 of associated stream.
dcc632dd2097 preliminary version
nick
parents:
diff changeset
66 path - specifies path where drivers are located.
dcc632dd2097 preliminary version
nick
parents:
diff changeset
67 name - specifies prefered driver name (can be NULL).
dcc632dd2097 preliminary version
nick
parents:
diff changeset
68 cap - specifies driver capability (TYPE_* constants).
3995
0d9de811e312 minor interface changing
nick
parents: 3991
diff changeset
69 verbose - specifies verbose level
3991
dcc632dd2097 preliminary version
nick
parents:
diff changeset
70 returns !0 if ok else NULL.
dcc632dd2097 preliminary version
nick
parents:
diff changeset
71 */
3995
0d9de811e312 minor interface changing
nick
parents: 3991
diff changeset
72 extern VDL_HANDLE vdlOpen(const char *path,const char *name,unsigned cap,int verbose);
3991
dcc632dd2097 preliminary version
nick
parents:
diff changeset
73 /* Closes stream and corresponded driver. */
dcc632dd2097 preliminary version
nick
parents:
diff changeset
74 extern void vdlClose(VDL_HANDLE stream);
dcc632dd2097 preliminary version
nick
parents:
diff changeset
75
dcc632dd2097 preliminary version
nick
parents:
diff changeset
76 /* Queries driver capabilities. Return 0 if ok else errno */
dcc632dd2097 preliminary version
nick
parents:
diff changeset
77 extern int vdlGetCapability(VDL_HANDLE, vidix_capability_t *);
dcc632dd2097 preliminary version
nick
parents:
diff changeset
78
dcc632dd2097 preliminary version
nick
parents:
diff changeset
79 /* Queries support for given fourcc. Returns 0 if ok else errno */
dcc632dd2097 preliminary version
nick
parents:
diff changeset
80 extern int vdlQueryFourcc(VDL_HANDLE,vidix_fourcc_t *);
dcc632dd2097 preliminary version
nick
parents:
diff changeset
81
dcc632dd2097 preliminary version
nick
parents:
diff changeset
82 /* Returns 0 if ok else errno */
3995
0d9de811e312 minor interface changing
nick
parents: 3991
diff changeset
83 extern int vdlConfigPlayback(VDL_HANDLE, vidix_playback_t *);
3991
dcc632dd2097 preliminary version
nick
parents:
diff changeset
84
dcc632dd2097 preliminary version
nick
parents:
diff changeset
85 /* Returns 0 if ok else errno */
dcc632dd2097 preliminary version
nick
parents:
diff changeset
86 extern int vdlPlaybackOn(VDL_HANDLE);
dcc632dd2097 preliminary version
nick
parents:
diff changeset
87
dcc632dd2097 preliminary version
nick
parents:
diff changeset
88 /* Returns 0 if ok else errno */
dcc632dd2097 preliminary version
nick
parents:
diff changeset
89 extern int vdlPlaybackOff(VDL_HANDLE);
dcc632dd2097 preliminary version
nick
parents:
diff changeset
90
dcc632dd2097 preliminary version
nick
parents:
diff changeset
91 /* Returns 0 if ok else errno */
dcc632dd2097 preliminary version
nick
parents:
diff changeset
92 extern int vdlPlaybackFrameSelect(VDL_HANDLE, unsigned frame_idx );
dcc632dd2097 preliminary version
nick
parents:
diff changeset
93
dcc632dd2097 preliminary version
nick
parents:
diff changeset
94 /* Returns 0 if ok else errno */
4070
b61ba6c256dd Minor interface changes: color and video keys are moved out from playback configuring
nick
parents: 3995
diff changeset
95 extern int vdlGetGrKeys(VDL_HANDLE, vidix_grkey_t * );
b61ba6c256dd Minor interface changes: color and video keys are moved out from playback configuring
nick
parents: 3995
diff changeset
96
b61ba6c256dd Minor interface changes: color and video keys are moved out from playback configuring
nick
parents: 3995
diff changeset
97 /* Returns 0 if ok else errno */
b61ba6c256dd Minor interface changes: color and video keys are moved out from playback configuring
nick
parents: 3995
diff changeset
98 extern int vdlSetGrKeys(VDL_HANDLE, const vidix_grkey_t * );
b61ba6c256dd Minor interface changes: color and video keys are moved out from playback configuring
nick
parents: 3995
diff changeset
99
b61ba6c256dd Minor interface changes: color and video keys are moved out from playback configuring
nick
parents: 3995
diff changeset
100 /* Returns 0 if ok else errno */
3991
dcc632dd2097 preliminary version
nick
parents:
diff changeset
101 extern int vdlPlaybackGetEq(VDL_HANDLE, vidix_video_eq_t * );
dcc632dd2097 preliminary version
nick
parents:
diff changeset
102
dcc632dd2097 preliminary version
nick
parents:
diff changeset
103 /* Returns 0 if ok else errno */
dcc632dd2097 preliminary version
nick
parents:
diff changeset
104 extern int vdlPlaybackSetEq(VDL_HANDLE, const vidix_video_eq_t * );
dcc632dd2097 preliminary version
nick
parents:
diff changeset
105
dcc632dd2097 preliminary version
nick
parents:
diff changeset
106 /* Returns 0 if ok else errno */
4191
62a6135d090e + new features and possibility
nick
parents: 4070
diff changeset
107 extern int vdlPlaybackGetDeint(VDL_HANDLE, vidix_deinterlace_t * );
62a6135d090e + new features and possibility
nick
parents: 4070
diff changeset
108
62a6135d090e + new features and possibility
nick
parents: 4070
diff changeset
109 /* Returns 0 if ok else errno */
62a6135d090e + new features and possibility
nick
parents: 4070
diff changeset
110 extern int vdlPlaybackSetDeint(VDL_HANDLE, const vidix_deinterlace_t * );
62a6135d090e + new features and possibility
nick
parents: 4070
diff changeset
111
62a6135d090e + new features and possibility
nick
parents: 4070
diff changeset
112 /* Returns 0 if ok else errno */
62a6135d090e + new features and possibility
nick
parents: 4070
diff changeset
113 extern int vdlQueryNumOemEffects(VDL_HANDLE, unsigned * number );
62a6135d090e + new features and possibility
nick
parents: 4070
diff changeset
114
62a6135d090e + new features and possibility
nick
parents: 4070
diff changeset
115 /* Returns 0 if ok else errno */
62a6135d090e + new features and possibility
nick
parents: 4070
diff changeset
116 extern int vdlGetOemEffect(VDL_HANDLE, vidix_oem_fx_t * );
62a6135d090e + new features and possibility
nick
parents: 4070
diff changeset
117
62a6135d090e + new features and possibility
nick
parents: 4070
diff changeset
118 /* Returns 0 if ok else errno */
62a6135d090e + new features and possibility
nick
parents: 4070
diff changeset
119 extern int vdlSetOemEffect(VDL_HANDLE, const vidix_oem_fx_t * );
62a6135d090e + new features and possibility
nick
parents: 4070
diff changeset
120
62a6135d090e + new features and possibility
nick
parents: 4070
diff changeset
121
62a6135d090e + new features and possibility
nick
parents: 4070
diff changeset
122 /* Returns 0 if ok else errno */
3991
dcc632dd2097 preliminary version
nick
parents:
diff changeset
123 extern int vdlPlaybackCopyFrame(VDL_HANDLE, const vidix_dma_t * );
dcc632dd2097 preliminary version
nick
parents:
diff changeset
124
dcc632dd2097 preliminary version
nick
parents:
diff changeset
125 #ifdef __cplusplus
dcc632dd2097 preliminary version
nick
parents:
diff changeset
126 }
dcc632dd2097 preliminary version
nick
parents:
diff changeset
127 #endif
dcc632dd2097 preliminary version
nick
parents:
diff changeset
128
dcc632dd2097 preliminary version
nick
parents:
diff changeset
129 #endif