Commit 13014c0c authored by michael's avatar michael

1 goto 1 fix


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@4946 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 5b0ce87a
...@@ -231,6 +231,10 @@ void ff_write_quant_matrix(PutBitContext *pb, int16_t *matrix){ ...@@ -231,6 +231,10 @@ void ff_write_quant_matrix(PutBitContext *pb, int16_t *matrix){
const uint8_t *ff_find_start_code(const uint8_t * restrict p, const uint8_t *end, uint32_t * restrict state){ const uint8_t *ff_find_start_code(const uint8_t * restrict p, const uint8_t *end, uint32_t * restrict state){
int i; int i;
assert(p<=end);
if(p>=end)
return end;
for(i=0; i<3; i++){ for(i=0; i<3; i++){
uint32_t tmp= *state << 8; uint32_t tmp= *state << 8;
*state= tmp + *(p++); *state= tmp + *(p++);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment