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 167269 - [audioconvert] dodgy stereo to mono conversion (regression)
[audioconvert] dodgy stereo to mono conversion (regression)
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gst-plugins
git master
Other Linux
: Normal blocker
: 0.8.8
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2005-02-13 15:43 UTC by Zaheer Abbas Merali
Modified: 2005-03-07 17:29 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Zaheer Abbas Merali 2005-02-13 15:43:13 UTC
Compare:

gst-launch-0.8 -v alsasrc ! audio/x-raw-int,rate=44100,channels=2 ! audioconvert
! audio/x-raw-int,channels=1 ! lame bitrate=16 ! filesink location=blah.mp3

and

gst-launch-0.8 -v alsasrc ! audio/x-raw-int,rate=44100,channels=1 ! lame
bitrate=16 ! filesink location=blah2.mp3

first one sounds like eerie silence even when talking into your mic, second one
is fine.
Comment 1 Benjamin Otte (Company) 2005-02-13 16:10:59 UTC
2005-02-13  Benjamin Otte  <otte@gnome.org>

        * gst/audioconvert/gstchannelmix.h:
          include missing header file
        * gst/audioconvert/gstchannelmix.c:
        (gst_audio_convert_fill_compatible):
          use same sign for both channels when converting to/from compatible
          channel. Previously used different signs made the signals cancel
          each other out and appear like silence. (fixes #167269)