/external/chromium_org/media/formats/mp2t/ |
D | ts_packet.cc | 77 BitReader bit_reader(buf, kPacketSize); in ParseHeader() local 88 RCHECK(bit_reader.ReadBits(8, &syncword)); in ParseHeader() 89 RCHECK(bit_reader.ReadBits(1, &transport_error_indicator)); in ParseHeader() 90 RCHECK(bit_reader.ReadBits(1, &payload_unit_start_indicator)); in ParseHeader() 91 RCHECK(bit_reader.ReadBits(1, &transport_priority)); in ParseHeader() 92 RCHECK(bit_reader.ReadBits(13, &pid_)); in ParseHeader() 93 RCHECK(bit_reader.ReadBits(2, &transport_scrambling_control)); in ParseHeader() 94 RCHECK(bit_reader.ReadBits(2, &adaptation_field_control)); in ParseHeader() 95 RCHECK(bit_reader.ReadBits(4, &continuity_counter_)); in ParseHeader() 110 RCHECK(bit_reader.ReadBits(8, &adaptation_field_length)); in ParseHeader() [all …]
|
D | ts_section_pmt.cc | 23 bool TsSectionPmt::ParsePsiSection(BitReader* bit_reader) { in ParsePsiSection() argument 35 RCHECK(bit_reader->ReadBits(8, &table_id)); in ParsePsiSection() 36 RCHECK(bit_reader->ReadBits(1, §ion_syntax_indicator)); in ParsePsiSection() 37 RCHECK(bit_reader->ReadBits(1, &dummy_zero)); in ParsePsiSection() 38 RCHECK(bit_reader->ReadBits(2, &reserved)); in ParsePsiSection() 39 RCHECK(bit_reader->ReadBits(12, §ion_length)); in ParsePsiSection() 40 int section_start_marker = bit_reader->bits_available() / 8; in ParsePsiSection() 42 RCHECK(bit_reader->ReadBits(16, &program_number)); in ParsePsiSection() 43 RCHECK(bit_reader->ReadBits(2, &reserved)); in ParsePsiSection() 44 RCHECK(bit_reader->ReadBits(5, &version_number)); in ParsePsiSection() [all …]
|
D | ts_section_pes.cc | 130 BitReader bit_reader(raw_pes, raw_pes_size); in ParseInternal() local 136 RCHECK(bit_reader.ReadBits(24, &packet_start_code_prefix)); in ParseInternal() 137 RCHECK(bit_reader.ReadBits(8, &stream_id)); in ParseInternal() 138 RCHECK(bit_reader.ReadBits(16, &pes_packet_length)); in ParseInternal() 143 pes_packet_length = bit_reader.bits_available() / 8; in ParseInternal() 167 RCHECK(bit_reader.ReadBits(2, &dummy_2)); in ParseInternal() 169 RCHECK(bit_reader.ReadBits(2, &PES_scrambling_control)); in ParseInternal() 170 RCHECK(bit_reader.ReadBits(1, &PES_priority)); in ParseInternal() 171 RCHECK(bit_reader.ReadBits(1, &data_alignment_indicator)); in ParseInternal() 172 RCHECK(bit_reader.ReadBits(1, ©right)); in ParseInternal() [all …]
|
D | ts_section_pat.cc | 24 bool TsSectionPat::ParsePsiSection(BitReader* bit_reader) { in ParsePsiSection() argument 36 RCHECK(bit_reader->ReadBits(8, &table_id)); in ParsePsiSection() 37 RCHECK(bit_reader->ReadBits(1, §ion_syntax_indicator)); in ParsePsiSection() 38 RCHECK(bit_reader->ReadBits(1, &dummy_zero)); in ParsePsiSection() 39 RCHECK(bit_reader->ReadBits(2, &reserved)); in ParsePsiSection() 40 RCHECK(bit_reader->ReadBits(12, §ion_length)); in ParsePsiSection() 43 RCHECK(bit_reader->ReadBits(16, &transport_stream_id)); in ParsePsiSection() 44 RCHECK(bit_reader->ReadBits(2, &reserved)); in ParsePsiSection() 45 RCHECK(bit_reader->ReadBits(5, &version_number)); in ParsePsiSection() 46 RCHECK(bit_reader->ReadBits(1, ¤t_next_indicator)); in ParsePsiSection() [all …]
|
D | ts_section_psi.cc | 108 BitReader bit_reader(raw_psi, raw_psi_size); in Parse() local 109 bool status = ParsePsiSection(&bit_reader); in Parse()
|
D | ts_section_pmt.h | 27 virtual bool ParsePsiSection(BitReader* bit_reader) OVERRIDE;
|
D | ts_section_pat.h | 24 virtual bool ParsePsiSection(BitReader* bit_reader) OVERRIDE;
|
D | ts_section_psi.h | 30 virtual bool ParsePsiSection(BitReader* bit_reader) = 0;
|
D | ts_packet.h | 50 bool ParseAdaptationField(BitReader* bit_reader,
|
/external/chromium_org/media/formats/mp4/ |
D | aac.cc | 172 bool AAC::SkipDecoderGASpecificConfig(BitReader* bit_reader) const { in SkipDecoderGASpecificConfig() 186 return SkipGASpecificConfig(bit_reader); in SkipDecoderGASpecificConfig() 216 bool AAC::SkipGASpecificConfig(BitReader* bit_reader) const { in SkipGASpecificConfig() 221 RCHECK(bit_reader->ReadBits(1, &dummy)); // frameLengthFlag in SkipGASpecificConfig() 222 RCHECK(bit_reader->ReadBits(1, &depends_on_core_coder)); in SkipGASpecificConfig() 224 RCHECK(bit_reader->ReadBits(14, &dummy)); // coreCoderDelay in SkipGASpecificConfig() 226 RCHECK(bit_reader->ReadBits(1, &extension_flag)); in SkipGASpecificConfig() 230 RCHECK(bit_reader->ReadBits(3, &dummy)); // layerNr in SkipGASpecificConfig() 234 RCHECK(bit_reader->ReadBits(5, &dummy)); // numOfSubFrame in SkipGASpecificConfig() 235 RCHECK(bit_reader->ReadBits(11, &dummy)); // layer_length in SkipGASpecificConfig() [all …]
|
D | aac.h | 64 bool SkipDecoderGASpecificConfig(BitReader* bit_reader) const; 66 bool SkipGASpecificConfig(BitReader* bit_reader) const;
|
/external/chromium_org/media/base/ |
D | bit_reader_unittest.cc | 107 BitReader bit_reader(buffer, sizeof(buffer)); in TEST() local 108 EXPECT_EQ(bit_reader.bits_available(), static_cast<int>(sizeof(buffer) * 8)); in TEST() 113 EXPECT_TRUE(bit_reader.ReadBits(read_bit_count, &value)); in TEST() 116 EXPECT_TRUE(bit_reader.SkipBits(pattern_read_skip[k][1])); in TEST()
|
/external/chromium_org/third_party/brotli/ |
D | brotli.gyp | 15 'src/brotli/dec/bit_reader.c', 16 'src/brotli/dec/bit_reader.h',
|
D | BUILD.gn | 7 "src/brotli/dec/bit_reader.c", 8 "src/brotli/dec/bit_reader.h",
|
D | brotli.target.linux-x86.mk | 25 third_party/brotli/src/brotli/dec/bit_reader.c \
|
D | brotli.target.darwin-mips.mk | 25 third_party/brotli/src/brotli/dec/bit_reader.c \
|
D | brotli.target.darwin-mips64.mk | 25 third_party/brotli/src/brotli/dec/bit_reader.c \
|
D | brotli.target.darwin-x86_64.mk | 25 third_party/brotli/src/brotli/dec/bit_reader.c \
|
/external/chromium_org/third_party/brotli/src/brotli/dec/ |
D | Makefile | 5 OBJS = bit_reader.o decode.o huffman.o safe_malloc.o streams.o
|
/external/llvm/bindings/python/llvm/tests/ |
D | test_bitreader.py | 7 from ..bit_reader import parse_bitcode
|
D | test_core.py | 8 from ..bit_reader import parse_bitcode
|
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/decoder/ |
D | vp9_dthread.h | 23 vp9_reader bit_reader; member
|
D | vp9_decoder.h | 32 vp9_reader bit_reader; member
|
/external/libvpx/libvpx/vp9/decoder/ |
D | vp9_dthread.h | 25 vp9_reader bit_reader; member
|
/external/webp/src/ |
D | Android.mk | 110 utils/bit_reader.c \
|