Commit 33a4ecbe authored by Alex Beregszaszi's avatar Alex Beregszaszi

cosmetic: indentation

Originally committed as revision 9986 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent eeffbdea
......@@ -343,10 +343,10 @@ static void update_datarate(DataRateData *drd, int64_t count)
drd->time1 = drd->time2 = cur_time;
drd->count1 = drd->count2 = count;
} else if (cur_time - drd->time2 > 5000) {
drd->time1 = drd->time2;
drd->count1 = drd->count2;
drd->time2 = cur_time;
drd->count2 = count;
drd->time1 = drd->time2;
drd->count1 = drd->count2;
drd->time2 = cur_time;
drd->count2 = count;
}
}
......
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