Home
last modified time | relevance | path

Searched refs:block_entry (Results 1 – 15 of 15) sorted by relevance

/external/libwebm/testing/
Dmkvparser_tests.cc183 const BlockEntry* block_entry; in TEST_F() local
184 EXPECT_EQ(0, cluster->GetFirst(block_entry)); in TEST_F()
185 ASSERT_TRUE(block_entry != NULL); in TEST_F()
186 EXPECT_FALSE(block_entry->EOS()); in TEST_F()
187 CompareBlockContents(cluster, block_entry->GetBlock(), 0, kVideoTrackNumber, in TEST_F()
191 EXPECT_EQ(0, cluster->GetNext(block_entry, block_entry)); in TEST_F()
192 ASSERT_TRUE(block_entry != NULL); in TEST_F()
193 EXPECT_FALSE(block_entry->EOS()); in TEST_F()
194 CompareBlockContents(cluster, block_entry->GetBlock(), 2000000, in TEST_F()
198 EXPECT_EQ(0, cluster->GetNext(block_entry, block_entry)); in TEST_F()
[all …]
Dmkvparser_fuzzer.cc76 const mkvparser::BlockEntry* block_entry = in GetBlockEntryFromCluster() local
78 return block_entry; in GetBlockEntryFromCluster()
100 const mkvparser::BlockEntry* block_entry = in WalkCues() local
102 static_cast<void>(block_entry); in WalkCues()
108 const mkvparser::BlockEntry* block_entry; in ParseCluster() local
109 long status = cluster.GetFirst(block_entry); in ParseCluster()
114 while (block_entry != nullptr && !block_entry->EOS()) { in ParseCluster()
115 const mkvparser::Block* const block = block_entry->GetBlock(); in ParseCluster()
120 status = cluster.GetNext(block_entry, block_entry); in ParseCluster()
/external/libvpx/
Dwebmdec.cc39 webm_ctx->block_entry = nullptr; in reset()
134 const mkvparser::BlockEntry *block_entry = in webm_read_frame() local
135 reinterpret_cast<const mkvparser::BlockEntry *>(webm_ctx->block_entry); in webm_read_frame()
140 if (block_entry == nullptr && !block_entry_eos) { in webm_read_frame()
141 status = cluster->GetFirst(block_entry); in webm_read_frame()
143 } else if (block_entry_eos || block_entry->EOS()) { in webm_read_frame()
150 status = cluster->GetFirst(block_entry); in webm_read_frame()
156 status = cluster->GetNext(block_entry, block_entry); in webm_read_frame()
157 if (block_entry == nullptr || block_entry->EOS()) { in webm_read_frame()
163 if (status || block_entry == nullptr) { in webm_read_frame()
[all …]
Dwebmdec.h26 const void *block_entry; member
/external/libaom/common/
Dwebmdec.cc41 webm_ctx->block_entry = NULL; in reset()
135 const mkvparser::BlockEntry *block_entry = in webm_read_frame() local
136 reinterpret_cast<const mkvparser::BlockEntry *>(webm_ctx->block_entry); in webm_read_frame()
141 if (block_entry == NULL && !block_entry_eos) { in webm_read_frame()
142 status = cluster->GetFirst(block_entry); in webm_read_frame()
144 } else if (block_entry_eos || block_entry->EOS()) { in webm_read_frame()
151 status = cluster->GetFirst(block_entry); in webm_read_frame()
157 status = cluster->GetNext(block_entry, block_entry); in webm_read_frame()
158 if (block_entry == NULL || block_entry->EOS()) { in webm_read_frame()
164 if (status || block_entry == NULL) { in webm_read_frame()
[all …]
Dwebmdec.h27 const void *block_entry; member
/external/libwebm/m2ts/
Dwebm2pes.cc234 const mkvparser::BlockEntry* block_entry = nullptr; in ConvertToFile() local
235 std::int64_t block_status = cluster->GetFirst(block_entry); in ConvertToFile()
243 while (block_entry != nullptr && block_entry->EOS() == false) { in ConvertToFile()
244 const mkvparser::Block* block = block_entry->GetBlock(); in ConvertToFile()
275 block_status = cluster->GetNext(block_entry, block_entry); in ConvertToFile()
304 const mkvparser::BlockEntry* block_entry = nullptr; in ConvertToPacketReceiver() local
305 std::int64_t block_status = cluster->GetFirst(block_entry); in ConvertToPacketReceiver()
313 while (block_entry != nullptr && block_entry->EOS() == false) { in ConvertToPacketReceiver()
314 const mkvparser::Block* block = block_entry->GetBlock(); in ConvertToPacketReceiver()
342 block_status = cluster->GetNext(block_entry, block_entry); in ConvertToPacketReceiver()
/external/libwebm/common/
Dvp9_header_parser_tests.cc83 const mkvparser::BlockEntry* block_entry; in ProcessTheFrames() local
84 long status = cluster->GetFirst(block_entry); // NOLINT in ProcessTheFrames()
87 while ((block_entry != NULL) && !block_entry->EOS()) { in ProcessTheFrames()
88 const mkvparser::Block* const block = block_entry->GetBlock(); in ProcessTheFrames()
115 status = cluster->GetNext(block_entry, block_entry); in ProcessTheFrames()
Dvp9_level_stats_tests.cc72 const mkvparser::BlockEntry* block_entry; in ProcessTheFrames() local
73 long status = cluster->GetFirst(block_entry); // NOLINT in ProcessTheFrames()
76 while ((block_entry != NULL) && !block_entry->EOS()) { in ProcessTheFrames()
77 const mkvparser::Block* const block = block_entry->GetBlock(); in ProcessTheFrames()
102 status = cluster->GetNext(block_entry, block_entry); in ProcessTheFrames()
/external/libwebm/
Dvttdemux.cc190 const mkvparser::BlockEntry* block_entry);
748 const mkvparser::BlockEntry* block_entry; in ProcessCluster() local
750 long result = c->GetFirst(block_entry); // NOLINT in ProcessCluster()
756 while (block_entry != NULL && !block_entry->EOS()) { in ProcessCluster()
757 if (!ProcessBlockEntry(m, block_entry)) in ProcessCluster()
760 result = c->GetNext(block_entry, block_entry); in ProcessCluster()
771 const mkvparser::BlockEntry* block_entry) { in ProcessBlockEntry() argument
775 const mkvparser::Block* const block = block_entry->GetBlock(); in ProcessBlockEntry()
784 if (block_entry->GetKind() != mkvparser::BlockEntry::kBlockGroup) in ProcessBlockEntry()
788 const BG* const block_group = static_cast<const BG*>(block_entry); in ProcessBlockEntry()
Dmkvmuxer_sample.cc687 const mkvparser::BlockEntry* block_entry; in main() local
689 long status = cluster->GetFirst(block_entry); in main()
696 while (block_entry != NULL && !block_entry->EOS()) { in main()
697 const mkvparser::Block* const block = block_entry->GetBlock(); in main()
751 status = cluster->GetNext(block_entry, block_entry); in main()
Dwebm_info.cc848 const mkvparser::BlockEntry* block_entry; in OutputCluster() local
849 long status = cluster.GetFirst(block_entry); in OutputCluster()
887 const mkvparser::BlockEntry* block_entry; in OutputCluster() local
888 long status = cluster.GetFirst(block_entry); in OutputCluster()
895 while (block_entry != NULL && !block_entry->EOS()) { in OutputCluster()
896 const mkvparser::Block* const block = block_entry->GetBlock(); in OutputCluster()
916 if (block_entry->GetKind() == mkvparser::BlockEntry::kBlockGroup) { in OutputCluster()
1046 if (block_entry->GetKind() == mkvparser::BlockEntry::kBlockGroup) { in OutputCluster()
1058 status = cluster.GetNext(block_entry, block_entry); in OutputCluster()
/external/mesa3d/src/compiler/nir/
Dnir_lower_io_to_temporaries.c108 set_foreach(impl->end_block->predecessors, block_entry) { in emit_output_copies_impl()
109 struct nir_block *block = (void *)block_entry->key; in emit_output_copies_impl()
/external/e2fsprogs/lib/ext2fs/
Dfileio.c35 struct block_entry { struct
39 typedef struct block_entry *block_entry_t; argument
/external/mesa3d/src/freedreno/ir3/
Dir3_nir_lower_tess.c970 set_foreach(impl->end_block->predecessors, block_entry) { in ir3_nir_lower_gs()
971 struct nir_block *block = (void *)block_entry->key; in ir3_nir_lower_gs()