vbox的更動 52383 路徑 trunk/src/VBox/Main/src-client/VideoRec.cpp
- 時間撮記:
- 2014-8-14 下午02:58:52 (10 年 以前)
- 檔案:
-
- 修改 1 筆資料
圖例:
- 未更動
- 新增
- 刪除
-
trunk/src/VBox/Main/src-client/VideoRec.cpp
r52342 r52383 488 488 pStrm->pu8RgbBuf = (uint8_t *)RTMemAllocZ(uWidth * uHeight * 4); 489 489 AssertReturn(pStrm->pu8RgbBuf, VERR_NO_MEMORY); 490 491 pStrm->uEncoderDeadline = 1000000 / uFps; 490 pStrm->uEncoderDeadline = VPX_DL_REALTIME; 492 491 493 492 /* Play safe: the file must not exist, overwriting is potentially … … 555 554 pStrm->uDelay = 1000 / uFps; 556 555 557 struct vpx_rational arg_framerate = { 30, 1 };556 struct vpx_rational arg_framerate = { uFps, 1 }; 558 557 rc = pStrm->Ebml.writeHeader(&pStrm->VpxConfig, &arg_framerate); 559 558 AssertRCReturn(rc, rc); … … 723 722 &pStrm->VpxRawImage, 724 723 pts /* time stamp */, 725 10/* how long to show this frame */,724 pStrm->uDelay /* how long to show this frame */, 726 725 0 /* flags */, 727 726 pStrm->uEncoderDeadline /* quality setting */);
注意:
瀏覽 TracChangeset
來幫助您使用更動檢視器