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

  /frameworks/base/media/libstagefright/codecs/aacdec/
find_adts_syncword.cpp 26 bits available to conduct a search for the syncword. The plus sign in
32 The length of the syncword should subtract from the number of available
46 pSyncword = Pointer to variable containing the syncword that the
52 syncword_length = The length of the syncword. [ Int ]
78 This module scans the bitstream for a syncword of any length between 1 and 32.
79 If certain bits in the syncword are to be ignored, that bit position should
81 for a syncword to be constructed out of non-contiguous bits.
83 Upon finding the syncword's position in the bitstream, a value denoting the
84 syncword's degree of deviance from being byte-aligned (byte_align_offset)
88 If no syncword is found, the function returns status == ERROR
240 UInt32 syncword = *(pSyncword); local
    [all...]
s_tdec_int_file.h 205 UInt32 syncword; member in struct:__anon14850
pvmp4audiodecoderframe.cpp 653 &(pVars->syncword),
    [all...]
  /external/bluetooth/bluez/sbc/
sbcinfo.c 40 uint8_t syncword:8; /* Sync word */ member in struct:sbc_frame_hdr
51 uint8_t syncword:8; /* Sync word */ member in struct:sbc_frame_hdr
194 if (len != sizeof(hdr) || hdr.syncword != 0x9c) {
240 if ((size_t) len < sizeof(hdr) || hdr.syncword != 0x9c) {
242 "(len %zd syncword 0x%02x)\n",
243 len, hdr.syncword);
  /system/media/wilhelm/src/android/
AacBqToPcmCbRenderer.cpp 42 SL_LOGE("AacBqToPcmCbRenderer::getAdtsFrameSize() returns 0 (can't read syncword or header)"
47 const uint8_t *syncword = data + offset; local
48 if ((syncword[0] != 0xff) || ((syncword[1] & 0xf6) != 0xf0)) {
49 SL_LOGE("AacBqToPcmCbRenderer::getAdtsFrameSize() returns 0 (wrong syncword)");
  /frameworks/base/media/libstagefright/
AACExtractor.cpp 101 uint8_t syncword[2]; local
102 if (source->readAt(offset, &syncword, 2) != 2) {
105 if ((syncword[0] != 0xff) || ((syncword[1] & 0xf6) != 0xf0)) {
328 // ADTS syncword
  /system/media/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;

Completed in 344 milliseconds