Searched refs:ID3 (Results 1 - 7 of 7) sorted by relevance

/frameworks/av/media/libstagefright/include/
H A DID3.h28 struct ID3 { struct in namespace:android
38 explicit ID3(DataSourceBase *source, bool ignoreV1 = false, off64_t offset = 0);
39 ID3(const uint8_t *data, size_t size, bool ignoreV1 = false);
40 ~ID3();
49 Iterator(const ID3 &parent, const char *id);
59 const ID3 &mParent;
84 // size of the ID3 tag including header before any unsynchronization.
95 ID3(const ID3 &);
96 ID3
[all...]
/frameworks/av/media/libstagefright/id3/
H A DID3.cpp18 #define LOG_TAG "ID3"
21 #include "../include/ID3.h"
59 ID3::ID3(DataSourceBase *source, bool ignoreV1, off64_t offset) function in class:android::ID3
73 ID3::ID3(const uint8_t *data, size_t size, bool ignoreV1) function in class:android::ID3
93 ID3::~ID3() {
100 bool ID3::isValid() const {
104 ID3
[all...]
H A Dtestid3.cpp17 #include "../include/ID3.h"
75 ID3 tag(file.get());
81 ID3::Iterator it(tag, NULL);
/frameworks/av/media/extractors/mp3/
H A DMP3Extractor.cpp23 #include "ID3.h"
56 // Skip an optional ID3 header if syncing at the very beginning
68 if (memcmp("ID3", id3header, 3)) {
84 ALOGV("skipped ID3 tag, new starting offset is %lld (0x%016llx)",
374 ID3 id3(mDataSource, true);
376 ID3::Iterator *com = new ID3::Iterator(id3, "COM");
379 com = new ID3::Iterator(id3, "COMM");
615 ID3 id3(mDataSource);
642 ID3
[all...]
/frameworks/av/media/libstagefright/codecs/common/include/
H A DvoIndex.h91 _MAKE_SOURCE_ID (0x400000, ID3)
/frameworks/av/media/libstagefright/httplive/
H A DPlaylistFetcher.cpp26 #include "include/ID3.h"
1995 // stream prefixed by an ID3 tag.
2001 // Make sure to skip all ID3 tags preceding the audio data.
2004 ID3 id3(buffer->data(), buffer->size(), true /* ignoreV1 */);
2007 ALOGE("Unable to parse ID3 tag.");
2017 ID3::Iterator it(id3, "PRIV");
2039 ALOGE("Unable to extract transportStreamTimestamp from ID3 tag.");
2044 // skip the ID3 tag
2138 if (!memcmp(id3Header, "ID3", 3)) {
2139 ID3 id
[all...]
/frameworks/av/media/extractors/mp4/
H A DMPEG4Extractor.cpp52 #include "include/ID3.h"
3304 ID3 id3(mDataSource, true /* ignorev1 */, offset);
3329 ID3::Iterator *it = new ID3::Iterator(id3, kMap[i].tag1);
3332 it = new ID3::Iterator(id3, kMap[i].tag2);

Completed in 401 milliseconds