Searched defs:frameSize (Results 1 - 24 of 24) sorted by relevance

/external/webkit/Source/WebKit/chromium/src/
H A DWebImageCG.cpp64 const IntSize frameSize = source.frameSizeAtIndex(i); local
65 if (WebSize(frameSize) == desiredSize) {
69 const int frameArea = frameSize.width() * frameSize.height();
H A DWebImageSkia.cpp63 const IntSize frameSize = source.frameSizeAtIndex(i); local
64 if (WebSize(frameSize) == desiredSize) {
69 const int frameArea = frameSize.width() * frameSize.height();
/external/aac/libSBRdec/src/
H A Dpsdec_hybrid.h118 SCHAR frameSize; member in struct:__anon218
160 SCHAR frameSize,
H A Dpsdec_hybrid.cpp108 SCHAR frameSize, /*!< Framesize (in Qmf s�bband samples). */
122 hs->frameSize = frameSize;
107 InitHybridFilterBank( HANDLE_HYBRID hs, SCHAR frameSize, SCHAR noBands, const UCHAR *pResolution ) argument
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
H A DAC3TrackImpl.java32 int frameSize; field in class:AC3TrackImpl
175 if (frameSize == 0) {
250 frameSize = 2 * bitRateAndFrameSizeTable[frmsizecode][flag][fscod][1];
267 byte[] data = new byte[frameSize];
H A DEC3TrackImpl.java31 int frameSize; field in class:EC3TrackImpl
66 long skipped = inputStream.skip(bsi.frameSize);
67 assert skipped == bsi.frameSize;
109 frameSize += bsi.frameSize;
188 entry.frameSize = 2 * (frmsiz + 1);
218 entry.frameSize *= (6 / numberOfBlocksPerSyncFrame);
387 entry.bitrate = (int) (((double) entry.samplerate) / 1536.0 * entry.frameSize * 8);
393 int read = frameSize;
395 while (frameSize
408 public int frameSize; field in class:EC3TrackImpl.BitStreamInfo
[all...]
/external/srec/srec/include/
H A Dfpi_tgt.h51 #define NEXT_FRAME_POINTER(PKT,X) (((X) + (PKT)->frameSize) & (PKT)->stackMask)
52 #define PREV_FRAME_POINTER(PKT,X) (((X) - (PKT)->frameSize) & (PKT)->stackMask)
54 #define POINTER_GAP(PKT, LEAD, LAG) ((((LEAD) - (LAG)) & (PKT)->stackMask)/(PKT)->frameSize)
57 #define NEXT_FRAME_POINTER(PKT,X) ((X) >= (PKT)->lastFrameInStack ? (PKT)->frameStack : (X) + (PKT)->frameSize)
58 #define PREV_FRAME_POINTER(PKT,X) ((X) <= (PKT)->frameStack ? (PKT)->lastFrameInStack : (X) - (PKT)->frameSize)
61 #define POINTER_GAP(PKT, LEAD, LAG) ((LEAD) >= (LAG) ? ((LEAD) - (LAG))/(PKT)->frameSize : ((PKT)->featuresInStack + (LEAD) - (LAG))/(PKT)->frameSize)
82 int frameSize; /* How many data items per frame? */ member in struct:__anon12999
/external/aac/libSBRenc/src/
H A Dps_main.cpp552 const INT frameSize = hParametricStereo->noQmfSlots; local
576 for (col=0; col<frameSize-HYBRID_READ_OFFSET; col++) {
587 for (col=frameSize-HYBRID_READ_OFFSET; col<frameSize; col++) {
H A Dps_main.h158 INT frameSize; member in struct:T_PSENC_CONFIG
H A Dsbr.h141 int frameSize; /* SBR framelength. */ member in struct:SBR_ENCODER
H A Dtran_det.cpp639 INT frameSize,
668 framedur_fix = fDivNorm(frameSize, sampleFreq);
638 FDKsbrEnc_InitSbrTransientDetector(HANDLE_SBR_TRANSIENT_DETECTOR h_sbrTransientDetector, INT frameSize, INT sampleFreq, sbrConfigurationPtr params, int tran_fc, int no_cols, int no_rows, int YBufferWriteOffset, int YBufferSzShift, int frameShift, int tran_off) argument
H A Dmh_det.cpp1233 INT frameSize,
1247 switch(frameSize){
1230 FDKsbrEnc_InitSbrMissingHarmonicsDetector( HANDLE_SBR_MISSING_HARMONICS_DETECTOR hSbrMHDet, INT sampleFreq, INT frameSize, INT nSfb, INT qmfNoChannels, INT totNoEst, INT move, INT noEstPerFrame, UINT sbrSyntaxFlags ) argument
H A Dps_encode.cpp844 const INT frameSize,
866 envBorder[env] = fMultI(GetInvInt(nEnvelopes),frameSize*env);
838 FDKsbrEnc_PSEncode( HANDLE_PS_ENCODE hPsEncode, HANDLE_PS_OUT hPsOut, UCHAR *dynBandScale, UINT maxEnvelopes, FIXP_DBL *hybridData[HYBRID_FRAMESIZE][MAX_PS_CHANNELS][2], const INT frameSize, const INT sendHeader ) argument
/external/speex/libspeex/
H A Dmodes.h118 int frameSize; /**< Size of frames used for encoding */ member in struct:SpeexNBMode
137 int frameSize; /**< Size of frames used for encoding */ member in struct:SpeexSBMode
H A Dnb_celp.h53 int frameSize; /**< Size of frames */ member in struct:EncState
127 int frameSize; /**< Size of frames */ member in struct:DecState
/external/webkit/Source/WebCore/platform/graphics/
H A DBitmapImage.cpp41 static int frameBytes(const IntSize& frameSize) argument
43 return frameSize.width() * frameSize.height() * 4;
137 const IntSize frameSize(index ? m_source.frameSizeAtIndex(index) : m_size);
138 if (frameSize != m_size)
141 int deltaBytes = frameBytes(frameSize);
184 IntSize frameSize = m_source.frameSizeAtIndex(m_currentFrame);
186 return frameSize;
H A DContextShadow.cpp250 const int frameSize = inflation * 2; local
251 m_sourceRect = IntRect(0, 0, layerArea.width() + frameSize, layerArea.height() + frameSize);
H A DShadowBlur.cpp382 const float frameSize = inflation * 2; local
383 m_sourceRect = FloatRect(0, 0, shadowedRect.width() + frameSize, shadowedRect.height() + frameSize);
/external/aac/libAACdec/include/
H A Daacdecoder_lib.h221 While the members sampleRate, frameSize and numChannels might be quite self explaining,
273 Where N equals to CStreamInfo::frameSize .
313 Where N equals to CStreamInfo::frameSize .
338 Where N equals to CStreamInfo::frameSize .
490 INT frameSize; /*!< The frame size of the decoded PCM audio signal. \n member in struct:__anon3
/external/aac/libSBRenc/include/
H A Dsbr_encoder.h225 INT frameSize; member in struct:__anon228
/external/qemu/audio/
H A Dcoreaudio.c284 int frameSize,
346 if (frameRange.mMinimum > frameSize) {
350 else if (frameRange.mMaximum < frameSize) {
355 core->bufferFrameSize = frameSize;
282 coreaudio_voice_init(coreaudioVoice* core, struct audsettings* as, int frameSize, AudioDeviceIOProc ioproc, void* hw, int input) argument
/external/webkit/Source/JavaScriptCore/yarr/
H A DYarrInterpreter.h313 ByteDisjunction(unsigned numSubpatterns, unsigned frameSize) argument
315 , m_frameSize(frameSize)
/external/aac/libPCMutils/src/
H A Dpcmutils_lib.cpp757 UINT frameSize,
799 if (frameSize == 0) { return (PCMDMX_INVALID_ARGUMENT); }
843 offset = frameSize; /* Channel specific offset factor */
892 for (sample = 0; sample < frameSize; sample++) {
902 for (sample = 0; sample < frameSize; sample++) {
911 for (sample = 0; sample < frameSize; sample++) {
927 for (sample = 0; sample < frameSize; sample++)
954 for (sample = 0; sample < frameSize; sample++)
974 for (sample = 0; sample < frameSize; sample++)
1002 for (sample = 0; sample < frameSize; sampl
754 pcmDmx_ApplyFrame( HANDLE_PCM_DOWNMIX self, INT_PCM *pPcmBuf, UINT frameSize, INT *nChannels, int fInterleaved, AUDIO_CHANNEL_TYPE channelType[], UCHAR channelIndices[], const UCHAR channelMapping[][8] ) argument
[all...]
/external/webkit/Source/WebCore/platform/
H A DScrollView.cpp542 IntSize frameSize = m_boundsSize; local
546 if (newHasHorizontalScrollbar && !m_updateScrollbarsPass && docSize.width() <= frameSize.width() && docSize.height() <= frameSize.height())
551 if (newHasVerticalScrollbar && !m_updateScrollbarsPass && docSize.width() <= frameSize.width() && docSize.height() <= frameSize.height())

Completed in 480 milliseconds