-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
audio: reduce code size #10036
Conversation
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. |
015bbdc
to
52e5e42
Compare
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.
52e5e42
to
e15eba0
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Awesome! Thank you!
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 |
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: