Skip to content

const-qualify other FFT functions #312

Description

@escherstair

Some years ago I've already opened an issue with the request of const-qualifying parametrs for FFT functions as much as possible.
Some of them have been const-qualified with commit 89fa43d.

Other parameters could be const-qualified in the same way:

static void arm_cfft_radix8by2_f32 (arm_cfft_instance_f32 * S, float32_t * p1)

to

static void arm_cfft_radix8by2_f32 (const arm_cfft_instance_f32 * S, float32_t * p1)

static void arm_cfft_radix8by4_f32 (arm_cfft_instance_f32 * S, float32_t * p1)

to

static void arm_cfft_radix8by4_f32 (const arm_cfft_instance_f32 * S, float32_t * p1)

If @llefaucheur is interesed I can open a PR.

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or request

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions