Commit 84aeab0e authored by alex's avatar alex

cosmetic: indentation

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@9986 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 9985cc0e
......@@ -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