comparison h261dec.c @ 5129:0244bba24b43 libavcodec

misc typo fixes
author diego
date Tue, 12 Jun 2007 18:50:50 +0000
parents 4dbe6578f811
children 65b1bfb3a74c
comparison
equal deleted inserted replaced
5128:d98460d07146 5129:0244bba24b43
162 if(show_bits(&s->gb, 15)==0){ 162 if(show_bits(&s->gb, 15)==0){
163 ret= h261_decode_gob_header(h); 163 ret= h261_decode_gob_header(h);
164 if(ret>=0) 164 if(ret>=0)
165 return 0; 165 return 0;
166 } 166 }
167 //ok, its not where its supposed to be ... 167 //OK, it is not where it is supposed to be ...
168 s->gb= s->last_resync_gb; 168 s->gb= s->last_resync_gb;
169 align_get_bits(&s->gb); 169 align_get_bits(&s->gb);
170 left= s->gb.size_in_bits - get_bits_count(&s->gb); 170 left= s->gb.size_in_bits - get_bits_count(&s->gb);
171 171
172 for(;left>15+1+4+5; left-=8){ 172 for(;left>15+1+4+5; left-=8){