Displaying 2 results from an estimated 2 matches for "flac__stream_decoder_end_of_link".
2024 Sep 01
1
Feedback on implementation of decoding of chained streams
brianw wrote:
> On Sep 1, 2024, at 12:44 PM, Martijn van Beurden wrote:
>> Everything works, but as is with any change to the API, I don't know
>> whether it is convenient for API users other than the flac command
>> line tool. So, I'd like some feedback.
I only looked briefly, but I had a few questions.
How does FLAC__stream_decoder_get_total_samples() work for
2024 Sep 02
1
Feedback on implementation of decoding of chained streams
...decoder_set_metadata_ignore_all
That means the metadata filters can now be changed after
initialization, which wasn't possible before.
Additionally, two structs were changed. To
FLAC__StreamDecoderReadStatus,
FLAC__STREAM_DECODER_READ_STATUS_END_OF_LINK was added. To
FLAC__StreamDecoderState, FLAC__STREAM_DECODER_END_OF_LINK was added.
These two additions break the ABI compatibility.
Op zo 1 sep 2024 om 23:55 schreef Timothy B. Terriberry <tterribe at xiph.org>:
>
> brianw wrote:
> > On Sep 1, 2024, at 12:44 PM, Martijn van Beurden wrote:
> >> Everything works, but as is with any change to t...