summaryrefslogtreecommitdiff
path: root/libavformat/libzmq.c
diff options
context:
space:
mode:
authorAndriy Gelman <andriy.gelman@gmail.com>2020-03-08 16:33:29 -0400
committerMarton Balint <cus@passwd.hu>2020-03-09 22:07:18 +0100
commite6c5329a4302e3085855e7e6e7f147ec28c7f02b (patch)
treed3c5c0fff51e5f47ff6c420a7dbdb03e8ba3d899 /libavformat/libzmq.c
parent1676d0fb25c6851d0750ed6926b8205ed20973eb (diff)
avformat/libzmq: Make default pkt_size value consistent with amqp
Signed-off-by: Andriy Gelman <andriy.gelman@gmail.com> Signed-off-by: Marton Balint <cus@passwd.hu>
Diffstat (limited to 'libavformat/libzmq.c')
-rw-r--r--libavformat/libzmq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/libzmq.c b/libavformat/libzmq.c
index 8c8b294c92..1b0d8638db 100644
--- a/libavformat/libzmq.c
+++ b/libavformat/libzmq.c
@@ -40,7 +40,7 @@ typedef struct ZMQContext {
#define D AV_OPT_FLAG_DECODING_PARAM
#define E AV_OPT_FLAG_ENCODING_PARAM
static const AVOption options[] = {
- { "pkt_size", "Maximum send/read packet size", OFFSET(pkt_size), AV_OPT_TYPE_INT, { .i64 = 32768 }, -1, INT_MAX, .flags = D | E },
+ { "pkt_size", "Maximum send/read packet size", OFFSET(pkt_size), AV_OPT_TYPE_INT, { .i64 = 131072 }, -1, INT_MAX, .flags = D | E },
{ NULL }
};