Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Van Til <andyvt@babgvant.com>2013-04-05 03:46:50 +0400
committerMichael Niedermayer <michaelni@gmx.at>2013-04-05 03:48:55 +0400
commit8df46c65cf999e087bf16394e475fedfb2b24aab (patch)
tree645ac2ac209989f156a421a29bbbdd5b5ab91503 /libavformat/rtpdec.h
parent5ed9eebc24add4d713ac0deafecfc714502b0bf3 (diff)
rtpdec: Increase max rtp packet size to 8192
Fixes Ticket2314 Fixes connecting to "Ceton InfiniTV4 PCIe & USB" Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/rtpdec.h')
-rw-r--r--libavformat/rtpdec.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtpdec.h b/libavformat/rtpdec.h
index e469c0f61c..623d911b99 100644
--- a/libavformat/rtpdec.h
+++ b/libavformat/rtpdec.h
@@ -33,7 +33,7 @@ typedef struct PayloadContext PayloadContext;
typedef struct RTPDynamicProtocolHandler RTPDynamicProtocolHandler;
#define RTP_MIN_PACKET_LENGTH 12
-#define RTP_MAX_PACKET_LENGTH 1500
+#define RTP_MAX_PACKET_LENGTH 8192
#define RTP_REORDER_QUEUE_DEFAULT_SIZE 10