Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 145393 | Differences between
and this patch

Collapse All | Expand All

(-)MPlayer-1.0pre8/libavcodec/ratecontrol_old.c (-2 / +3 lines)
Lines 912-919 Link Here
912
    av_free(blured_qscale);
912
    av_free(blured_qscale);
913
913
914
    if(fabs(expected_bits/all_available_bits - 1.0) > 0.01 ){
914
    if(fabs(expected_bits/all_available_bits - 1.0) > 0.01 ){
915
        av_log(s->avctx, AV_LOG_ERROR, "Error: 2pass curve failed to converge\n");
915
        av_log(s->avctx, AV_LOG_ERROR, "Warning: 2pass curve failed to converge\n");
916
        return -1;
916
	av_log(s->avctx, AV_LOG_ERROR, "Try 1-pass or use a smaller bitrate\n");
917
        //return -1;
917
    }
918
    }
918
919
919
    return 0;
920
    return 0;

Return to bug 145393