On Thu, 10 Nov 2011, Anton Khirnov wrote:
--- libavformat/http.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-)diff --git a/libavformat/http.c b/libavformat/http.c index 84300b1..78d357c 100644 --- a/libavformat/http.c +++ b/libavformat/http.c @@ -52,8 +52,9 @@ typedef struct { } HTTPContext; #define OFFSET(x) offsetof(HTTPContext, x) +#define E AV_OPT_FLAG_ENCODING_PARAM static const AVOption options[] = { -{"chunksize", "use chunked transfer-encoding for posts, -1 disables it, 0 enables it", OFFSET(chunksize), AV_OPT_TYPE_INT64, {.dbl = 0}, -1, 0 }, /* Default to 0, for chunked POSTs */ +{"chunksize", "use chunked transfer-encoding for posts, -1 disables it, 0 enables it", OFFSET(chunksize), AV_OPT_TYPE_INT64, {.dbl = 0}, -1, 0, E }, /* Default to 0, for chunked POSTs */ {NULL} }; #define HTTP_CLASS(flavor)\ -- 1.7.7
Ok, although this has to be rebased on top of the patches I just pushed (adding the "headers" avoption, which is usable for both reading and writing aka D|E). Also, as discussed on IRC, I'll try to rewrite this AVOption into something that makes more sense to use externally. Since this patch (or the corresponding rebased one) is quite simple and doesn't depend on the rest of this patchset, I guess that one can go in quite soon, and my upcoming patch can be based on top of that then.
// Martin _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
