1
0
Fork 0
forked from len0rd/rockbox

FM tuner region code cleanup - FS #11492 by me.

This removes the tuner-specific region structs and makes each driver use the common one (which is now extended with a deemphasis field)


git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27579 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Bertrik Sikken 2010-07-26 20:15:16 +00:00
parent 6087d89603
commit adc472bec5
14 changed files with 53 additions and 162 deletions

View file

@ -84,6 +84,7 @@ struct fm_region_data
int freq_min;
int freq_max;
int freq_step;
int deemphasis; /* in microseconds, usually 50 or 75 */
};
extern const struct fm_region_data fm_region_data[TUNER_NUM_REGIONS];