Home
last modified time | relevance | path

Searched refs:fConvert (Results 1 – 2 of 2) sorted by relevance

/haiku/src/add-ons/media/plugins/raw_decoder/
H A DRawDecoderPlugin.cpp278 fConvert = &uint8_to_uint8; in NegotiateAudioOutputFormat()
281 fConvert = &uint8_to_int8; in NegotiateAudioOutputFormat()
284 fConvert = &uint8_to_int16; in NegotiateAudioOutputFormat()
287 fConvert = &uint8_to_int32; in NegotiateAudioOutputFormat()
290 fConvert = &uint8_to_float32; in NegotiateAudioOutputFormat()
301 fConvert = &int8_to_uint8; in NegotiateAudioOutputFormat()
304 fConvert = &int8_to_int8; in NegotiateAudioOutputFormat()
307 fConvert = &int8_to_int16; in NegotiateAudioOutputFormat()
310 fConvert = &int8_to_int32; in NegotiateAudioOutputFormat()
313 fConvert = &int8_to_float32; in NegotiateAudioOutputFormat()
[all …]
H A DRawDecoderPlugin.h57 void (*fConvert)(void *dst, const void *src, int32 count); variable