Displaying 1 result from an estimated 1 matches for "fntab".
Did you mean:
fftab
2004 Sep 10
0
http streaming in the xmms plugin
...HTTP_DECODER_FUNCTIONS;
! }
!
! static decoder_t source_to_decoder_type (const char *source)
! {
! return strncasecmp(source, "http://", 7) ? DECODER_FILE : DECODER_HTTP;
! }
!
! static void change_decoder_if_needed (decoder_t new_decoder_type, void **decoderp, decoder_funcs_t const ** fntabp)
! {
! const decoder_funcs_t *new_fn_table = DECODER_FUNCS [new_decoder_type];
! if (*fntabp != new_fn_table) {
! (*fntabp)->safe_decoder_delete(*decoderp);
! *fntabp = new_fn_table;
! *decoderp = new_fn_table -> new_decoder();
! }
! }
!
! FLAC__bool safe_decoder_init_(const char *...