HomeSort by relevance Sort by last modified time
    Searched refs:syncword (Results 1 - 6 of 6) sorted by null

  /frameworks/wilhelm/src/android/
AacBqToPcmCbRenderer.cpp 43 SL_LOGE("AacBqToPcmCbRenderer::getAdtsFrameSize() returns 0 (can't read syncword or header)"
48 const uint8_t *syncword = data + offset; local
49 if ((syncword[0] != 0xff) || ((syncword[1] & 0xf6) != 0xf0)) {
50 SL_LOGE("AacBqToPcmCbRenderer::getAdtsFrameSize() returns 0 (wrong syncword)");
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
AACTrackImpl.java 224 int syncword = brb.readBits(12); local
225 if (syncword != 0xfff) {
256 int syncword = brb.readBits(12); local
257 if (syncword != 0xfff) {
AC3TrackImpl.java 140 int syncword = brb.readBits(16); local
141 if (syncword != 0xb77) {
EC3TrackImpl.java 178 int syncword = brb.readBits(16); local
179 if (syncword != 0xb77) {
  /frameworks/wilhelm/src/android/util/
AacAdtsExtractor.cpp 52 const uint8_t *syncword = syncHeader; local
62 SL_LOGE("AacAdtsExtractor:: getFrameSize() returns %d (syncword and header read error)",
67 if ((syncword[0] != 0xff) || ((syncword[1] & 0xf6) != 0xf0)) {
68 SL_LOGE("AacAdtsExtractor:: getFrameSize() returns 0 (syncword pb)");
72 const uint8_t protectionAbsent = syncword[1] & 0x1;
  /frameworks/av/media/libstagefright/
AACExtractor.cpp 102 uint8_t syncword[2]; local
103 if (source->readAt(offset, &syncword, 2) != 2) {
106 if ((syncword[0] != 0xff) || ((syncword[1] & 0xf6) != 0xf0)) {
372 // ADTS syncword

Completed in 213 milliseconds