Home | History | Annotate | Download | only in videocodec

Lines Matching refs:eInfo

343     Encode_Info eInfo;
345 eInfo.FrameType = GET_FT(encodeInfo);
347 eInfo.CacheOperation = GET_CO(encodeInfo);
348 eInfo.NotStopFrame = encodeInfo & ENC_NSTOP;
349 eInfo.FrameCount = GET_FC(encodeInfo);
352 eInfo.FrameCount, FrameTypeStr[eInfo.FrameType], CacheOperationStr[eInfo.CacheOperation],
353 eInfo.NotStopFrame, buffers[INPORT_INDEX]->nFlags & OMX_BUFFERFLAG_EOS);
362 if (eInfo.CacheOperation == CACHE_NONE) {
364 } else if (eInfo.CacheOperation == CACHE_PUSH) {
369 } else if (eInfo.CacheOperation == CACHE_POP) {
370 eInfo.NotStopFrame = true; //it is also a nstop frame
416 } else if (eInfo.CacheOperation == CACHE_RESET) {
420 eInfo.CacheOperation = CACHE_NONE;
424 if (eInfo.NotStopFrame)
429 SET_CO(encodeInfo, eInfo.CacheOperation);
587 Encode_Info eInfo;
589 eInfo.FrameType = GET_FT(encodeInfo);
590 eInfo.CacheOperation = GET_CO(encodeInfo);
591 eInfo.NotStopFrame = encodeInfo & ENC_NSTOP;
592 eInfo.FrameCount = GET_FC(encodeInfo);
620 if (eInfo.NotStopFrame)
622 inBuf.type = (FrameType) eInfo.FrameType;