Home | History | Annotate | Download | only in videoencoder

Lines Matching refs:resolution

70         // mVideoParamsAVC.sliceNum.iSliceNum = (mComParams.resolution.height + 15) / 16;
940 LOG_W("No such level can support that resolution");
986 avcSeqParams.picture_width_in_mbs = (mComParams.resolution.width + 15) / 16;
987 avcSeqParams.picture_height_in_mbs = (mComParams.resolution.height + 15) / 16;
1023 if (mComParams.resolution.width & 0xf) {
1025 uint32_t AWidth = (mComParams.resolution.width + 0xf) & (~0xf);
1026 avcSeqParams.frame_crop_right_offset = ( AWidth - mComParams.resolution.width ) / 2;
1029 if (mComParams.resolution.height & 0xf) {
1031 uint32_t AHeight = (mComParams.resolution.height + 0xf) & (~0xf);
1032 avcSeqParams.frame_crop_bottom_offset = ( AHeight - mComParams.resolution.height ) / 2;
1273 maxSliceNum = (mComParams.resolution.height + 15) / 16;
1324 currentSlice->macroblock_address = startRowInMB * ((mComParams.resolution.width + 0xf) & ~0xf) / 16;
1326 currentSlice->num_macroblocks = actualSliceHeightInMB * ((mComParams.resolution.width + 0xf) & ~0xf) / 16;