public inbox for linux-media@vger.kernel.org
 help / color / mirror / Atom feed
* possible bug in http://git.linuxtv.org/mchehab/experimental-v4l-utils.git
@ 2012-02-05 11:53 Eddi De Pieri
  2012-03-01 10:12 ` Mauro Carvalho Chehab
  0 siblings, 1 reply; 3+ messages in thread
From: Eddi De Pieri @ 2012-02-05 11:53 UTC (permalink / raw)
  To: linux-media, mchehab

Hi mauro,

I suspect a bug in follow code:

                for (bw = 0; fe_bandwidth_name[bw] != 0; bw++) {
                        if (fe_bandwidth_name[bw] == v3_parms.u.ofdm.bandwidth)
                                break;
                }
                dvb_fe_retrieve_parm(parms, DTV_BANDWIDTH_HZ, &bw);

I think should be something like:

                int bw_idx;

                dvb_fe_retrieve_parm(parms, DTV_BANDWIDTH_HZ, &bw);

                for (bw_idx = 0; fe_bandwidth_name[bw_idx] != 0; bw_idx++) {
                        if (fe_bandwidth_name[bw_idx] == bw) {
                                v3_parms.u.ofdm.bandwidth = bw;
                                break;
                        }
                }

regards,


Eddi De Pieri

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-03-01 20:39 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-05 11:53 possible bug in http://git.linuxtv.org/mchehab/experimental-v4l-utils.git Eddi De Pieri
2012-03-01 10:12 ` Mauro Carvalho Chehab
     [not found]   ` <CAKdnbx6P=MhCV+aoUxeFEdWCseeJSfAd2UgjhZJHjRNA7NtGog@mail.gmail.com>
2012-03-01 20:39     ` Eddi De Pieri

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox