| 181 | return 0; //����0Ӧ����û�ж������� |
| 182 | } |
| 183 | int bs_read_ue( bs_t *s ) |
| 184 | { |
| 185 | int i = 0; |
| 186 | |
| 187 | while( bs_read1( s ) == 0 && s->p < s->p_end && i < 32 ) //����Ϊ�������ĵ�ǰ����=0��ָ��δԽ�磬���ֻ�ܶ�32���� |
| 188 | { |
| 189 | i++; |
| 190 | } |
| 191 | return( ( 1 << i) - 1 + bs_read( s, i ) ); |
| 192 | } |
| 193 | #endif |
| 194 | |
| 195 | PlyDecoder::PlyDecoder() |
no test coverage detected