Searched refs:nalType (Results 1 - 9 of 9) sorted by relevance
/foundation/multimedia/av_codec/test/unittest/hcodec_test/helper/ |
H A D | start_code_detector.h | 59 uint8_t nalType; member 67 virtual bool IsPPS(uint8_t nalType) = 0; 68 virtual bool IsVCL(uint8_t nalType) = 0; 69 virtual bool IsIDR(uint8_t nalType) = 0; 70 virtual bool IsPrefixSEI(uint8_t nalType) { return false; } in IsPrefixSEI() argument 109 bool IsPPS(uint8_t nalType) override; 110 bool IsVCL(uint8_t nalType) override; 111 bool IsIDR(uint8_t nalType) override; 148 bool IsPPS(uint8_t nalType) override; 149 bool IsVCL(uint8_t nalType) overrid [all...] |
H A D | start_code_detector.cpp | 70 .nalType = GetNalType(get<1>(*it), get<2>(*it)), in SetSource() 81 if (!IsPrefixSEI(nal.nalType)) { in SaveVivid() 109 sample->s += to_string(nal.nalType); in BuildSampleList() 114 bool isPPS = IsPPS(nal.nalType); in BuildSampleList() 115 bool isVCL = IsVCL(nal.nalType); in BuildSampleList() 116 bool isIDR = IsIDR(nal.nalType); in BuildSampleList() 193 bool StartCodeDetectorH264::IsPPS(uint8_t nalType) in GetNalType() 195 return nalType == H264NalType::PPS; in GetNalType() 198 bool StartCodeDetectorH264::IsVCL(uint8_t nalType) in GetNalType() argument 200 return nalType > in GetNalType() 203 IsIDR(uint8_t nalType) GetNalType() argument 218 IsVCL(uint8_t nalType) IsVCL() argument 223 IsIDR(uint8_t nalType) IsIDR() argument 230 IsPrefixSEI(uint8_t nalType) IsPrefixSEI() argument 245 IsVCL(uint8_t nalType) global() argument 250 IsIDR(uint8_t nalType) global() argument 258 IsPrefixSEI(uint8_t nalType) global() argument [all...] |
/foundation/multimedia/av_codec/test/unittest/video_test/video_test/capbilities/data_producer/bitstream_reader/ |
H A D | bitstream_reader.h | 79 virtual bool IsXPS(uint8_t nalType) = 0; 80 virtual bool IsIDR(uint8_t nalType) = 0; 81 virtual bool IsVCL(uint8_t nalType) = 0; 83 bool IsFullVCL(uint8_t nalType, const uint8_t *nextNalTypeAddr); 89 bool IsXPS(uint8_t nalType) override; 90 bool IsIDR(uint8_t nalType) override; 91 bool IsVCL(uint8_t nalType) override; 98 bool IsXPS(uint8_t nalType) override; 99 bool IsIDR(uint8_t nalType) override; 100 bool IsVCL(uint8_t nalType) overrid [all...] |
H A D | bitstream_reader.cpp | 268 bool BitstreamReader::NalDetector::IsFullVCL(uint8_t nalType, const uint8_t *nextNalTypeAddr) in IsFullVCL() argument 271 return (IsVCL(nalType) && ( in IsFullVCL() 282 bool BitstreamReader::AVCNalDetector::IsXPS(uint8_t nalType) in IsXPS() argument 284 return (nalType == AVC_SPS) || (nalType == AVC_PPS) ? true : false; in IsXPS() 287 bool BitstreamReader::AVCNalDetector::IsIDR(uint8_t nalType) in IsIDR() argument 289 return (nalType == AVC_IDR) ? true : false; in IsIDR() 297 bool BitstreamReader::AVCNalDetector::IsVCL(uint8_t nalType) in IsVCL() argument 299 return (nalType >= AVC_NON_IDR && nalType < in IsVCL() 307 IsXPS(uint8_t nalType) IsXPS() argument 312 IsIDR(uint8_t nalType) IsIDR() argument 317 IsVCL(uint8_t nalType) IsVCL() argument [all...] |
/foundation/multimedia/av_codec/test/unittest/video_test/vcodec_framework_test/func_sample/sample/ |
H A D | avcc_reader.h | 96 virtual bool IsXPS(uint8_t nalType) = 0; 97 virtual bool IsIDR(uint8_t nalType) = 0; 98 virtual bool IsVCL(uint8_t nalType) = 0; 100 bool IsFullVCL(uint8_t nalType, const uint8_t *nextNalTypeAddr); 106 bool IsXPS(uint8_t nalType) override; 107 bool IsIDR(uint8_t nalType) override; 108 bool IsVCL(uint8_t nalType) override; 115 bool IsXPS(uint8_t nalType) override; 116 bool IsIDR(uint8_t nalType) override; 117 bool IsVCL(uint8_t nalType) overrid [all...] |
/foundation/multimedia/av_codec/services/drm_decryptor/ |
H A D | codec_drm_decrypt.cpp | 88 uint8_t &nalType, uint32_t &posIndex) const in DrmGetNalTypeAndIndex() 91 nalType = 0; in DrmGetNalTypeAndIndex() 99 nalType = data[i + DRM_ARR_SUBSCRIPT_THREE] & DRM_H264_VIDEO_NAL_TYPE_UMASK_NUM; in DrmGetNalTypeAndIndex() 100 if ((nalType == DRM_H264_VIDEO_START_NAL_TYPE) || in DrmGetNalTypeAndIndex() 101 (nalType == DRM_H264_VIDEO_END_NAL_TYPE)) { in DrmGetNalTypeAndIndex() 106 nalType = (data[i + DRM_ARR_SUBSCRIPT_THREE] >> DRM_SHIFT_LEFT_NUM) & DRM_H265_VIDEO_NAL_TYPE_UMASK_NUM; in DrmGetNalTypeAndIndex() 107 if ((nalType >= DRM_H265_VIDEO_START_NAL_TYPE) && in DrmGetNalTypeAndIndex() 108 (nalType <= DRM_H265_VIDEO_END_NAL_TYPE)) { in DrmGetNalTypeAndIndex() 113 nalType = data[i + DRM_ARR_SUBSCRIPT_THREE]; in DrmGetNalTypeAndIndex() 114 if (nalType in DrmGetNalTypeAndIndex() 87 DrmGetNalTypeAndIndex(const uint8_t *data, uint32_t dataSize, uint8_t &nalType, uint32_t &posIndex) const DrmGetNalTypeAndIndex() argument 146 uint8_t nalType = 0; DrmGetFinalNalTypeAndIndex() local 202 uint8_t nalType; DrmModifyCencInfo() local 306 uint8_t nalType = (data[i + DRM_LEGACY_LEN] >> DRM_SHIFT_LEFT_NUM) & DRM_H265_VIDEO_NAL_TYPE_UMASK_NUM; DrmFindHevcCeiNalUnit() local 338 uint8_t nalType = data[i + DRM_LEGACY_LEN] & DRM_H264_VIDEO_NAL_TYPE_UMASK_NUM; DrmFindH264CeiNalUnit() local [all...] |
H A D | codec_drm_decrypt.h | 59 int32_t DrmGetNalTypeAndIndex(const uint8_t *data, uint32_t dataSize, uint8_t &nalType, uint32_t &posIndex) const;
|
/foundation/multimedia/av_codec/test/unittest/video_test/vcodec_server_test/mock/ |
H A D | codec_drm_decrypt_mock.cpp | 31 int32_t CodecDrmDecrypt::DrmGetNalTypeAndIndex(const uint8_t *data, uint32_t dataSize, uint8_t &nalType, in DrmGetNalTypeAndIndex() argument 36 (void)nalType; in DrmGetNalTypeAndIndex()
|
/foundation/CastEngine/castengine_wifi_display/services/protocol/rtp/src/ |
H A D | rtp_codec_h264.cpp | 30 unsigned nalType : 5;
|
Completed in 6 milliseconds