[gstreamer-bugs] [Bug 523151] New: v4l_calls.c : setting tuner does not work

GStreamer (bugzilla.gnome.org) bugzilla-daemon at bugzilla.gnome.org
Tue Mar 18 05:36:47 PDT 2008


If you have any questions why you received this email, please see the text at
the end of this email. Replies to this email are NOT read, please see the text
at the end of this email. You can add comments to this bug at:
  http://bugzilla.gnome.org/show_bug.cgi?id=523151

  GStreamer | gst-plugins-base | Ver: HEAD CVS
           Summary: v4l_calls.c : setting tuner does not work
           Product: GStreamer
           Version: HEAD CVS
          Platform: Other
        OS/Version: All
            Status: UNCONFIRMED
          Severity: normal
          Priority: Normal
         Component: gst-plugins-base
        AssignedTo: gstreamer-bugs at lists.sourceforge.net
        ReportedBy: JerryGeiger at web.de
         QAContact: gstreamer-bugs at lists.sourceforge.net
     GNOME version: 2.17/2.18
   GNOME milestone: Unspecified


Please describe the problem:
in file sys/v4l/v4l_calls.c, line 336 the flag vtun.flags & VIDEO_TUNER_LOW
is used to calc the channel->freq_multiplicator in the wrong way:
     62.5 * ((vtun.flags & VIDEO_TUNER_LOW) ? 1 : 1000);

suggested fix:
     62.5 * ((vtun.flags & VIDEO_TUNER_LOW) ? 1000 : 1);
works fine on my system.


Steps to reproduce:
1. try to change the frequency
2. 
3. 


Actual results:
the frequency set by the v4l interface is compeletly wrong

Expected results:


Does this happen every time?
yes

Other information:


-- 
See http://bugzilla.gnome.org/page.cgi?id=email.html for more info about why you received
this email, why you can't respond via email, how to stop receiving
emails (or reduce the number you receive), and how to contact someone
if you are having problems with the system.

You can add comments to this bug at http://bugzilla.gnome.org/show_bug.cgi?id=523151.




More information about the Gstreamer-bugs mailing list