diff options
author | Wim Taymans <wim.taymans@collabora.co.uk> | 2012-09-14 16:49:24 +0200 |
---|---|---|
committer | Wim Taymans <wim.taymans@collabora.co.uk> | 2012-09-14 16:49:24 +0200 |
commit | 147654a2b82a9137393798ed2e12903d7a3392c3 (patch) | |
tree | bd34c5789fdaff5b58384b1a79d4b079d2271966 /gst/gaudieffects | |
parent | b8f913555d75504c0b19bed76d936685182d1b03 (diff) | |
download | gstreamer-plugins-bad-147654a2b82a9137393798ed2e12903d7a3392c3.tar.gz |
rename some caps
Diffstat (limited to 'gst/gaudieffects')
-rw-r--r-- | gst/gaudieffects/blur-example.py | 2 | ||||
-rw-r--r-- | gst/gaudieffects/burn-example.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/gst/gaudieffects/blur-example.py b/gst/gaudieffects/blur-example.py index db19e8199..a33958e83 100644 --- a/gst/gaudieffects/blur-example.py +++ b/gst/gaudieffects/blur-example.py @@ -5,7 +5,7 @@ import gst p = gst.parse_launch (""" v4l2src ! - videoconvert ! queue ! video/x-raw-yuv,width=320,height=240,framerate=30/1 ! gaussianblur qos=true name=vf ! videoconvert ! timeoverlay ! xvimagesink + videoconvert ! queue ! video/x-raw,width=320,height=240,framerate=30/1 ! gaussianblur qos=true name=vf ! videoconvert ! timeoverlay ! xvimagesink """) m = p.get_by_name ("vf") diff --git a/gst/gaudieffects/burn-example.py b/gst/gaudieffects/burn-example.py index ec1b4a1a0..a5f91e9c8 100644 --- a/gst/gaudieffects/burn-example.py +++ b/gst/gaudieffects/burn-example.py @@ -5,7 +5,7 @@ import gst p = gst.parse_launch (""" v4l2src ! - videoconvert ! queue ! video/x-raw-rgb,width=320,height=240,framerate=30/1 ! burn qos=true name=vf ! videoconvert ! timeoverlay ! xvimagesink + videoconvert ! queue ! video/x-raw,width=320,height=240,framerate=30/1 ! burn qos=true name=vf ! videoconvert ! timeoverlay ! xvimagesink """) m = p.get_by_name ("vf") |