OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:sps_id
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/content/common/gpu/media/
h264_parser.h
278
// of the parsed structure in |*pps_id|/|*
sps_id
|.
280
// passing the returned |*
sps_id
|/|*pps_id| as parameter.
284
Result ParseSPS(int*
sps_id
);
287
// Return a pointer to SPS/PPS with given |
sps_id
|/|pps_id| or NULL if not
289
const H264SPS* GetSPS(int
sps_id
);
vaapi_h264_decoder.h
131
bool ProcessSPS(int
sps_id
, bool* need_new_buffers);
h264_parser.cc
133
const H264SPS* H264Parser::GetSPS(int
sps_id
) {
134
return active_SPSes_[
sps_id
];
570
H264Parser::Result H264Parser::ParseSPS(int*
sps_id
) {
575
*
sps_id
= -1;
677
*
sps_id
= sps->seq_parameter_set_id;
678
delete active_SPSes_[*
sps_id
];
679
active_SPSes_[*
sps_id
] = sps.release();
[
all
...]
vaapi_h264_decoder.cc
1587
int
sps_id
;
local
[
all
...]
Completed in 31 milliseconds