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 602463 - video mixing breaks rendering visual quality
video mixing breaks rendering visual quality
Status: RESOLVED DUPLICATE of bug 594599
Product: pitivi
Classification: Other
Component: General
Git
Other Linux
: Normal normal
: Git
Assigned To: Pitivi maintainers
Pitivi maintainers
: 602859 (view as bug list)
Depends on:
Blocks:
 
 
Reported: 2009-11-19 23:49 UTC by Jean-François Fortin Tam
Modified: 2009-11-26 13:36 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Jean-François Fortin Tam 2009-11-19 23:49:13 UTC
Video mixing has been added to git master today, and this has the unfortunate effect of making rendered outputs unusable:
- green tint/incorrect colors
- terrible compression artifacts

...but you probably knew this already. Just filing so I (and perhaps other users) can be kept updated about this.
Comment 1 Edward Hervey 2009-11-20 08:34:01 UTC
I'm trying to corner that bug. it's most likely due to a bug in either the alpha element or the colorspace element.

Seems to work fine with git of everything (sources : jpeg, encoding format : theora)

What input/output formats did you use ?
Comment 2 Jean-François Fortin Tam 2009-11-20 13:17:22 UTC
Packages from karmic/the gst PPA/the telepathy PPA (because yeah, those guys actually seem to package gstreamer too).

Input formats: tried with my usual camcorder clips (H.264+AAC in a mov container), and tried with nostromo's auriga clip (DivX MPEG-4 Version 5, mp3 audio).

Rendering codecs used are usually theora+vorbis.
Comment 3 Jean-François Fortin Tam 2009-11-20 13:27:45 UTC
Same problem with theora input or mpeg2 rendering output. Doesn't really seem codec-dependent to me with my limited testing.
Comment 4 Tim Waugh 2009-11-25 09:32:16 UTC
*** Bug 602859 has been marked as a duplicate of this bug. ***
Comment 5 Edward Hervey 2009-11-26 10:19:11 UTC
gaaah, still can't reproduce it. /me install karmik in a vm.
Comment 6 Tim Waugh 2009-11-26 10:38:02 UTC
I'm seeing it on Fedora 12 x86_64 (with gstreamer-0.10.25.1-1.fc12.x86_64 installed).
Comment 7 Edward Hervey 2009-11-26 12:23:46 UTC
Ok, I can reproduce it in up-to-date karmik.
Comment 8 Edward Hervey 2009-11-26 13:08:04 UTC
The bug was in videobox (see bug #594599) and was fixed a couple months back by the following commit in gst-plugins-good. Updating to latest release of gst-plugins-good fixes the issue.

commit a9909c1abfd11787954baaf87676505d57da6fae
Author: Sebastian Dröge <sebastian.droege@collabora.co.uk>
Date:   Wed Sep 9 16:02:03 2009 +0200

    videobox: Fix AYUV->I420 conversion
    
    For this fix the averaging of the chroma values. It should't be (a/2 + b)/2
    but just (a + b)/2.
    
    Fixes bug #594599.

*** This bug has been marked as a duplicate of bug 594599 ***
Comment 9 Tim Waugh 2009-11-26 13:36:56 UTC
Thanks for tracking it down.