Searched refs:mWidth (Results 1 - 25 of 171) sorted by path

1234567

/frameworks/av/cmds/screenrecord/
H A DEglWindow.cpp48 surface->query(NATIVE_WINDOW_WIDTH, &mWidth);
74 mWidth = width;
H A DEglWindow.h39 mWidth(0),
51 int getWidth() const { return mWidth; }
81 int mWidth; member in class:android::EglWindow
/frameworks/av/cmds/stagefright/
H A Drecord.cpp46 : mWidth(width),
60 meta->setInt32(kKeyWidth, mWidth);
108 int mWidth, mHeight;
H A Drecordvideo.cpp56 : mWidth(width),
68 meta->setInt32(kKeyWidth, mWidth);
123 int mWidth, mHeight; member in class:DummySource
H A Dstagefright.cpp855 frame->mWidth, frame->mHeight), 0);
/frameworks/av/include/media/stagefright/
H A DColorConverter.h58 size_t mWidth, mHeight; member in struct:android::ColorConverter::BitmapParams
H A DJPEGSource.h46 int32_t mWidth, mHeight; member in struct:android::JPEGSource
H A DSurfaceMediaSource.h163 int mWidth; member in class:android::SurfaceMediaSource
H A DYUVImage.h70 int32_t width() const {return mWidth;}
120 int32_t mWidth; member in class:android::YUVImage
/frameworks/av/include/private/media/
H A DVideoFrame.h33 VideoFrame(): mWidth(0), mHeight(0), mDisplayWidth(0), mDisplayHeight(0), mSize(0), mData(0),
37 mWidth = copy.mWidth;
61 uint32_t mWidth; member in class:android::VideoFrame
/frameworks/av/media/libmediaplayerservice/
H A DMetadataRetrieverClient.cpp209 frameCopy->mWidth = frame->mWidth;
/frameworks/av/media/libstagefright/
H A DACodec.cpp3281 image.mWidth = params.nFrameWidth;
3488 mComponentName.c_str(), img->mWidth, img->mHeight,
H A DJPEGSource.cpp59 mWidth(0),
103 meta->setInt32(kKeyWidth, mWidth);
142 mWidth = 0;
186 return (mWidth > 0 && mHeight > 0) ? OK : UNKNOWN_ERROR;
213 mWidth = width;
H A DStagefrightMetadataRetriever.cpp274 frame->mWidth = crop_right - crop_left + 1;
276 frame->mDisplayWidth = frame->mWidth;
278 frame->mSize = frame->mWidth * frame->mHeight * 2;
302 frame->mWidth,
304 0, 0, frame->mWidth - 1, frame->mHeight - 1);
H A DSurfaceMediaSource.cpp41 mWidth(bufferWidth),
238 meta->setInt32(kKeyWidth, mWidth);
244 meta->setInt32(kKeyStride, mWidth);
/frameworks/av/media/libstagefright/codecs/avc/enc/
H A DSoftAVCEncoder.cpp248 (uint8_t *) malloc((mWidth * mHeight * 3 ) >> 1);
253 if (mWidth % 16 != 0 || mHeight % 16 != 0) {
255 mWidth, mHeight);
259 mEncParams->width = mWidth;
265 int32_t nMacroBlocks = divUp(mWidth, 16) * divUp(mHeight, 16);
560 videoInput.pitch = align(mWidth, 16);
573 mInputFrameData, (mWidth * mHeight * 3) >> 1,
575 mWidth, mHeight);
587 inputData, mInputFrameData, mWidth, mHeight);
/frameworks/av/media/libstagefright/codecs/hevcdec/
H A DSoftHEVC.cpp76 mNewWidth(mWidth),
472 const uint32_t oldWidth = mWidth;
475 if (mWidth != oldWidth || mHeight != oldHeight) {
722 outHeader->nFilledLen = (mWidth * mHeight * 3) / 2;
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/
H A DSoftMPEG4.cpp268 outHeader->nFilledLen = (mWidth * mHeight * 3) / 2;
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/
H A DSoftMPEG4Encoder.cpp116 mEncParams->encWidth[0] = mWidth;
141 (uint8_t *) malloc((mWidth * mHeight * 3 ) >> 1);
146 if (mWidth % 16 != 0 || mHeight % 16 != 0) {
148 mWidth, mHeight);
425 mInputFrameData, (mWidth * mHeight * 3) >> 1,
427 mWidth, mHeight);
438 inputData, mInputFrameData, mWidth, mHeight);
449 vin.pitch = align(mWidth, 16);
/frameworks/av/media/libstagefright/codecs/on2/enc/
H A DSoftVPXEncoder.cpp125 mCodecConfiguration->g_w = mWidth;
318 mConversionBuffer = (uint8_t *)malloc(mWidth * mHeight * 3 / 2);
683 mConversionBuffer, mWidth * mHeight * 3 / 2,
685 mWidth, mHeight);
693 source, mConversionBuffer, mWidth, mHeight);
698 vpx_img_wrap(&raw_frame, VPX_IMG_FMT_I420, mWidth, mHeight,
/frameworks/av/media/libstagefright/codecs/on2/h264dec/
H A DSoftAVC.cpp240 uint32_t pictureSize = mWidth * mHeight * 3 / 2;
253 outHeader->nFilledLen = mWidth * mHeight * 3 / 2;
257 const uint8_t *srcU = srcY + mWidth * mHeight;
258 const uint8_t *srcV = srcU + mWidth * mHeight / 4;
259 size_t srcYStride = mWidth;
260 size_t srcUStride = mWidth / 2;
/frameworks/av/media/libstagefright/colorconversion/
H A DColorConverter.cpp63 mWidth(width),
148 + dst.mCropTop * dst.mWidth + dst.mCropLeft;
151 + (src.mCropTop * dst.mWidth + src.mCropLeft) * 2;
192 src_ptr += src.mWidth * 2;
193 dst_ptr += dst.mWidth;
210 + dst.mCropTop * dst.mWidth + dst.mCropLeft;
213 (const uint8_t *)src.mBits + src.mCropTop * src.mWidth + src.mCropLeft;
216 (const uint8_t *)src_y + src.mWidth * src.mHeight
217 + src.mCropTop * (src.mWidth / 2) + src.mCropLeft / 2;
220 src_u + (src.mWidth /
[all...]
H A DSoftwareRenderer.cpp46 mWidth(0),
80 mWidth == widthNew &&
91 mWidth = widthNew;
207 mWidth, mHeight,
214 const uint8_t *src_u = (const uint8_t *)data + mWidth * mHeight;
215 const uint8_t *src_v = src_u + (mWidth / 2 * mHeight / 2);
227 src_y += mWidth;
235 src_u += mWidth / 2;
236 src_v += mWidth / 2;
246 (const uint8_t *)data + mWidth * (mHeigh
[all...]
/frameworks/av/media/libstagefright/include/
H A DSoftVideoDecoderOMXComponent.h93 uint32_t mWidth, mHeight; member in struct:android::SoftVideoDecoderOMXComponent
H A DSoftVideoEncoderOMXComponent.h77 int32_t mWidth; // width of the input frames member in struct:android::SoftVideoEncoderOMXComponent

Completed in 8456 milliseconds

1234567