diff options
author | Luciana Fujii Pontello <luciana@fujii.eti.br> | 2011-01-13 18:35:15 -0200 |
---|---|---|
committer | Thiago Santos <thiago.sousa.santos@collabora.co.uk> | 2011-01-13 18:15:13 -0300 |
commit | b55775a9d39513d41da2cdc7cc6dc6b9013a769f (patch) | |
tree | 7cdd3a60a101614827a506caa48fbb754e74896d /gst/camerabin | |
parent | aba0899b19406562a54cb2633e2b63333022a503 (diff) | |
download | gstreamer-plugins-bad-b55775a9d39513d41da2cdc7cc6dc6b9013a769f.tar.gz |
camerabin: Enable conversion flags
Camerabin default should just work, so we need to enable audio, image
and video conversions.
https://bugzilla.gnome.org/show_bug.cgi?id=639456
Diffstat (limited to 'gst/camerabin')
-rw-r--r-- | gst/camerabin/gstcamerabin.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gst/camerabin/gstcamerabin.c b/gst/camerabin/gstcamerabin.c index 9a94a063b..2744e5874 100644 --- a/gst/camerabin/gstcamerabin.c +++ b/gst/camerabin/gstcamerabin.c @@ -208,7 +208,9 @@ static guint camerabin_signals[LAST_SIGNAL]; #define DEFAULT_FLAGS GST_CAMERABIN_FLAG_SOURCE_RESIZE | \ GST_CAMERABIN_FLAG_VIEWFINDER_SCALE | \ - GST_CAMERABIN_FLAG_IMAGE_COLOR_CONVERSION + GST_CAMERABIN_FLAG_AUDIO_CONVERSION | \ + GST_CAMERABIN_FLAG_IMAGE_COLOR_CONVERSION | \ + GST_CAMERABIN_FLAG_VIDEO_COLOR_CONVERSION /* Using "bilinear" as default zoom method */ #define CAMERABIN_DEFAULT_ZOOM_METHOD 1 |