Home
last modified time | relevance | path

Searched refs:sps_id (Results 1 – 7 of 7) sorted by relevance

/external/v4l2_codec2/vda/
Dh264_parser.cc250 const H264SPS* H264Parser::GetSPS(int sps_id) const { in GetSPS()
251 auto it = active_SPSes_.find(sps_id); in GetSPS()
253 DVLOG(1) << "Requested a nonexistent SPS id " << sps_id; in GetSPS()
893 H264Parser::Result H264Parser::ParseSPS(int* sps_id) { in ParseSPS() argument
898 *sps_id = -1; in ParseSPS()
1008 *sps_id = sps->seq_parameter_set_id; in ParseSPS()
1009 active_SPSes_[*sps_id] = std::move(sps); in ParseSPS()
Dh264_parser.h421 Result ParseSPS(int* sps_id);
426 const H264SPS* GetSPS(int sps_id) const;
Dh264_decoder.cc1079 bool H264Decoder::ProcessSPS(int sps_id, bool* need_new_buffers) { in ProcessSPS() argument
1080 DVLOG(4) << "Processing SPS id:" << sps_id; in ProcessSPS()
1082 const H264SPS* sps = parser_.GetSPS(sps_id); in ProcessSPS()
1389 int sps_id; in Decode() local
1394 par_res = parser_.ParseSPS(&sps_id); in Decode()
1399 if (!ProcessSPS(sps_id, &need_new_buffers)) in Decode()
Dh264_decoder.h137 bool ProcessSPS(int sps_id, bool* need_new_buffers);
/external/libhevc/decoder/
Dihevcd_parse_headers.c1445 WORD32 sps_id; in ihevcd_parse_sps() local
1475 sps_id = value; in ihevcd_parse_sps()
1476 if((sps_id >= MAX_SPS_CNT) || (sps_id < 0)) in ihevcd_parse_sps()
1481 sps_id = 0; in ihevcd_parse_sps()
1492 ps_sps->i1_sps_id = sps_id; in ihevcd_parse_sps()
1680 sps_t *ps_sps_old = (ps_codec->s_parse.ps_sps_base + sps_id); in ihevcd_parse_sps()
1968 ps_codec->i4_sps_id = sps_id; in ihevcd_parse_sps()
1975 void ihevcd_unmark_pps(codec_t *ps_codec, WORD32 sps_id) in ihevcd_unmark_pps() argument
1983 (ps_pps->i1_sps_id == sps_id)) in ihevcd_unmark_pps()
1989 void ihevcd_copy_sps(codec_t *ps_codec, WORD32 sps_id, WORD32 sps_id_ref) in ihevcd_copy_sps() argument
[all …]
Dihevcd_parse_headers.h38 void ihevcd_copy_sps(codec_t *ps_codec, WORD32 sps_id, WORD32 sps_id_ref);
Dihevcd_parse_slice_header.c224 WORD32 sps_id; in ihevcd_parse_slice_header() local
275 sps_id = ps_pps->i1_sps_id; in ihevcd_parse_slice_header()
278 ps_sps = ps_codec->s_parse.ps_sps_base + sps_id; in ihevcd_parse_slice_header()