Home
last modified time | relevance | path

Searched refs:pFp (Results 1 – 3 of 3) sorted by relevance

/third_party/openh264/codec/common/src/
Dcrt_util_safe_x.cpp92 WelsFileHandle* pFp = NULL; in WelsFopen() local
93 if (fopen_s (&pFp, kpFilename, kpMode) != 0) { in WelsFopen()
97 return pFp; in WelsFopen()
100 int32_t WelsFclose (WelsFileHandle* pFp) { in WelsFclose() argument
101 return fclose (pFp); in WelsFclose()
160 int32_t WelsFclose (WelsFileHandle* pFp) { in WelsFclose() argument
161 return fclose (pFp); in WelsFclose()
213 int32_t WelsFclose (WelsFileHandle* pFp) { in WelsFclose() argument
214 return fclose (pFp); in WelsFclose()
252 int32_t WelsFwrite (const void* kpBuffer, int32_t iSize, int32_t iCount, WelsFileHandle* pFp) { in WelsFwrite() argument
[all …]
/third_party/openh264/codec/console/dec/src/
Dd3d9_utils.cpp36 void Write2File (FILE* pFp, unsigned char* pData[3], int iStride[2], int iWidth, int iHeight);
118 HRESULT CD3D9Utils::Process (void* pDst[3], SBufferInfo* pInfo, FILE* pFp) { in Process() argument
124 BOOL bWindowed = pFp ? FALSE : TRUE; in Process()
139 } else if (pFp) { in Process()
140 hResult = Dump (pDst, pInfo, pFp); in Process()
176 HRESULT CD3D9Utils::Dump (void* pDst[3], SBufferInfo* pInfo, FILE* pFp) { in Dump() argument
188 Write2File (pFp, (unsigned char**)pDst, iStride, iWidth, iHeight); in Dump()
299 HRESULT CD3D9ExUtils::Process (void* pDst[3], SBufferInfo* pInfo, FILE* pFp) { in Process() argument
305 BOOL bWindowed = pFp ? FALSE : TRUE; in Process()
320 } else if (pFp) { in Process()
[all …]
/third_party/openh264/test/api/
DBaseThreadDecoderTest.cpp104 static void Write2File (FILE* pFp, unsigned char* pData[3], int iStride[2], int iWidth, int iHeight… in Write2File() argument
110 fwrite (pPtr, 1, iWidth, pFp); in Write2File()
118 fwrite (pPtr, 1, iWidth, pFp); in Write2File()
124 fwrite (pPtr, 1, iWidth, pFp); in Write2File()
129 static void Process (SBufferInfo* pInfo, FILE* pFp) { in Process() argument
130 if (pFp && pInfo->pDst[0] && pInfo->pDst[1] && pInfo->pDst[2] && pInfo) { in Process()
137 Write2File (pFp, (unsigned char**)pInfo->pDst, iStride, iWidth, iHeight); in Process()