diff options
author | Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com> | 2015-02-15 13:23:06 -0300 |
---|---|---|
committer | Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com> | 2015-02-15 15:15:40 -0300 |
commit | 8129ccec3a6a5bd100ccf292d4abe5b388426e95 (patch) | |
tree | 3eb2935498f9aee33864f3f3a1843287c6abe1d4 /ffserver.c | |
parent | f7ed997a6ddd5f7b89a551109202687869986e5b (diff) | |
download | ffmpeg-8129ccec3a6a5bd100ccf292d4abe5b388426e95.tar.gz |
ffserver: reorder HTTP fwd decls
Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
Diffstat (limited to 'ffserver.c')
-rw-r--r-- | ffserver.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ffserver.c b/ffserver.c index 0946d0e392..ad67ad0b54 100644 --- a/ffserver.c +++ b/ffserver.c @@ -209,10 +209,10 @@ static void close_connection(HTTPContext *c); /* HTTP handling */ static int handle_connection(HTTPContext *c); -static int http_parse_request(HTTPContext *c); -static int http_send_data(HTTPContext *c); static void compute_status(HTTPContext *c); static int open_input_stream(HTTPContext *c, const char *info); +static int http_parse_request(HTTPContext *c); +static int http_send_data(HTTPContext *c); static int http_start_receive_data(HTTPContext *c); static int http_receive_data(HTTPContext *c); |