Lines Matching refs:VorbisComment
76 ret = new VorbisComment(object, /*copy=*/false); in construct_block()
101 const VorbisComment *vorbiscomment = dynamic_cast<const VorbisComment *>(object); in clone()
115 return new VorbisComment(*vorbiscomment); in clone()
528 VorbisComment::Entry::Entry() : in Entry()
539 VorbisComment::Entry::Entry(const char *field, uint32_t field_length) : in Entry()
551 VorbisComment::Entry::Entry(const char *field) : in Entry()
563 …VorbisComment::Entry::Entry(const char *field_name, const char *field_value, uint32_t field_value_… in Entry()
575 VorbisComment::Entry::Entry(const char *field_name, const char *field_value) : in Entry()
587 VorbisComment::Entry::Entry(const Entry &entry) : in Entry()
600 VorbisComment::Entry &VorbisComment::Entry::operator=(const Entry &entry) in operator =()
608 VorbisComment::Entry::~Entry() in ~Entry()
613 bool VorbisComment::Entry::is_valid() const in is_valid()
618 uint32_t VorbisComment::Entry::get_field_length() const in get_field_length()
624 uint32_t VorbisComment::Entry::get_field_name_length() const in get_field_name_length()
630 uint32_t VorbisComment::Entry::get_field_value_length() const in get_field_value_length()
636 ::FLAC__StreamMetadata_VorbisComment_Entry VorbisComment::Entry::get_entry() const in get_entry()
642 const char *VorbisComment::Entry::get_field() const in get_field()
648 const char *VorbisComment::Entry::get_field_name() const in get_field_name()
654 const char *VorbisComment::Entry::get_field_value() const in get_field_value()
660 bool VorbisComment::Entry::set_field(const char *field, uint32_t field_length) in set_field()
683 bool VorbisComment::Entry::set_field(const char *field) in set_field()
688 bool VorbisComment::Entry::set_field_name(const char *field_name) in set_field_name()
709 bool VorbisComment::Entry::set_field_value(const char *field_value, uint32_t field_value_length) in set_field_value()
732 bool VorbisComment::Entry::set_field_value(const char *field_value) in set_field_value()
737 void VorbisComment::Entry::zero() in zero()
748 void VorbisComment::Entry::clear() in clear()
756 void VorbisComment::Entry::clear_entry() in clear_entry()
765 void VorbisComment::Entry::clear_field_name() in clear_field_name()
774 void VorbisComment::Entry::clear_field_value() in clear_field_value()
783 void VorbisComment::Entry::construct(const char *field, uint32_t field_length) in construct()
789 void VorbisComment::Entry::construct(const char *field) in construct()
794 …void VorbisComment::Entry::construct(const char *field_name, const char *field_value, uint32_t fie… in construct()
800 void VorbisComment::Entry::construct(const char *field_name, const char *field_value) in construct()
805 void VorbisComment::Entry::compose_field() in compose_field()
825 void VorbisComment::Entry::parse_field() in parse_field()
868 VorbisComment::VorbisComment(): in VorbisComment() function in FLAC::Metadata::VorbisComment
872 VorbisComment::~VorbisComment() in ~VorbisComment()
875 uint32_t VorbisComment::get_num_comments() const in get_num_comments()
881 const FLAC__byte *VorbisComment::get_vendor_string() const in get_vendor_string()
887 VorbisComment::Entry VorbisComment::get_comment(uint32_t indx) const in get_comment()
894 bool VorbisComment::set_vendor_string(const FLAC__byte *string) in set_vendor_string()
902 bool VorbisComment::resize_comments(uint32_t new_num_comments) in resize_comments()
908 bool VorbisComment::set_comment(uint32_t indx, const VorbisComment::Entry &entry) in set_comment()
915 bool VorbisComment::insert_comment(uint32_t indx, const VorbisComment::Entry &entry) in insert_comment()
922 bool VorbisComment::append_comment(const VorbisComment::Entry &entry) in append_comment()
928 bool VorbisComment::replace_comment(const VorbisComment::Entry &entry, bool all) in replace_comment()
934 bool VorbisComment::delete_comment(uint32_t indx) in delete_comment()
941 int VorbisComment::find_entry_from(uint32_t offset, const char *field_name) in find_entry_from()
947 int VorbisComment::remove_entry_matching(const char *field_name) in remove_entry_matching()
953 int VorbisComment::remove_entries_matching(const char *field_name) in remove_entries_matching()
1348 FLACPP_API bool get_tags(const char *filename, VorbisComment *&tags) in get_tags()
1357 tags = new VorbisComment(object, /*copy=*/false); in get_tags()
1364 FLACPP_API bool get_tags(const char *filename, VorbisComment &tags) in get_tags()