Searched refs:pps_id (Results 1 – 10 of 10) sorted by relevance
/external/chromium_org/media/formats/mp2t/ |
D | es_parser_h264.cc | 163 int pps_id; in ParseFromEsQueue() local 164 if (h264_parser_->ParsePPS(&pps_id) != H264Parser::kOk) in ParseFromEsQueue() 201 bool is_key_frame, int pps_id) { in EmitFrame() argument 213 const H264PPS* pps = h264_parser_->GetPPS(pps_id); in EmitFrame()
|
D | es_parser_h264.h | 65 bool is_key_frame, int pps_id);
|
/external/libhevc/decoder/ |
D | ihevcd_parse_slice_header.c | 231 WORD32 pps_id; in ihevcd_parse_slice_header() local 251 UEV_PARSE("pic_parameter_set_id", pps_id, ps_bitstrm); in ihevcd_parse_slice_header() 252 pps_id = CLIP3(pps_id, 0, MAX_PPS_CNT - 2); in ihevcd_parse_slice_header() 255 ps_pps = ps_codec->s_parse.ps_pps_base + pps_id; in ihevcd_parse_slice_header() 265 ihevcd_copy_pps(ps_codec, pps_id, ps_pps_ref->i1_pps_id); in ihevcd_parse_slice_header() 336 ps_slice_hdr->i1_pps_id = pps_id; in ihevcd_parse_slice_header() 345 ps_slice_hdr->i1_pps_id = pps_id; in ihevcd_parse_slice_header()
|
D | ihevcd_parse_headers.h | 39 void ihevcd_copy_pps(codec_t *ps_codec, WORD32 pps_id, WORD32 pps_id_ref);
|
D | ihevcd_parse_headers.c | 1556 WORD32 pps_id = 0; in ihevcd_unmark_pps() local 1559 for(pps_id = 0; pps_id < MAX_PPS_CNT - 1; pps_id++, ps_pps++) in ihevcd_unmark_pps() 1624 WORD32 pps_id; in ihevcd_parse_pps() local 1636 pps_id = value; in ihevcd_parse_pps() 1637 if((pps_id >= MAX_PPS_CNT) || (pps_id < 0)) in ihevcd_parse_pps() 1642 pps_id = 0; in ihevcd_parse_pps() 1648 ps_pps->i1_pps_id = pps_id; in ihevcd_parse_pps() 1914 void ihevcd_copy_pps(codec_t *ps_codec, WORD32 pps_id, WORD32 pps_id_ref) in ihevcd_copy_pps() argument 1927 ps_pps = ps_codec->ps_pps_base + pps_id; in ihevcd_copy_pps()
|
/external/chromium_org/media/filters/ |
D | h264_parser.cc | 162 const H264PPS* H264Parser::GetPPS(int pps_id) { in GetPPS() argument 163 return active_PPSes_[pps_id]; in GetPPS() 871 H264Parser::Result H264Parser::ParsePPS(int* pps_id) { in ParsePPS() argument 876 *pps_id = -1; in ParsePPS() 935 *pps_id = pps->pic_parameter_set_id; in ParsePPS() 936 delete active_PPSes_[*pps_id]; in ParsePPS() 937 active_PPSes_[*pps_id] = pps.release(); in ParsePPS()
|
D | h264_parser.h | 373 Result ParsePPS(int* pps_id); 378 const H264PPS* GetPPS(int pps_id);
|
/external/chromium_org/content/common/gpu/media/ |
D | vaapi_h264_decoder.h | 132 bool ProcessPPS(int pps_id);
|
D | vaapi_h264_decoder.cc | 1510 bool VaapiH264Decoder::ProcessPPS(int pps_id) { in ProcessPPS() argument 1511 const media::H264PPS* pps = parser_.GetPPS(pps_id); in ProcessPPS() 1665 int pps_id; in Decode() local 1670 par_res = parser_.ParsePPS(&pps_id); in Decode() 1674 if (!ProcessPPS(pps_id)) in Decode()
|
D | video_encode_accelerator_unittest.cc | 411 int pps_id; in ProcessStreamBuffer() local 412 ASSERT_EQ(media::H264Parser::kOk, h264_parser_.ParsePPS(&pps_id)); in ProcessStreamBuffer()
|