Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Classes | Namespaces | Functions | Variables
generate_fir_coeff.py File Reference

Go to the source code of this file.

Classes

class  generate_fir_coeff.IndexTracker
 

Namespaces

namespace  generate_fir_coeff
 

Functions

 generate_fir_coeff.withinStdDev (n)
 
 generate_fir_coeff.withinStdDevRange (a, b)
 

Variables

int generate_fir_coeff.samples_per_pixel = 4
 
int generate_fir_coeff.subpxls_per_pixel = 3
 
list generate_fir_coeff.sample_offsets
 
int generate_fir_coeff.sample_units_width = 5
 
int generate_fir_coeff.std_dev_max = 3
 
int generate_fir_coeff.target_sum = 0x110
 
list generate_fir_coeff.coeffs = []
 
list generate_fir_coeff.coeffs_rounded = []
 
int generate_fir_coeff.current_sample_left = sample_offset - sample_units_width
 
int generate_fir_coeff.current_std_dev_left = -std_dev_max
 
bool generate_fir_coeff.done = False
 
 generate_fir_coeff.current_sample_right = math.floor(current_sample_left + 1)
 
int generate_fir_coeff.current_std_dev_right
 
 generate_fir_coeff.coverage = withinStdDevRange(current_std_dev_left, current_std_dev_right)
 
int generate_fir_coeff.delta = 0
 
 generate_fir_coeff.coeffs_rounded_sum = sum(coeffs_rounded)
 
list generate_fir_coeff.coeff_diff
 
 generate_fir_coeff.coeff_pkg
 
 generate_fir_coeff.num_elements_to_force_round = abs(coeffs_rounded_sum - target_sum)
 
tuple generate_fir_coeff.coeffs_rounded_aligned = ([0] * int(sample_align)) + coeffs_rounded