Home
last modified time | relevance | path

Searched refs:sf_get_string (Results 1 – 11 of 11) sorted by relevance

/third_party/libsnd/tests/
Dstring_test.c249 cptr = sf_get_string (file, SF_STR_TITLE) ; in string_start_end_test()
256 cptr = sf_get_string (file, SF_STR_COPYRIGHT) ; in string_start_end_test()
263 cptr = sf_get_string (file, SF_STR_SOFTWARE) ; in string_start_end_test()
276 cptr = sf_get_string (file, SF_STR_ARTIST) ; in string_start_end_test()
283 cptr = sf_get_string (file, SF_STR_COMMENT) ; in string_start_end_test()
291 { cptr = sf_get_string (file, SF_STR_DATE) ; in string_start_end_test()
298 cptr = sf_get_string (file, SF_STR_GENRE) ; in string_start_end_test()
316 cptr = sf_get_string (file, SF_STR_ALBUM) ; in string_start_end_test()
323 cptr = sf_get_string (file, SF_STR_LICENSE) ; in string_start_end_test()
330 cptr = sf_get_string (file, SF_STR_TRACKNUMBER) ; in string_start_end_test()
[all …]
Dlossy_comp_test.c2553 comment = sf_get_string (file, SF_STR_COMMENT) ; in check_comment()
/third_party/gstreamer/gstplugins_bad/ext/sndfile/
Dgstsfdec.c484 if ((tag = sf_get_string (self->file, SF_STR_TITLE)) && *tag) { in create_and_send_tags()
487 if ((tag = sf_get_string (self->file, SF_STR_COMMENT)) && *tag) { in create_and_send_tags()
490 if ((tag = sf_get_string (self->file, SF_STR_ARTIST)) && *tag) { in create_and_send_tags()
493 if ((tag = sf_get_string (self->file, SF_STR_ALBUM)) && *tag) { in create_and_send_tags()
496 if ((tag = sf_get_string (self->file, SF_STR_GENRE)) && *tag) { in create_and_send_tags()
499 if ((tag = sf_get_string (self->file, SF_STR_COPYRIGHT)) && *tag) { in create_and_send_tags()
502 if ((tag = sf_get_string (self->file, SF_STR_LICENSE)) && *tag) { in create_and_send_tags()
505 if ((tag = sf_get_string (self->file, SF_STR_SOFTWARE)) && *tag) { in create_and_send_tags()
509 if ((tag = sf_get_string (self->file, SF_STR_TRACKNUMBER)) && *tag) { in create_and_send_tags()
514 if ((tag = sf_get_string (self->file, SF_STR_DATE)) && *tag) { in create_and_send_tags()
/third_party/libsnd/programs/
Dsndfile-metadata-get.c154 { str = sf_get_string (file, id) ; \ in process_args()
Dsndfile-convert.c381 { str = sf_get_string (infile, k) ; in copy_metadata()
/third_party/libsnd/include/
Dsndfile.h633 const char* sf_get_string (SNDFILE *sndfile, int str_type);
Dsndfile.hh317 { return sf_get_string (p->sf, str_type) ; } in getString()
Dsndfile.h.in664 ** On error, sf_set_string() returns non-zero while sf_get_string()
670 const char* sf_get_string (SNDFILE *sndfile, int str_type) ;
/third_party/pulseaudio/src/pulsecore/
Dsndfile-util.c344 if (!(s = sf_get_string(sf, c))) in pa_sndfile_init_proplist()
/third_party/libsnd/docs/
Dapi.md49 | [sf_get_string, sf_set_string](#string) …
516 const char* sf_get_string (SNDFILE *sndfile, int str_type) ;
537 The sf_get_string() function returns the specified string if it exists and a
552 The suggested method of dealing with tags retrived using sf_get_string() is to
/third_party/libsnd/src/
Dsndfile.c1535 sf_get_string (SNDFILE *sndfile, int str_type) in sf_get_string() function