From c0e990b58f6d03e8b1251f85a517202ba7dda96b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Sun, 18 Apr 2010 22:54:23 +0200 Subject: [PATCH] videoflip: Change the default method to identity --- gst/videofilter/gstvideoflip.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gst/videofilter/gstvideoflip.c b/gst/videofilter/gstvideoflip.c index bcbb826ae7..015a29fd2d 100644 --- a/gst/videofilter/gstvideoflip.c +++ b/gst/videofilter/gstvideoflip.c @@ -58,7 +58,7 @@ enum /* FILL ME */ }; -#define PROP_METHOD_DEFAULT GST_VIDEO_FLIP_METHOD_90R +#define PROP_METHOD_DEFAULT GST_VIDEO_FLIP_METHOD_IDENTITY GST_DEBUG_CATEGORY_STATIC (video_flip_debug); #define GST_CAT_DEFAULT video_flip_debug @@ -843,4 +843,5 @@ static void gst_video_flip_init (GstVideoFlip * videoflip, GstVideoFlipClass * klass) { videoflip->method = PROP_METHOD_DEFAULT; + gst_base_transform_set_passthrough (GST_BASE_TRANSFORM (videoflip), TRUE); }