diff options
author | Martin Storsjö | 2010-06-21 18:40:53 +0000 |
---|---|---|
committer | Martin Storsjö | 2010-06-21 18:40:53 +0000 |
commit | a6a9158973ac9a900ca5806ae13e02a28c9388db (patch) | |
tree | f7d6dfbbcdf5e0181fe020d29ca7156f808079de /libavformat/http.c | |
parent | 6785e9270991e370772d7e0ed1ad60cb89210676 (diff) |
HTTP: Clarify a comment
Originally committed as revision 23681 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/http.c')
-rw-r--r-- | libavformat/http.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/http.c b/libavformat/http.c index cc7dc08f5a..ae03e0ff58 100644 --- a/libavformat/http.c +++ b/libavformat/http.c @@ -434,7 +434,7 @@ static int http_write(URLContext *h, const uint8_t *buf, int size) return AVERROR(EIO); if (s->chunksize == -1) { - /* headers are sent without any special encoding */ + /* non-chunked data is sent without any special encoding */ return url_write(s->hd, buf, size); } |