Home | History | Annotate | Download | only in enc

Lines Matching refs:meta

171         const sp<MetaData>& meta)
173 mMeta(meta),
193 mInitCheck = initCheck(meta);
206 status_t AVCEncoder::initCheck(const sp<MetaData>& meta) {
208 CHECK(meta->findInt32(kKeyWidth, &mVideoWidth));
209 CHECK(meta->findInt32(kKeyHeight, &mVideoHeight));
210 CHECK(meta->findInt32(kKeyFrameRate, &mVideoFrameRate));
211 CHECK(meta->findInt32(kKeyBitRate, &mVideoBitRate));
214 CHECK(meta->findInt32(kKeyColorFormat, &mVideoColorFormat));
289 CHECK(meta->findInt32(kKeyIFramesInterval, &iFramesIntervalSec));
307 if (meta->findInt32(kKeyVideoProfile, &profile)) {
313 if (meta->findInt32(kKeyVideoLevel, &level)) {