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 614475 - [dvbsrc] Wrong property types for frequency and symbol rate
[dvbsrc] Wrong property types for frequency and symbol rate
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gst-plugins-bad
git master
Other Linux
: Normal normal
: 0.10.19
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2010-03-31 15:18 UTC by Sebastian Pölsterl
Modified: 2010-04-02 17:11 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Sebastian Pölsterl 2010-03-31 15:18:33 UTC
The kernel API expects those values to be unsigned, but the properties are signed, therefore you can't set frequency to 2147483647 and above.
Comment 1 Sebastian Dröge (slomo) 2010-04-02 17:11:12 UTC
commit ee4baab1005dd9a12cc44e5560ef95c1360efa12
Author: Sebastian Dröge <sebastian.droege@collabora.co.uk>
Date:   Fri Apr 2 19:09:40 2010 +0200

    dvbsrc: Use uint instead of int for frequency and symbol-rate properties
    
    The kernel API specifies them as uint32 and frequencies/symbol-rates greater
    than 2^31 are actually needed sometimes.
    
    Fixes bug #614475.