Commit f5e9e919 authored by michael's avatar michael

Indent


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@16302 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent dee9528d
...@@ -4507,10 +4507,10 @@ decode_intra_mb: ...@@ -4507,10 +4507,10 @@ decode_intra_mb:
tmp= get_bits1(&s->gb)^1; tmp= get_bits1(&s->gb)^1;
}else{ }else{
tmp= get_ue_golomb_31(&s->gb); tmp= get_ue_golomb_31(&s->gb);
if(tmp>=ref_count){ if(tmp>=ref_count){
av_log(h->s.avctx, AV_LOG_ERROR, "ref %u overflow\n", tmp); av_log(h->s.avctx, AV_LOG_ERROR, "ref %u overflow\n", tmp);
return -1; return -1;
} }
} }
ref[list][i]= tmp; ref[list][i]= tmp;
}else{ }else{
...@@ -4581,11 +4581,11 @@ decode_intra_mb: ...@@ -4581,11 +4581,11 @@ decode_intra_mb:
}else if(h->ref_count[list]==2){ }else if(h->ref_count[list]==2){
val= get_bits1(&s->gb)^1; val= get_bits1(&s->gb)^1;
}else{ }else{
val= get_ue_golomb_31(&s->gb); val= get_ue_golomb_31(&s->gb);
if(val >= h->ref_count[list]){ if(val >= h->ref_count[list]){
av_log(h->s.avctx, AV_LOG_ERROR, "ref %u overflow\n", val); av_log(h->s.avctx, AV_LOG_ERROR, "ref %u overflow\n", val);
return -1; return -1;
} }
} }
}else }else
val= LIST_NOT_USED&0xFF; val= LIST_NOT_USED&0xFF;
...@@ -4615,11 +4615,11 @@ decode_intra_mb: ...@@ -4615,11 +4615,11 @@ decode_intra_mb:
}else if(h->ref_count[list] == 2){ }else if(h->ref_count[list] == 2){
val= get_bits1(&s->gb)^1; val= get_bits1(&s->gb)^1;
}else{ }else{
val= get_ue_golomb_31(&s->gb); val= get_ue_golomb_31(&s->gb);
if(val >= h->ref_count[list]){ if(val >= h->ref_count[list]){
av_log(h->s.avctx, AV_LOG_ERROR, "ref %u overflow\n", val); av_log(h->s.avctx, AV_LOG_ERROR, "ref %u overflow\n", val);
return -1; return -1;
} }
} }
}else }else
val= LIST_NOT_USED&0xFF; val= LIST_NOT_USED&0xFF;
...@@ -4652,11 +4652,11 @@ decode_intra_mb: ...@@ -4652,11 +4652,11 @@ decode_intra_mb:
}else if(h->ref_count[list]==2){ }else if(h->ref_count[list]==2){
val= get_bits1(&s->gb)^1; val= get_bits1(&s->gb)^1;
}else{ }else{
val= get_ue_golomb_31(&s->gb); val= get_ue_golomb_31(&s->gb);
if(val >= h->ref_count[list]){ if(val >= h->ref_count[list]){
av_log(h->s.avctx, AV_LOG_ERROR, "ref %u overflow\n", val); av_log(h->s.avctx, AV_LOG_ERROR, "ref %u overflow\n", val);
return -1; return -1;
} }
} }
}else }else
val= LIST_NOT_USED&0xFF; val= LIST_NOT_USED&0xFF;
......
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