/external/chromium_org/content/common/gpu/media/ |
h264_parser_unittest.cc | 36 H264NALU nalu; local 37 H264Parser::Result res = parser.AdvanceToNextNALU(&nalu); 49 switch (nalu.nal_unit_type) { 52 ASSERT_EQ(parser.ParseSliceHeader(nalu, &shdr), H264Parser::kOk); 68 // Skip unsupported NALU. 69 DVLOG(4) << "Skipping unsupported NALU";
|
h264_parser.cc | 141 // Find offset from start of data to next NALU start code 172 // Find the next NALU in stream, returning its start offset without the start 173 // code (i.e. at the beginning of NALU data). 175 // before the start code of the next NALU (or end of stream). 180 // Find start code of the next NALU. 192 // Find the start code of next NALU; if successful, NALU size is the number 194 // if next start code is not found, it is still a valid NALU if there 198 // end of stream (no next NALU), but still valid NALU if any bytes lef [all...] |
h264_parser.h | 40 off_t size; // From after start code to start code of next NALU (or EOS). 262 // Read the stream to find the next NALU, identify it and return 263 // that information in |*nalu|. This advances the stream to the beginning 264 // of this NALU, but not past it, so subsequent calls to NALU-specific 265 // parsing functions (ParseSPS, etc.) will parse this NALU. 266 // If the caller wishes to skip the current NALU, it can call this function 267 // again, instead of any NALU-type specific parse functions below. 268 Result AdvanceToNextNALU(H264NALU* nalu); 270 // NALU-specific parsing functions [all...] |
vaapi_h264_decoder.cc | 1522 H264NALU nalu; local [all...] |
exynos_video_decode_accelerator.cc | 769 content::H264NALU nalu; local 777 result = decoder_h264_parser_->AdvanceToNextNALU(&nalu); 786 switch (nalu.nal_unit_type) { 789 if (nalu.size < 1) 796 if (nalu.data[1] >= 0x80) { 825 *endpos = (nalu.data + nalu.size) - data; [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/ |
r600_asm.c | 1433 struct r600_bytecode_alu *nalu = r600_bytecode_alu(); local [all...] |
/external/mesa3d/src/gallium/drivers/r600/ |
r600_asm.c | 1433 struct r600_bytecode_alu *nalu = r600_bytecode_alu(); local [all...] |
/hardware/qcom/media/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/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;
|