forked from AravisProject/aravis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgstaravis.h
97 lines (73 loc) · 2.42 KB
/
gstaravis.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/*
* Copyright © 2006 Eric Jonas <[email protected]>
* Copyright © 2006 Antoine Tremblay <[email protected]>
* Copyright © 2010 United States Government, Joshua M. Doe <[email protected]>
* Copyright © 2010-2019 Emmanuel Pacaud <[email protected]>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#ifndef ARV_GST_H
#define ARV_GST_H
#include <gst/gst.h>
#include <gst/base/gstpushsrc.h>
#include <arv.h>
G_BEGIN_DECLS
#define GST_TYPE_ARAVIS (gst_aravis_get_type())
#define GST_ARAVIS(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_ARAVIS,GstAravis))
#define GST_ARAVIS_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_ARAVIS,GstAravis))
#define GST_IS_ARAVIS(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_ARAVIS))
#define GST_IS_ARAVIS_CLASS(obj) (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_ARAVIS))
typedef struct _GstAravis GstAravis;
typedef struct _GstAravisClass GstAravisClass;
struct _GstAravis {
GstPushSrc element;
char *camera_name;
double gain;
ArvAuto gain_auto;
gboolean gain_auto_set;
double exposure_time_us;
ArvAuto exposure_auto;
gboolean exposure_auto_set;
double gamma;
gint offset_x;
gint offset_y;
gint h_binning;
gint v_binning;
gint num_arv_buffers;
/* GigEVision parameters */
int packet_size;
gboolean auto_packet_size;
gint64 packet_delay;
gboolean packet_resend;
ArvUvUsbMode usb_mode;
gint payload;
guint64 buffer_timeout_us;
gdouble frame_rate;
ArvCamera *camera;
ArvStream *stream;
GstCaps *all_caps;
guint64 timestamp_offset;
guint64 last_timestamp;
char *trigger_source;
char *features;
};
struct _GstAravisClass {
GstPushSrcClass parent_class;
void (*software_trigger) (GstAravis *src);
};
GType gst_aravis_get_type (void);
G_END_DECLS
#endif