MCPcopy Create free account
hub / github.com/MusicPlayerDaemon/MPD / stream_init

Function stream_init

src/decoder/plugins/FlacDecoderPlugin.cxx:280–287  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

278}
279
280static FLAC__StreamDecoderInitStatus
281stream_init(FLAC__StreamDecoder *flac_dec, FlacDecoder *data,
282 bool is_ogg) noexcept
283{
284 return is_ogg
285 ? stream_init_oggflac(flac_dec, data)
286 : stream_init_flac(flac_dec, data);
287}
288
289static bool
290FlacInitAndDecode(FlacDecoder &data, FLAC__StreamDecoder *sd, bool is_ogg)

Callers 1

FlacInitAndDecodeFunction · 0.85

Calls 2

stream_init_oggflacFunction · 0.85
stream_init_flacFunction · 0.85

Tested by

no test coverage detected