This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
ffserver: drop redundant else clause
Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
tags/n2.6
Reynaldo H. Verdejo Pinochet
11 years ago
parent
9e55130a9d
commit
196bc03a86
1 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-2
ffserver.c
+ 2
- 2
ffserver.c
View File
@@ -2435,8 +2435,8 @@ static int http_send_data(HTTPContext *c)
return -1;
else
return 0;
}
else
c->buffer_ptr += len;
}
c->buffer_ptr += len;
c->data_count += len;
update_datarate(&c->datarate, c->data_count);
Write
Preview
Loading…
Cancel
Save