MCPcopy Create free account
hub / github.com/ml-explore/mlx-data / opus_get_version

Function opus_get_version

mlx/data/core/Version.cpp:163–173  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

161 }
162}
163std::string opus_get_version() {
164 if (sndfile_supports_format(SF_FORMAT_OGG | SF_FORMAT_OPUS)) {
165#if MLX_HAS_OPUS
166 return std::string(opus_get_version_string());
167#else
168 return "unknown";
169#endif
170 } else {
171 return {};
172 }
173}
174std::string mpg123_get_version() {
175 if (sndfile_supports_format(SF_FORMAT_MPEG | SF_FORMAT_MPEG_LAYER_I)) {
176#if MLX_HAS_MPEG

Callers 1

libs_versionFunction · 0.85

Calls 1

sndfile_supports_formatFunction · 0.85

Tested by

no test coverage detected