HomeSort by relevance Sort by last modified time
    Searched defs:vin (Results 1 - 6 of 6) sorted by null

  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/
SoftMPEG4Encoder.cpp 469 VideoEncFrameIO vin, vout; local
470 memset(&vin, 0, sizeof(vin));
472 vin.height = align(mHeight, 16);
473 vin.pitch = align(mWidth, 16);
474 vin.timestamp = (inHeader->nTimeStamp + 500) / 1000; // in ms
475 vin.yChan = (uint8_t *)inputData;
476 vin.uChan = vin.yChan + vin.height * vin.pitch
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/test/
m4v_h263_enc_test.cpp 211 VideoEncFrameIO vin, vout; local
212 memset(&vin, 0, sizeof(vin));
214 vin.height = height; // height is multiple of 16.
215 vin.pitch = width; // width is multiple of 16.
216 vin.timestamp = (numFramesEncoded * 1000) / frameRate; // in ms.
217 vin.yChan = inputBuf;
218 vin.uChan = vin.yChan + vin.height * vin.pitch
    [all...]
  /hardware/intel/common/libmix/videoencoder/
PVSoftMPEG4Encoder.cpp 476 VideoEncFrameIO vin, vout; local
477 memset(&vin, 0, sizeof(vin));
479 vin.height = ((mVideoHeight + 15) >> 4) << 4;
480 vin.pitch = ((mVideoWidth + 15) >> 4) << 4;
481 vin.timestamp = (outBuffer->timeStamp + 500) / 1000; // in ms
482 vin.yChan = mInputFrameData;
483 vin.uChan = vin.yChan + vin.height * vin.pitch
    [all...]
  /hardware/google/av/media/codecs/mpeg4_h263/
C2SoftMpeg4Enc.cpp 469 VideoEncFrameIO vin, vout; local
470 memset(&vin, 0, sizeof(vin));
472 vin.yChan = yPlane;
473 vin.uChan = uPlane;
474 vin.vChan = vPlane;
475 vin.timestamp = (inputTimeStamp + 500) / 1000; // in ms
476 vin.height = align(height, 16);
477 vin.pitch = align(width, 16);
483 if (!PVEncodeVideoFrame(mHandle, &vin, &vout, &modTimeMs, outPtr, &outputSize, &nLayer) |
    [all...]
  /external/mesa3d/src/mesa/tnl/
t_vertex_generic.c 1018 const GLubyte *vin = vtx->vertex_buf + ein * vtx->vertex_size; local
1048 a[j].extract( &a[j], fin, vin + a[j].vertoffset );
  /external/speex/libspeex/
mdf.c 205 spx_word16_t vin = in[i*stride]; local
206 spx_word32_t vout = mem[0] + SHL32(EXTEND32(vin),15);
208 mem[0] = mem[1] + SHL32(SHL32(-EXTEND32(vin),15) + MULT16_32_Q15(radius,vout),1);
210 mem[0] = mem[1] + 2*(-vin + radius*vout);
212 mem[1] = SHL32(EXTEND32(vin),15) - MULT16_32_Q15(den2,vout);
    [all...]

Completed in 311 milliseconds