comparison h263.c @ 8596:68e959302527 libavcodec

replace all occurrence of ENABLE_ by the corresponding CONFIG_, HAVE_ or ARCH_ and remove all ENABLE_ definitions.
author aurel
date Wed, 14 Jan 2009 17:19:17 +0000
parents 7a463923ecd1
children a637db9f59b1
comparison
equal deleted inserted replaced
8595:2f476018b4ac 8596:68e959302527
2353 2353
2354 static void mpeg4_encode_vol_header(MpegEncContext * s, int vo_number, int vol_number) 2354 static void mpeg4_encode_vol_header(MpegEncContext * s, int vo_number, int vol_number)
2355 { 2355 {
2356 int vo_ver_id; 2356 int vo_ver_id;
2357 2357
2358 if (!ENABLE_MPEG4_ENCODER) return; 2358 if (!CONFIG_MPEG4_ENCODER) return;
2359 2359
2360 if(s->max_b_frames || s->quarter_sample){ 2360 if(s->max_b_frames || s->quarter_sample){
2361 vo_ver_id= 5; 2361 vo_ver_id= 5;
2362 s->vo_type= ADV_SIMPLE_VO_TYPE; 2362 s->vo_type= ADV_SIMPLE_VO_TYPE;
2363 }else{ 2363 }else{