HomeSort by relevance Sort by last modified time
    Searched refs:decResult (Results 1 - 2 of 2) sorted by null

  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H264SwDecApi.c 355 u32 decResult = 0;
405 decResult = H264BSD_HDRS_RDY;
410 decResult = h264bsdDecode(&pDecCont->storage, tmpStream, strmLen,
422 switch (decResult)
475 sprintf(pDecCont->str, "H264SwDecDecode# OK: DecResult %d",
  /external/lz4/tests/
frametest.c 249 size_t decResult, oSize = COMPRESSIBLE_NOISE_LENGTH;
251 decResult = LZ4F_decompress(dCtx, op, &oSize, cBuff, &iSize, NULL);
252 if (LZ4F_isError(decResult)) goto _output_error;
253 if (decResult != missingBytes) {
254 DISPLAY("%u bytes missing != %u bytes requested \n", (U32)missingBytes, (U32)decResult);
257 DISPLAYLEVEL(3, "indeed, requests %u bytes \n", (unsigned)decResult);
259 iSize = decResult;
262 decResult = LZ4F_decompress(dCtx, op, &oSize, cBuff, &iSize, NULL);
263 if (decResult != 0) goto _output_error; /* should finish now */
    [all...]

Completed in 92 milliseconds