OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FTYPE_I
(Results
1 - 5
of
5
) sorted by null
/hardware/intel/common/libmix/videoencoder/
VideoEncoderH263.cpp
108
h263PictureParams.picture_type = (task->type ==
FTYPE_I
) ? VAEncPictureTypeIntra : VAEncPictureTypePredictive;
162
sliceParams->slice_flags.bits.is_intra = (task->type ==
FTYPE_I
)?1:0;
VideoEncoderMP4.cpp
197
mpeg4_pic_param.picture_type = (task->type ==
FTYPE_I
) ? VAEncPictureTypeIntra : VAEncPictureTypePredictive;
241
sliceParams.slice_flags.bits.is_intra = (task->type ==
FTYPE_I
)?1:0;
VideoEncoderAVC.cpp
265
frametype =
FTYPE_I
;
268
frametype =
FTYPE_I
;
273
frametype =
FTYPE_I
;
285
if (frametype == FTYPE_IDR || frametype ==
FTYPE_I
)
761
if (mComParams.rcParams.enableIntraFrameQPControl && (task->type == FTYPE_IDR || task->type ==
FTYPE_I
))
[
all
...]
VideoEncoderBase.cpp
392
case
FTYPE_I
:
[
all
...]
VideoEncoderDef.h
120
FTYPE_I
= 1, // General I-frame type
Completed in 1808 milliseconds