}
// User specified streaming profile audio bitrate limiter.
- if (t->t_props.tp_abitrate >=16) {
+ if (t->t_props.tp_abitrate >= 16) {
octx->bit_rate = t->t_props.tp_abitrate * 1000;
}
}
// Default "auto" CRF settings. Aimed for quality without being too agressive.
- if (t->t_props.tp_vbitrate == 0 ) {
+ if (t->t_props.tp_vbitrate == 0) {
octx->qmin = 10;
octx->qmax = 30;
}
sct = codec_id2streaming_component_type(ocodec->id);
// Don't transcode to identical output codec unless the streaming profile specifies a bitrate limiter.
- if (sct == ssc->ssc_type && t->t_props.tp_abitrate < 16 ) {
+ if (sct == ssc->ssc_type && t->t_props.tp_abitrate < 16) {
return transcoder_init_stream(t, ssc);
}