Commit 5710b371 authored by Michael Niedermayer's avatar Michael Niedermayer

cosmetics (indent and 2 empty lines)

Originally committed as revision 14378 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 80f8e035
...@@ -3754,8 +3754,10 @@ static int init_poc(H264Context *h){ ...@@ -3754,8 +3754,10 @@ static int init_poc(H264Context *h){
field_poc[1] += h->delta_poc[1]; field_poc[1] += h->delta_poc[1];
}else{ }else{
int poc; int poc;
if(h->nal_ref_idc) poc= 2*(h->frame_num_offset + h->frame_num); if(h->nal_ref_idc) poc= 2*(h->frame_num_offset + h->frame_num);
else poc= 2*(h->frame_num_offset + h->frame_num) - 1; else poc= 2*(h->frame_num_offset + h->frame_num) - 1;
field_poc[0]= poc; field_poc[0]= poc;
field_poc[1]= poc; field_poc[1]= poc;
} }
......
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