p5 for high
This commit is contained in:
parent
6a01677e23
commit
ed15405d2f
@ -62,7 +62,7 @@ public:
|
|||||||
if(!library || !display_to_capture || !display_width || !display_height || fbc_handle_created)
|
if(!library || !display_to_capture || !display_width || !display_height || fbc_handle_created)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
const bool capture_region = (x > 0 && y > 0 && width > 0 && height > 0);
|
const bool capture_region = (x > 0 || y > 0 || width > 0 || height > 0);
|
||||||
|
|
||||||
NVFBCSTATUS status;
|
NVFBCSTATUS status;
|
||||||
NVFBC_TRACKING_TYPE tracking_type;
|
NVFBC_TRACKING_TYPE tracking_type;
|
||||||
@ -130,7 +130,6 @@ public:
|
|||||||
}
|
}
|
||||||
create_capture_params.eTrackingType = tracking_type;
|
create_capture_params.eTrackingType = tracking_type;
|
||||||
create_capture_params.dwSamplingRateMs = 1000 / fps;
|
create_capture_params.dwSamplingRateMs = 1000 / fps;
|
||||||
// Cant use this, it breaks when a compositor is used
|
|
||||||
create_capture_params.bAllowDirectCapture = direct_capture ? NVFBC_TRUE : NVFBC_FALSE;
|
create_capture_params.bAllowDirectCapture = direct_capture ? NVFBC_TRUE : NVFBC_FALSE;
|
||||||
create_capture_params.bPushModel = direct_capture ? NVFBC_TRUE : NVFBC_FALSE;
|
create_capture_params.bPushModel = direct_capture ? NVFBC_TRUE : NVFBC_FALSE;
|
||||||
if(tracking_type == NVFBC_TRACKING_OUTPUT)
|
if(tracking_type == NVFBC_TRACKING_OUTPUT)
|
||||||
|
@ -454,7 +454,7 @@ static AVCodecContext *create_video_codec_context(AVFormatContext *av_format_con
|
|||||||
//av_opt_set(codec_context->priv_data, "preset", "slow", 0);
|
//av_opt_set(codec_context->priv_data, "preset", "slow", 0);
|
||||||
//av_opt_set(codec_context->priv_data, "profile", "high", 0);
|
//av_opt_set(codec_context->priv_data, "profile", "high", 0);
|
||||||
//codec_context->profile = FF_PROFILE_H264_HIGH;
|
//codec_context->profile = FF_PROFILE_H264_HIGH;
|
||||||
av_opt_set(codec_context->priv_data, "preset", "p6", 0);
|
av_opt_set(codec_context->priv_data, "preset", "p5", 0);
|
||||||
break;
|
break;
|
||||||
case VideoQuality::ULTRA:
|
case VideoQuality::ULTRA:
|
||||||
codec_context->bit_rate = 10000000 + (codec_context->width * codec_context->height) / 2;
|
codec_context->bit_rate = 10000000 + (codec_context->width * codec_context->height) / 2;
|
||||||
@ -472,6 +472,7 @@ static AVCodecContext *create_video_codec_context(AVFormatContext *av_format_con
|
|||||||
// stream->time_base = codec_context->time_base;
|
// stream->time_base = codec_context->time_base;
|
||||||
// codec_context->ticks_per_frame = 30;
|
// codec_context->ticks_per_frame = 30;
|
||||||
av_opt_set(codec_context->priv_data, "tune", "hq", 0);
|
av_opt_set(codec_context->priv_data, "tune", "hq", 0);
|
||||||
|
//av_opt_set(codec_context->priv_data, "rc", "vbr", 0);
|
||||||
|
|
||||||
// Some formats want stream headers to be seperate
|
// Some formats want stream headers to be seperate
|
||||||
if (av_format_context->oformat->flags & AVFMT_GLOBALHEADER)
|
if (av_format_context->oformat->flags & AVFMT_GLOBALHEADER)
|
||||||
|
Loading…
Reference in New Issue
Block a user