comparison ratecontrol.c @ 6908:25dcd46b8160 libavcodec

cosmetics: XviD is now called Xvid.
author diego
date Tue, 27 May 2008 12:32:59 +0000
parents 737b74bec1e5
children 322023e630a6
comparison
equal deleted inserted replaced
6907:8b0db8b07a21 6908:25dcd46b8160
185 //FIXME maybe move to end 185 //FIXME maybe move to end
186 if((s->flags&CODEC_FLAG_PASS2) && s->avctx->rc_strategy == FF_RC_STRATEGY_XVID) { 186 if((s->flags&CODEC_FLAG_PASS2) && s->avctx->rc_strategy == FF_RC_STRATEGY_XVID) {
187 #ifdef CONFIG_LIBXVID 187 #ifdef CONFIG_LIBXVID
188 return ff_xvid_rate_control_init(s); 188 return ff_xvid_rate_control_init(s);
189 #else 189 #else
190 av_log(s->avctx, AV_LOG_ERROR, "XviD ratecontrol requires libavcodec compiled with XviD support\n"); 190 av_log(s->avctx, AV_LOG_ERROR, "Xvid ratecontrol requires libavcodec compiled with Xvid support.\n");
191 return -1; 191 return -1;
192 #endif 192 #endif
193 } 193 }
194 } 194 }
195 195