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

  /external/webrtc/webrtc/modules/video_coding/codecs/h264/
h264_video_toolbox_nalu_unittest.cc 25 const uint8_t* nalu = nullptr; local
28 EXPECT_FALSE(reader.ReadNalu(&nalu, &nalu_length));
29 EXPECT_EQ(nullptr, nalu);
36 const uint8_t* nalu = nullptr; local
39 EXPECT_TRUE(reader.ReadNalu(&nalu, &nalu_length));
40 EXPECT_EQ(annex_b_test_data + 4, nalu);
43 EXPECT_FALSE(reader.ReadNalu(&nalu, &nalu_length));
44 EXPECT_EQ(nullptr, nalu);
56 const uint8_t* nalu = nullptr; local
59 EXPECT_FALSE(reader.ReadNalu(&nalu, &nalu_length))
74 const uint8_t* nalu = nullptr; local
    [all...]
  /hardware/intel/common/omx-components/videocodec/securevideo/moorefield/
LogDumpHelper.h 80 static void DumpNaluDataBuffer(uint32_t nalu, const uint8_t* start, uint32_t size)
84 LOGV("NALU-dump: error: invalid parameters to %s", __FUNCTION__) ;
93 LOGV("NALU-dump(nalu %u): data: %s" DUMP_EOL, nalu, str) ;
133 LOGV("NALU-dump: num NALUs = %u\n", numNALUs) ;
137 LOGE("NALU-dump: ERROR, num NALUs is too big (%u)" DUMP_EOL, numNALUs) ;
140 for (uint32_t nalu = 0; nalu < numNALUs; ++nalu)
    [all...]
  /external/v4l2_codec2/vda/
h264_parser.cc 250 // Find the start code of next NALU.
261 // Move the stream to the beginning of the NALU (pointing at the start code).
272 // Find the start code of next NALU;
275 // if next start code is not found, it is still a valid NALU since there
277 // belong to the current NALU.
378 H264Parser::Result H264Parser::AdvanceToNextNALU(H264NALU* nalu) {
382 DVLOG(4) << "Could not find next NALU, bytes left in stream: "
387 nalu->data = stream_ + start_code_size;
388 nalu->size = nalu_size_with_start_code - start_code_size;
389 DVLOG(4) << "NALU found: size=" << nalu_size_with_start_code
    [all...]
h264_parser.h 61 off_t size; // From after start code to start code of next NALU (or EOS).
355 // Find offset from start of data to next NALU start code
393 // Read the stream to find the next NALU, identify it and return
394 // that information in |*nalu|. This advances the stream to the beginning
395 // of this NALU, but not past it, so subsequent calls to NALU-specific
396 // parsing functions (ParseSPS, etc.) will parse this NALU.
397 // If the caller wishes to skip the current NALU, it can call this function
398 // again, instead of any NALU-type specific parse functions below.
399 Result AdvanceToNextNALU(H264NALU* nalu);
    [all...]
  /external/mesa3d/src/compiler/nir/
nir_clone.c 331 nir_alu_instr *nalu = nir_alu_instr_create(state->ns, alu->op); local
332 nalu->exact = alu->exact;
334 __clone_dst(state, &nalu->instr, &nalu->dest.dest, &alu->dest.dest);
335 nalu->dest.saturate = alu->dest.saturate;
336 nalu->dest.write_mask = alu->dest.write_mask;
339 __clone_src(state, &nalu->instr, &nalu->src[i].src, &alu->src[i].src);
340 nalu->src[i].negate = alu->src[i].negate;
341 nalu->src[i].abs = alu->src[i].abs
    [all...]
  /external/mesa3d/src/gallium/drivers/r600/
r600_asm.c 1179 struct r600_bytecode_alu *nalu = r600_bytecode_alu(); local
1183 if (!nalu)
1185 memcpy(nalu, alu, sizeof(struct r600_bytecode_alu));
1210 free(nalu);
1219 if (nalu->src[i].kc_bank && nalu->src[i].kc_rel)
1225 if (nalu->src[i].rel && !bc->ar_loaded)
1228 if (nalu->dst.rel && !bc->ar_loaded)
1233 if ((r = r600_bytecode_alloc_kcache_lines(bc, nalu, type))) {
1234 free(nalu);
    [all...]
  /hardware/qcom/media/msm8974/mm-video-legacy/vidc/vdec/inc/
h264_utils.h 115 //std::vector<uint8> nalu;
116 uint32 nalu; member in struct:H264ParamNalu
147 } NALU;
160 ** This class is used to convert an H.264 NALU (network abstraction layer
201 OMX_OUT NALU *nal_unit);
208 NALU m_prv_nalu;
  /hardware/qcom/media/msm8974/mm-video-v4l2/vidc/vdec/inc/
h264_utils.h 120 //std::vector<uint8> nalu;
121 uint32 nalu; member in struct:H264ParamNalu
152 } NALU;
165 ** This class is used to convert an H.264 NALU (network abstraction layer
206 OMX_OUT NALU *nal_unit);
213 NALU m_prv_nalu;
  /hardware/qcom/media/msm8996/mm-video-v4l2/vidc/vdec/inc/
h264_utils.h 120 //std::vector<uint8> nalu;
121 uint32 nalu; member in struct:H264ParamNalu
152 } NALU;
165 ** This class is used to convert an H.264 NALU (network abstraction layer
206 OMX_OUT NALU *nal_unit);
213 NALU m_prv_nalu;
  /hardware/qcom/media/msm8998/mm-video-v4l2/vidc/vdec/inc/
h264_utils.h 120 //std::vector<uint8> nalu;
121 uint32 nalu; member in struct:H264ParamNalu
152 } NALU;
165 ** This class is used to convert an H.264 NALU (network abstraction layer
206 OMX_OUT NALU *nal_unit);
213 NALU m_prv_nalu;

Completed in 484 milliseconds