Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

audio: reduce code size #10036

Merged
merged 3 commits into from
Feb 7, 2025
Merged

Conversation

jepler
Copy link

@jepler jepler commented Feb 7, 2025

By placing certain fields in a fixed location in all sample types code can be reduced & reused. For instance, the same property object can be used for every sample type's sample_rate property.

The sample proto functions like sample_rate become superfluous since once an object is verified to support the audiosample protocol, direct access to the fields in the base object is possible.

However, it's necessary to carefully initialize all the new fields. Some sample types, like Synthesizer & MidiTrack, are tested during CI. Others are not.

Saves 676 bytes flash on itsybitsy m0, 1872 bytes on metro rp2350. Net deletes a bit over 400 lines of code

Todo:

  • finish fixing the unix tests
  • fix all the other arch builds
  • actually test it on hw
  • actually test all sample kinds
  • document all the common audiosample properties on all the types

@jepler
Copy link
Author

jepler commented Feb 7, 2025

This also helps set the stage for #9877: The data for managing the first/second buffer would be placed in the common structure, and the logic in the wrapper to get_buffer. Then, the individual sample implementations need no longer care about the single channel case.

@jepler jepler changed the title audio: reduce code siz audio: reduce code size Feb 7, 2025
@jepler jepler force-pushed the audiosample-better-properties branch from 015bbdc to 52e5e42 Compare February 7, 2025 02:59
there are some lines above that set it OFF if needed; the top level
logic will set it ON if audiocore is enabled.

Before this, some boards without any audio capability (e.g., pycamera
with esp32s3, lacking both audioio and i2s) enabled mp3. This was not
useful, and with other changes it will become a build error.
By placing certain fields in a fixed location in all sample types,
code can be reduced & reused. For instance, the same property object
can be used for every sample type's `sample_rate` property.

The sample proto functions like `sample_rate` become superfluous since
once an object is verified to support the audiosample protocol, direct
access to the fields in the base object is possible.
@jepler jepler force-pushed the audiosample-better-properties branch from 52e5e42 to e15eba0 Compare February 7, 2025 03:56
Copy link
Member

@tannewt tannewt left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Awesome! Thank you!

@tannewt tannewt merged commit 9e08417 into adafruit:main Feb 7, 2025
573 checks passed
@jepler
Copy link
Author

jepler commented Feb 7, 2025

Oops, this should have been a draft because I hadn't tested it on any hw. I will do some basic testing when I'm back at home, hopefully any problems are minor

gamblor21 added a commit to gamblor21/circuitpython that referenced this pull request Feb 9, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants