Searched defs:h264type (Results 1 - 2 of 2) sorted by relevance

/frameworks/av/media/libstagefright/
H A DACodec.cpp1947 OMX_VIDEO_PARAM_AVCTYPE h264type; local
1948 InitOMXParams(&h264type);
1949 h264type.nPortIndex = kPortIndexOutput;
1952 mNode, OMX_IndexParamVideoAvc, &h264type, sizeof(h264type));
1958 h264type.nAllowedPictureTypes =
1974 h264type.eProfile = static_cast<OMX_VIDEO_AVCPROFILETYPE>(profile);
1975 h264type.eLevel = static_cast<OMX_VIDEO_AVCLEVELTYPE>(level);
1979 if (h264type.eProfile != OMX_VIDEO_AVCProfileBaseline) {
1981 h264type
[all...]
H A DOMXCodec.cpp1114 OMX_VIDEO_PARAM_AVCTYPE h264type; local
1115 InitOMXParams(&h264type);
1116 h264type.nPortIndex = kPortIndexOutput;
1119 mNode, OMX_IndexParamVideoAvc, &h264type, sizeof(h264type));
1122 h264type.nAllowedPictureTypes =
1127 defaultProfileLevel.mProfile = h264type.eProfile;
1128 defaultProfileLevel.mLevel = h264type.eLevel;
1131 h264type.eProfile = static_cast<OMX_VIDEO_AVCPROFILETYPE>(profileLevel.mProfile);
1132 h264type
[all...]

Completed in 27 milliseconds