comparison h263.c @ 2764:2b37bcabe608 libavcodec

spelling fixes patch by Peter Robinson pbrobinson @ at @ gmail . dot . com and myself
author diego
date Fri, 17 Jun 2005 15:02:53 +0000
parents edd8e513376c
children dc616c8ef3e6
comparison
equal deleted inserted replaced
2763:01ed2c3b8f08 2764:2b37bcabe608
243 put_bits(&s->pb, 3, format); 243 put_bits(&s->pb, 3, format);
244 put_bits(&s->pb, 1, (s->pict_type == P_TYPE)); 244 put_bits(&s->pb, 1, (s->pict_type == P_TYPE));
245 /* By now UMV IS DISABLED ON H.263v1, since the restrictions 245 /* By now UMV IS DISABLED ON H.263v1, since the restrictions
246 of H.263v1 UMV implies to check the predicted MV after 246 of H.263v1 UMV implies to check the predicted MV after
247 calculation of the current MB to see if we're on the limits */ 247 calculation of the current MB to see if we're on the limits */
248 put_bits(&s->pb, 1, 0); /* unrestricted motion vector: off */ 248 put_bits(&s->pb, 1, 0); /* Unrestricted Motion Vector: off */
249 put_bits(&s->pb, 1, 0); /* SAC: off */ 249 put_bits(&s->pb, 1, 0); /* SAC: off */
250 put_bits(&s->pb, 1, s->obmc); /* advanced prediction mode */ 250 put_bits(&s->pb, 1, s->obmc); /* Advanced Prediction */
251 put_bits(&s->pb, 1, 0); /* not PB frame */ 251 put_bits(&s->pb, 1, 0); /* only I/P frames, no PB frame */
252 put_bits(&s->pb, 5, s->qscale); 252 put_bits(&s->pb, 5, s->qscale);
253 put_bits(&s->pb, 1, 0); /* Continuous Presence Multipoint mode: off */ 253 put_bits(&s->pb, 1, 0); /* Continuous Presence Multipoint mode: off */
254 } else { 254 } else {
255 int ufep=1; 255 int ufep=1;
256 /* H.263v2 */ 256 /* H.263v2 */