Searched refs:commentLength (Results 1 – 4 of 4) sorted by relevance
/aosp12/frameworks/av/media/libstagefright/tests/metadatautils/ |
H A D | MetaDataUtilsTest.cpp | 400 size_t commentLength; in TEST_P() local 405 stringLine >> tag >> key >> value >> commentLength; in TEST_P() 406 ASSERT_GT(commentLength, 0) << "Vorbis comment size must be greater than 0"; in TEST_P() 415 char *buffer = strndup(comment.c_str(), commentLength); in TEST_P() 416 ASSERT_NE(buffer, nullptr) << "Failed to allocate buffer of size: " << commentLength; in TEST_P() 421 parseVorbisComment(fileMeta, buffer, commentLength); in TEST_P()
|
/aosp12/frameworks/av/media/libstagefright/include/media/stagefright/ |
H A D | MetaDataUtils.h | 39 AMediaFormat *fileMeta, const char *comment, size_t commentLength);
|
/aosp12/frameworks/av/media/libstagefright/ |
H A D | MetaDataUtils.cpp | 309 AMediaFormat *fileMeta, const char *comment, size_t commentLength) { in parseVorbisComment() argument 342 commentLength - tagLen - 1); in parseVorbisComment()
|
/aosp12/frameworks/av/media/extractors/ogg/ |
H A D | OggExtractor.cpp | 1288 size_t commentLength = mVc.comment_lengths[i]; in parseFileMetaData() local 1289 parseVorbisComment(mFileMeta, comment, commentLength); in parseFileMetaData()
|