Home
last modified time | relevance | path

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

/frameworks/av/cmds/screenrecord/
Dscreenrecord.cpp346 const sp<MediaMuxer>& muxer, FILE* rawFp, const sp<IBinder>& mainDpy, in runEncoder() argument
356 assert((rawFp == NULL && muxer != NULL) || (rawFp != NULL && muxer == NULL)); in runEncoder()
426 fwrite(buffers[bufIndex]->data(), 1, size, rawFp); in runEncoder()
431 fflush(rawFp); in runEncoder()
523 FILE* rawFp = NULL; in prepareRawOutput() local
530 rawFp = stdout; in prepareRawOutput()
532 rawFp = fopen(fileName, "w"); in prepareRawOutput()
533 if (rawFp == NULL) { in prepareRawOutput()
539 int fd = fileno(rawFp); in prepareRawOutput()
552 return rawFp; in prepareRawOutput()
[all …]