vbox的更動 46667 路徑 trunk/src/VBox/Main/src-client/VideoRec.cpp
- 時間撮記:
- 2013-6-19 下午03:30:23 (11 年 以前)
- 檔案:
-
- 修改 1 筆資料
圖例:
- 未更動
- 新增
- 刪除
-
trunk/src/VBox/Main/src-client/VideoRec.cpp
r46578 r46667 474 474 AssertReturn(pStrm->pu8RgbBuf, VERR_NO_MEMORY); 475 475 476 /* Play safe: the file must not exist, overwriting is potentially 477 * hazardous as nothing prevents the user from picking a file name of some 478 * other important file, causing unintentional data loss. */ 476 479 int rc = RTFileOpen(&pStrm->Ebml.file, pszFile, 477 RTFILE_O_CREATE _REPLACE| RTFILE_O_WRITE | RTFILE_O_DENY_NONE);480 RTFILE_O_CREATE | RTFILE_O_WRITE | RTFILE_O_DENY_NONE); 478 481 if (RT_FAILURE(rc)) 479 482 { 480 Log Flow(("Failed to open the video capture output File (%Rrc)\n", rc));483 LogRel(("Failed to create the video capture output file \"%s\" (%Rrc)\n", pszFile, rc)); 481 484 return rc; 482 485 } … … 500 503 /* disable multithreading */ 501 504 pStrm->VpxConfig.g_threads = 0; 502 // pStrm->VpxConfig.kf_max_dist = 1; 505 503 506 pStrm->uDelay = 1000 / uFps; 504 507
注意:
瀏覽 TracChangeset
來幫助您使用更動檢視器