POSIBILITY #741
Answered
by
pschatzmann
aqildad-create
asked this question in
Q&A
POSIBILITY
#741
-
Is this possible for encoders or SBC encoder to get compress bytes , For example I don't want the encoded data to write to file but need it in array for further processing ?? encoder.write(samples, bytes_wrte);----> this write to file , i want to write It to array not file ?? |
Beta Was this translation helpful? Give feedback.
Answered by
pschatzmann
Apr 1, 2023
Replies: 1 comment 2 replies
-
If I remember right you already asked this question and the answer is still the same: |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
pschatzmann
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If I remember right you already asked this question and the answer is still the same:
use a CallbackStream or a RingBufferStream as output.
In the CallbackStream you can register a callback and in the RingBufferStream you can read the data that was converted