After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 622501 - [videobox] may negotiate input/output format combinations it can't actually handle
[videobox] may negotiate input/output format combinations it can't actually h...
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gst-plugins-good
git master
Other Linux
: Normal major
: 0.10.24
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2010-06-23 15:27 UTC by Tim-Philipp Müller
Modified: 2010-06-23 18:31 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Tim-Philipp Müller 2010-06-23 15:27:39 UTC
This was brought up on IRC:

  gst-launch-0.10 videotestsrc ! video/x-raw-yuv,format=\(fourcc\)I420 ! videobox top=10 ! xvimagesink

fails to negotiate (errors out with not-negotiated here).

It negotiates I420 as input and YUY2 as output and then fails to find a function to perform the operations on those formats. So when it transforms caps, it returns combinations it can't really handle.
Comment 1 Sebastian Dröge (slomo) 2010-06-23 18:31:05 UTC
commit 7e0ea232d0bb04d31b991ceac9ad5f016d0cdea5
Author: Sebastian Dröge <sebastian.droege@collabora.co.uk>
Date:   Wed Jun 23 20:29:14 2010 +0200

    videobox: Fix negotiation for I420/YV12
    
    We don't support conversion into *all* YUV
    formats for them, only into I420/YV12/AYUV.
    
    Fixes bug #622501.