Displaying 1 result from an estimated 1 matches for "celt_bitstream_version".
2011 Apr 20
1
CELT in ffmpeg and API questions
...support for decoding using libcelt
was just pushed to ffmpeg.
It raised a few API questions or issues:
* At least while it's experimental, having a constant in the library for the
supported bitstream version would probably be useful. Something like that
comes to mind:
extern celt_int32 celt_bitstream_version;
or, even better:
int celt_bitstream_version_supported(celt_int32 version);
Since dynamic linking is supported, a build-time constant is not suitable.
Currently, I resorted to have libcelt generate a dummy header to get the
version_id field.
* The header_size is set to 56, while the...