comparison mpegvideo.c @ 3069:1363655b443c libavcodec

Add a newline to b_frame_strategy error message.
author corey
date Fri, 27 Jan 2006 23:24:24 +0000
parents 9aa8d8587bea
children 3c32ecc8eefe
comparison
equal deleted inserted replaced
3068:9aa8d8587bea 3069:1363655b443c
1064 av_log(avctx, AV_LOG_ERROR, "mb_threshold too large, max is %d\n", i - 1); 1064 av_log(avctx, AV_LOG_ERROR, "mb_threshold too large, max is %d\n", i - 1);
1065 return -1; 1065 return -1;
1066 } 1066 }
1067 1067
1068 if(avctx->b_frame_strategy && (avctx->flags&CODEC_FLAG_PASS2)){ 1068 if(avctx->b_frame_strategy && (avctx->flags&CODEC_FLAG_PASS2)){
1069 av_log(avctx, AV_LOG_ERROR, "b_frame_strategy must be 0 on the second pass"); 1069 av_log(avctx, AV_LOG_ERROR, "b_frame_strategy must be 0 on the second pass\n");
1070 return -1; 1070 return -1;
1071 } 1071 }
1072 1072
1073 i= ff_gcd(avctx->time_base.den, avctx->time_base.num); 1073 i= ff_gcd(avctx->time_base.den, avctx->time_base.num);
1074 if(i > 1){ 1074 if(i > 1){