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

  /external/libhevc/decoder/
ihevcd_parse_headers.h 39 void ihevcd_copy_pps(codec_t *ps_codec, WORD32 pps_id, WORD32 pps_id_ref);
ihevcd_parse_slice_header.c 231 WORD32 pps_id; local
251 UEV_PARSE("pic_parameter_set_id", pps_id, ps_bitstrm);
252 pps_id = CLIP3(pps_id, 0, MAX_PPS_CNT - 2);
255 ps_pps = ps_codec->s_parse.ps_pps_base + pps_id;
265 ihevcd_copy_pps(ps_codec, pps_id, ps_pps_ref->i1_pps_id);
336 ps_slice_hdr->i1_pps_id = pps_id;
345 ps_slice_hdr->i1_pps_id = pps_id;
    [all...]
ihevcd_parse_headers.c 1550 WORD32 pps_id = 0; local
1618 WORD32 pps_id; local
    [all...]
  /external/chromium_org/media/formats/mp2t/
es_parser_h264.h 65 bool is_key_frame, int pps_id);
es_parser_h264.cc 163 int pps_id; local
164 if (h264_parser_->ParsePPS(&pps_id) != H264Parser::kOk)
201 bool is_key_frame, int pps_id) {
213 const H264PPS* pps = h264_parser_->GetPPS(pps_id);
  /external/chromium_org/content/common/gpu/media/
vaapi_h264_decoder.h 132 bool ProcessPPS(int pps_id);
vaapi_h264_decoder.cc 1665 int pps_id; local
    [all...]
video_encode_accelerator_unittest.cc 411 int pps_id; local
412 ASSERT_EQ(media::H264Parser::kOk, h264_parser_.ParsePPS(&pps_id));
    [all...]
  /hardware/intel/common/libmix/videodecoder/securevideo/baytrail/
secvideoparser.h 92 uint8_t pps_id; member in struct:_slice_header_t
  /hardware/intel/common/libmix/videodecoder/securevideo/cherrytrail/
secvideoparser.h 92 uint8_t pps_id; member in struct:_slice_header_t
  /external/chromium_org/media/filters/
h264_parser.h 366 // of the parsed structure in |*pps_id|/|*sps_id|.
368 // passing the returned |*sps_id|/|*pps_id| as parameter.
373 Result ParsePPS(int* pps_id);
375 // Return a pointer to SPS/PPS with given |sps_id|/|pps_id| or NULL if not
378 const H264PPS* GetPPS(int pps_id);
h264_parser.cc 162 const H264PPS* H264Parser::GetPPS(int pps_id) {
163 return active_PPSes_[pps_id];
871 H264Parser::Result H264Parser::ParsePPS(int* pps_id) {
876 *pps_id = -1;
935 *pps_id = pps->pic_parameter_set_id;
936 delete active_PPSes_[*pps_id];
937 active_PPSes_[*pps_id] = pps.release();
    [all...]

Completed in 608 milliseconds