Home | History | Annotate | Download | only in libstagefright

Lines Matching refs:video_def

815     OMX_VIDEO_PORTDEFINITIONTYPE *video_def = &def.format.video;
834 video_def->nFrameWidth = width;
835 video_def->nFrameHeight = height;
836 video_def->nStride = stride;
837 video_def->nSliceHeight = sliceHeight;
838 video_def->xFramerate = (frameRate << 16); // Q16 format
839 video_def->eCompressionFormat = OMX_VIDEO_CodingUnused;
840 video_def->eColorFormat = colorFormat;
859 video_def->nFrameWidth = width;
860 video_def->nFrameHeight = height;
861 video_def->xFramerate = 0; // No need for output port
862 video_def->nBitrate = bitRate; // Q16 format
863 video_def->eCompressionFormat = compressionFormat;
864 video_def->eColorFormat = OMX_COLOR_FormatUnused;
1261 OMX_VIDEO_PORTDEFINITIONTYPE *video_def = &def.format.video;
1278 video_def->nFrameWidth = width;
1279 video_def->nFrameHeight = height;
1281 video_def->eCompressionFormat = compressionFormat;
1282 video_def->eColorFormat = OMX_COLOR_FormatUnused;
1306 video_def->nFrameWidth = width;
1307 video_def->nFrameHeight = height;
4435 OMX_VIDEO_PORTDEFINITIONTYPE *video_def = &def.format.video;
4437 if (video_def->eCompressionFormat == OMX_VIDEO_CodingUnused) {
4440 } else if (video_def->eCompressionFormat == OMX_VIDEO_CodingMPEG4) {
4443 } else if (video_def->eCompressionFormat == OMX_VIDEO_CodingH263) {
4446 } else if (video_def->eCompressionFormat == OMX_VIDEO_CodingAVC) {
4453 mOutputFormat->setInt32(kKeyWidth, video_def->nFrameWidth);
4454 mOutputFormat->setInt32(kKeyHeight, video_def->nFrameHeight);
4455 mOutputFormat->setInt32(kKeyColorFormat, video_def->eColorFormat);
4468 video_def->nFrameWidth, video_def->nFrameHeight);
4475 CHECK_LE(rect.nLeft + rect.nWidth - 1, video_def->nFrameWidth);
4476 CHECK_LE(rect.nTop + rect.nHeight - 1, video_def->nFrameHeight);
4492 video_def->nFrameWidth - 1,
4493 video_def->nFrameHeight - 1);