2 * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
3 * Copyright (C) <2003> David Schleef <ds@schleef.org>
4 * Copyright (C) <2003> Arwed v. Merkatz <v.merkatz@gmx.net>
5 * Copyright (C) <2006> Mark Nauwelaerts <manauw@skynet.be>
6 * Copyright (C) <2010> Douglas Bagnall <douglas@halo.gen.nz>
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either
11 * version 2 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Library General Public License for more details.
18 * You should have received a copy of the GNU Library General Public
19 * License along with this library; if not, write to the
20 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21 * Boston, MA 02111-1307, USA.
25 #ifndef __GST_VIDEO_SPARROW_H__
26 #define __GST_VIDEO_SPARROW_H__
28 #include <gst/video/gstvideofilter.h>
32 #define SPARROW_PPM_DEBUG 1
35 #include "sparrowconfig.h"
36 #include "dSFMT/dSFMT.h"
40 #define UNUSED __attribute__ ((unused))
42 #warning UNUSED is set
45 /* the common recommendation is to default to 'hidden' and specifically mark
46 the unhidden ('default') ones, but this might muck with gstreamer macros,
47 some of which declare functions, and most sparrow functions are static
48 anyway, so it is simpler to whitelist visibility.
50 http://gcc.gnu.org/onlinedocs/gcc/Code-Gen-Options.html#index-fvisibility-2135
52 (actually, it seems like all functions are invisible or static, except the
53 ones that gstreamer makes in macros).
56 #define INVISIBLE __attribute__ ((visibility("hidden")))
58 #warning INVISIBLE is set
62 typedef guint32 pix_t
;
63 #define PIXSIZE (sizeof(pix_t))
66 #define CALIBRATE_ON_MIN_T 2
67 #define CALIBRATE_ON_MAX_T 7
68 #define CALIBRATE_OFF_MIN_T 2
69 #define CALIBRATE_OFF_MAX_T 9
70 #define CALIBRATE_SELF_SIZE 24
72 #define CALIBRATE_MAX_VOTE_ERROR 5
73 #define CALIBRATE_MAX_BEST_ERROR 2
74 #define CALIBRATE_INITIAL_WAIT 72
75 #define CALIBRATE_RETRY_WAIT 16
77 #define CALIBRATE_SIGNAL_THRESHOLD 200
80 #define MAX_CALIBRATE_SHAPES 4
82 #define FAKE_OTHER_PROJECTION 1
84 #define WAIT_COUNTDOWN (MAX(CALIBRATE_OFF_MAX_T, CALIBRATE_ON_MAX_T) + 3)
86 #define GST_TYPE_SPARROW \
87 (gst_sparrow_get_type())
88 #define GST_SPARROW(obj) \
89 (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_SPARROW,GstSparrow))
90 #define GST_SPARROW_CLASS(klass) \
91 (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_SPARROW,GstSparrowClass))
92 #define GST_IS_SPARROW(obj) \
93 (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_SPARROW))
94 #define GST_IS_SPARROW_CLASS(klass) \
95 (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_SPARROW))
100 SPARROW_STATUS_QUO
= 0,
106 SPARROW_WAIT_FOR_GRID
,
111 SPARROW_NEXT_STATE
/*magical last state: alias for next in sequence */
120 #define MAX_CALIBRATION_LAG 12
121 typedef struct lag_times_s
{
126 typedef struct sparrow_format_s
{
141 enum calibration_shape
{
149 typedef struct sparrow_shape_s
{
150 /*Calibration shape definition -- a rectangle or line.
151 For lines, only one dimension is used.*/
152 enum calibration_shape shape
;
159 typedef struct sparrow_calibrate_s
{
160 /*calibration state, and shape and pattern definition */
161 gboolean on
; /*for calibration pattern */
166 } sparrow_calibrate_t
;
169 typedef struct _GstSparrow GstSparrow
;
170 typedef struct _GstSparrowClass GstSparrowClass
;
175 * Opaque data structure.
179 GstVideoFilter videofilter
;
183 sparrow_shape_t shapes
[MAX_CALIBRATE_SHAPES
];
186 sparrow_calibrate_t calibrate
;
189 gint calibrate_flag
; /*whether to calibrate */
192 dsfmt_t
*dsfmt
; /*rng*/
197 lag_times_t
*lag_table
;
201 gint32 countdown
; /*intra-state timing*/
203 /*buffer pointers for previous frames */
209 GstBuffer
*in_buffer
;
210 GstBuffer
*prev_buffer
;
211 /*don't need work_buffer */
222 struct _GstSparrowClass
224 GstVideoFilterClass parent_class
;
227 GType
gst_sparrow_get_type(void);
230 GST_DEBUG_CATEGORY_EXTERN (sparrow_debug
);
231 #define GST_CAT_DEFAULT sparrow_debug
233 /* GstSparrow signals and args */
248 #define DEFAULT_PROP_CALIBRATE TRUE
249 #define DEFAULT_PROP_DEBUG FALSE
250 #define DEFAULT_PROP_RNG_SEED -1
256 /* GST_DISABLE_GST_DEBUG is set in gstreamer compilation. If it is set, we
257 need our own debug channel. */
258 #ifdef GST_DISABLE_GST_DEBUG
262 static FILE *_sparrow_bloody_debug_flags
= NULL
;
264 GST_DEBUG(const char *msg
, ...){
265 if (! _sparrow_bloody_debug_flags
){
266 _sparrow_bloody_debug_flags
= fopen("/tmp/sparrow.log", "wb");
267 if (! _sparrow_bloody_debug_flags
){
273 vfprintf(_sparrow_bloody_debug_flags
, msg
, argp
);
275 fflush(_sparrow_bloody_debug_flags
);
278 #define GST_ERROR GST_DEBUG
279 #define GST_WARNING GST_DEBUG
280 #define GST_INFO GST_DEBUG
281 #define GST_LOG GST_DEBUG
282 #define GST_FIXME GST_DEBUG
285 #define LOG_LINENO() GST_DEBUG("%-25s line %4d \n", __func__, __LINE__ );
289 #endif /* __GST_VIDEO_SPARROW_H__ */