diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-03-29 22:10:05 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-03-29 22:10:05 +0200 |
commit | d0059281e6a6a806e4476ad6133962d11cc52695 (patch) | |
tree | b57ebaba4a3b291a3b01c2f95146396446172ce1 /libavformat/udp.c | |
parent | 83443505090d7749de7ca684f7c338ed0b8cbbab (diff) | |
download | ffmpeg-d0059281e6a6a806e4476ad6133962d11cc52695.tar.gz |
avformat/udp: Remove (harmless) duplicated pkt_size entry from AVOption table
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/udp.c')
-rw-r--r-- | libavformat/udp.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/udp.c b/libavformat/udp.c index affa08ea00..d40ea973fe 100644 --- a/libavformat/udp.c +++ b/libavformat/udp.c @@ -115,7 +115,6 @@ static const AVOption options[] = { { "local_port", "Local port", OFFSET(local_port), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, .flags = D|E }, { "localaddr", "Local address", OFFSET(localaddr), AV_OPT_TYPE_STRING, { .str = NULL }, .flags = D|E }, { "udplite_coverage", "choose UDPLite head size which should be validated by checksum", OFFSET(udplite_coverage), AV_OPT_TYPE_INT, {.i64 = 0}, 0, INT_MAX, D|E }, - { "pkt_size", "set size of UDP packets", OFFSET(pkt_size), AV_OPT_TYPE_INT, { .i64 = 1472 }, -1, INT_MAX, D|E }, { "pkt_size", "Maximum UDP packet size", OFFSET(pkt_size), AV_OPT_TYPE_INT, { .i64 = 1472 }, -1, INT_MAX, .flags = D|E }, { "reuse", "explicitly allow reusing UDP sockets", OFFSET(reuse_socket), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 1, D|E }, { "reuse_socket", "explicitly allow reusing UDP sockets", OFFSET(reuse_socket), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 1, .flags = D|E }, |