Commit 027f34b9 authored by mru's avatar mru

remove unused function get_longterm_datarate()


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@4928 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 84c0c6da
......@@ -359,14 +359,6 @@ static int compute_datarate(DataRateData *drd, int64_t count)
return ((count - drd->count1) * 1000) / (cur_time - drd->time1);
}
static int get_longterm_datarate(DataRateData *drd, int64_t count)
{
/* You get the first 3 seconds flat out */
if (cur_time - drd->time1 < 3000)
return 0;
return compute_datarate(drd, count);
}
static void start_children(FFStream *feed)
{
......
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