comparison rv30.c @ 6481:493dc59d469a libavcodec

add FF_ prefix to all (frame)_TYPE usage
author aurel
date Sun, 09 Mar 2008 23:31:02 +0000
parents a33699306850
children 48759bfbd073
comparison
equal deleted inserted replaced
6480:6f01a499e785 6481:493dc59d469a
103 } 103 }
104 if(code > 5){ 104 if(code > 5){
105 av_log(s->avctx, AV_LOG_ERROR, "dquant needed\n"); 105 av_log(s->avctx, AV_LOG_ERROR, "dquant needed\n");
106 code -= 6; 106 code -= 6;
107 } 107 }
108 if(s->pict_type != B_TYPE) 108 if(s->pict_type != FF_B_TYPE)
109 return rv30_p_types[code]; 109 return rv30_p_types[code];
110 else 110 else
111 return rv30_b_types[code]; 111 return rv30_b_types[code];
112 } 112 }
113 113