On Mon, 21 May 2012, Samuel Pitoiset wrote:
--- libavformat/http.c | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-)diff --git a/libavformat/http.c b/libavformat/http.c index ea7c693..97da9bf 100644 --- a/libavformat/http.c +++ b/libavformat/http.c @@ -51,6 +51,7 @@ typedef struct { char *headers; int willclose; /**< Set if the server correctly handles Connection: close and will close the connection after feeding us the content. */ int chunked_post; + char end_chunked_post; /**< A flag which indicates if the end of chunked encoding has been sent. */ } HTTPContext;
Pushed, but with the variable type changed to int - we normally use ints instead of char for booleans. I also fixed the vertical alignment of the comment.
// Martin _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
