OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:syncword
(Results
1 - 7
of
7
) sorted by null
/frameworks/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
)");
/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;
/external/chromium_org/media/mp2t/
ts_packet.cc
55
DVLOG(1) << "Not on a TS
syncword
:"
82
int
syncword
;
local
88
RCHECK(bit_reader.ReadBits(8, &
syncword
));
/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 115 milliseconds