Searched refs:commentFrame (Results 1 – 4 of 4) sorted by relevance
77 VorbisComment commentFrame = (VorbisComment) metadata.get(0); in parseVorbisComments() local78 assertThat(commentFrame.key).isEqualTo("Title"); in parseVorbisComments()79 assertThat(commentFrame.value).isEqualTo("Song"); in parseVorbisComments()80 commentFrame = (VorbisComment) metadata.get(1); in parseVorbisComments()81 assertThat(commentFrame.key).isEqualTo("Artist"); in parseVorbisComments()82 assertThat(commentFrame.value).isEqualTo("Singer"); in parseVorbisComments()126 VorbisComment commentFrame = (VorbisComment) metadata.get(0); in parseVorbisCommentWithEqualsInValue() local127 assertThat(commentFrame.key).isEqualTo("Title"); in parseVorbisCommentWithEqualsInValue()128 assertThat(commentFrame.value).isEqualTo("So=ng"); in parseVorbisCommentWithEqualsInValue()152 VorbisComment commentFrame = (VorbisComment) metadata.get(0); in parseInvalidVorbisComment() local[all …]
87 CommentFrame commentFrame = (CommentFrame) metadata.get(0); in peekId3Data_returnId3TagAccordingToGivenPredicate_ifId3TagPresent() local88 assertThat(commentFrame.language).isEqualTo("eng"); in peekId3Data_returnId3TagAccordingToGivenPredicate_ifId3TagPresent()89 assertThat(commentFrame.description).isEqualTo("description"); in peekId3Data_returnId3TagAccordingToGivenPredicate_ifId3TagPresent()90 assertThat(commentFrame.text).isEqualTo("text"); in peekId3Data_returnId3TagAccordingToGivenPredicate_ifId3TagPresent()
187 CommentFrame commentFrame = (CommentFrame) metadata.get(0); in decodeCommentFrame() local188 assertThat(commentFrame.language).isEqualTo("eng"); in decodeCommentFrame()189 assertThat(commentFrame.description).isEqualTo("description"); in decodeCommentFrame()190 assertThat(commentFrame.text).isEqualTo("text"); in decodeCommentFrame()201 commentFrame = (CommentFrame) metadata.get(0); in decodeCommentFrame()202 assertThat(commentFrame.language).isEqualTo("eng"); in decodeCommentFrame()203 assertThat(commentFrame.description).isEmpty(); in decodeCommentFrame()204 assertThat(commentFrame.text).isEmpty(); in decodeCommentFrame()226 CommentFrame commentFrame = (CommentFrame) metadata.get(0); in decodeMultiFrames() local229 assertThat(commentFrame.language).isEqualTo("eng"); in decodeMultiFrames()[all …]
84 CommentFrame commentFrame = (CommentFrame) entry; in setFromMetadata() local85 if (GAPLESS_DESCRIPTION.equals(commentFrame.description) in setFromMetadata()86 && setFromComment(commentFrame.text)) { in setFromMetadata()