Searched refs:VorbisComment (Results 1 – 9 of 9) sorted by relevance
/external/exoplayer/tree/library/common/src/main/java/com/google/android/exoplayer2/metadata/flac/ |
D | VorbisComment.java | 26 public final class VorbisComment implements Metadata.Entry { class 38 public VorbisComment(String key, String value) { in VorbisComment() method in VorbisComment 43 /* package */ VorbisComment(Parcel in) { in VorbisComment() method in VorbisComment 61 VorbisComment other = (VorbisComment) obj; in equals() 86 public static final Parcelable.Creator<VorbisComment> CREATOR = 87 new Parcelable.Creator<VorbisComment>() { 90 public VorbisComment createFromParcel(Parcel in) { 91 return new VorbisComment(in); 95 public VorbisComment[] newArray(int size) { 96 return new VorbisComment[size];
|
/external/flac/src/libFLAC++/ |
D | metadata.cpp | 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 =() [all …]
|
/external/exoplayer/tree/library/extractor/src/test/java/com/google/android/exoplayer2/extractor/ |
D | FlacStreamMetadataTest.java | 23 import com.google.android.exoplayer2.metadata.flac.VorbisComment; 77 VorbisComment commentFrame = (VorbisComment) metadata.get(0); in parseVorbisComments() 80 commentFrame = (VorbisComment) metadata.get(1); in parseVorbisComments() 126 VorbisComment commentFrame = (VorbisComment) metadata.get(0); in parseVorbisCommentWithEqualsInValue() 152 VorbisComment commentFrame = (VorbisComment) metadata.get(0); in parseInvalidVorbisComment()
|
D | FlacMetadataReaderTest.java | 27 import com.google.android.exoplayer2.metadata.flac.VorbisComment; 255 VorbisComment vorbisComment = (VorbisComment) metadata.get(0); in readMetadataBlock_vorbisCommentBlock_updatesStreamMetadata()
|
/external/exoplayer/tree/library/common/src/test/java/com/google/android/exoplayer2/metadata/flac/ |
D | VorbisCommentTest.java | 31 VorbisComment vorbisCommentFrameToParcel = new VorbisComment("key", "value"); in parcelable() 37 VorbisComment vorbisCommentFrameFromParcel = VorbisComment.CREATOR.createFromParcel(parcel); in parcelable()
|
/external/flac/include/FLAC++/ |
D | metadata.h | 558 class FLACPP_API VorbisComment : public Prototype { 642 VorbisComment(); 648 inline VorbisComment(const VorbisComment &object): Prototype(object) { } in VorbisComment() function 649 inline VorbisComment(const ::FLAC__StreamMetadata &object): Prototype(object) { } in VorbisComment() function 650 inline VorbisComment(const ::FLAC__StreamMetadata *object): Prototype(object) { } in VorbisComment() function 656 inline VorbisComment(::FLAC__StreamMetadata *object, bool copy): Prototype(object, copy) { } in VorbisComment() function 658 ~VorbisComment(); 662 …inline VorbisComment &operator=(const VorbisComment &object) { Prototype::operator=(object); retur… 663 …inline VorbisComment &operator=(const ::FLAC__StreamMetadata &object) { Prototype::operator=(objec… 664 …inline VorbisComment &operator=(const ::FLAC__StreamMetadata *object) { Prototype::operator=(objec… [all …]
|
/external/flac/src/test_libFLAC++/ |
D | metadata_object.cpp | 1021 FLAC::Metadata::VorbisComment::Entry entry1; in test_metadata_object_vorbiscomment() 1031 FLAC::Metadata::VorbisComment::Entry entry2("name2=value2", strlen("name2=value2")); in test_metadata_object_vorbiscomment() 1038 FLAC::Metadata::VorbisComment::Entry entry2z("name2=value2"); in test_metadata_object_vorbiscomment() 1047 FLAC::Metadata::VorbisComment::Entry entry3("name3", "value3", strlen("value3")); in test_metadata_object_vorbiscomment() 1054 FLAC::Metadata::VorbisComment::Entry entry3z("name3", "value3"); in test_metadata_object_vorbiscomment() 1064 FLAC::Metadata::VorbisComment::Entry entry2copy(entry2); in test_metadata_object_vorbiscomment() 1074 FLAC::Metadata::VorbisComment::Entry entry1 = entry2; in test_metadata_object_vorbiscomment() 1174 FLAC::Metadata::VorbisComment block; in test_metadata_object_vorbiscomment() 1187 FLAC::Metadata::VorbisComment blockcopy(block); in test_metadata_object_vorbiscomment() 1201 FLAC::Metadata::VorbisComment blockcopy(vorbiscomment_); in test_metadata_object_vorbiscomment() [all …]
|
D | metadata_manip.cpp | 594 FLAC::Metadata::VorbisComment v(&vorbiscomment); in generate_file_() 708 FLAC::Metadata::VorbisComment *tags = 0; in test_level_0_() 725 FLAC::Metadata::VorbisComment tags; in test_level_0_()
|
/external/exoplayer/tree/library/extractor/src/main/java/com/google/android/exoplayer2/extractor/ |
D | FlacStreamMetadata.java | 23 import com.google.android.exoplayer2.metadata.flac.VorbisComment; 371 VorbisComment entry = new VorbisComment(keyAndValue[0], keyAndValue[1]); in buildMetadata()
|