Codebase list faad2 / 7bee9cc
Merge pull request #43 from janisozaur/uint Use unsigned integers correctly Fabian Greffrath authored 4 years ago GitHub committed 4 years ago
2 changed file(s) with 3 addition(s) and 3 deletion(s). Raw diff Collapse all Expand all
238238 while (ld->bytes_left)
239239 {
240240 bits = faad_latm_frame(latm, ld);
241 if(bits==-1U)
241 if(bits==0xFFFFFFFF)
242242 bad++;
243243 else
244244 {
26432643 return (len*8)-(endpos-initpos);
26442644 //faad_getbits(ld, initpos-endpos); //go back to initpos, but is valid a getbits(-N) ?
26452645 }
2646 return -1U;
2647 }
2646 return 0xFFFFFFFF;
2647 }