Home
last modified time | relevance | path

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

/frameworks/av/cmds/screenrecord/
Dscreenrecord.cpp362 const sp<MediaMuxer>& muxer, FILE* rawFp, const sp<IBinder>& mainDpy, in runEncoder() argument
373 assert((rawFp == NULL && muxer != NULL) || (rawFp != NULL && muxer == NULL)); in runEncoder()
448 fwrite(buffers[bufIndex]->data(), 1, size, rawFp); in runEncoder()
453 fflush(rawFp); in runEncoder()
545 FILE* rawFp = NULL; in prepareRawOutput() local
552 rawFp = stdout; in prepareRawOutput()
554 rawFp = fopen(fileName, "w"); in prepareRawOutput()
555 if (rawFp == NULL) { in prepareRawOutput()
561 int fd = fileno(rawFp); in prepareRawOutput()
574 return rawFp; in prepareRawOutput()
[all …]