summaryrefslogtreecommitdiffstats
path: root/gst/deinterlace/gstdeinterlace.h
diff options
context:
space:
mode:
Diffstat (limited to 'gst/deinterlace/gstdeinterlace.h')
-rw-r--r--gst/deinterlace/gstdeinterlace.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/gst/deinterlace/gstdeinterlace.h b/gst/deinterlace/gstdeinterlace.h
index 20d63bfa..3e7c834e 100644
--- a/gst/deinterlace/gstdeinterlace.h
+++ b/gst/deinterlace/gstdeinterlace.h
@@ -40,14 +40,25 @@ struct _GstDeinterlace {
gint width;
gint height;
+ gint uv_height;
+ guint32 fourcc;
gboolean show_deinterlaced_area_only;
+ gboolean show_noninterlaced_area_only;
gboolean blend;
+ gboolean deinterlace;
gint threshold_blend; /* here we start blending */
gint threshold; /* here we start interpolating TODO FIXME */
gint edge_detect;
gint picsize;
+ gint y_stride;
+ gint u_stride;
+ gint v_stride;
+ gint y_off;
+ gint u_off;
+ gint v_off;
+
guchar *src;
};