Home
last modified time | relevance | path

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

/OK3568_Linux_fs/buildroot/dl/sox/git/src/
H A Dladspa.c107 union {LADSPA_Descriptor_Function fn; lt_ptr ptr;} ltptr; in sox_ladspa_getopts() local
140 if ((ltptr.ptr = lt_dlsym(l_st->lth, "ladspa_descriptor")) == NULL) { in sox_ladspa_getopts()
146 if (ltptr.fn(0UL) == NULL) { in sox_ladspa_getopts()
152 l_st->desc = ltptr.fn(0UL); in sox_ladspa_getopts()
157 if (argc > 0 && (ltptr.fn(1UL) != NULL || !sscanf(argv[0], "%lf", &arg))) { in sox_ladspa_getopts()
159 l_st->desc = ltptr.fn(++index); in sox_ladspa_getopts()
H A Dformats.c1268 union {sox_format_fn_t fn; lt_ptr ptr;} ltptr; in init_format() local
1269 ltptr.ptr = lt_dlsym(lth, fnname); in init_format()
1271 fnname, (void *)lth, ltptr.ptr); in init_format()
1272 if (ltptr.fn && (ltptr.fn()->sox_lib_version_code & ~255) == in init_format()
1278 s_sox_format_fns[nformats++].fn = ltptr.fn; in init_format()