summaryrefslogtreecommitdiff
path: root/libavformat/rtpdec.h
diff options
context:
space:
mode:
authorAndrew Van Til <andyvt@babgvant.com>2013-04-05 01:46:50 +0200
committerMartin Storsjö <martin@martin.st>2013-04-09 10:36:56 +0300
commit0e729b2290cf2fc8084c18294a46d996c41e3924 (patch)
treea29ed696d20a633932518d749d075a8deec16840 /libavformat/rtpdec.h
parent350ad50bf45d1c2930ac249e3cbcc5b0aebd626b (diff)
rtpdec: Increase max rtp packet size to 8192
This fixes connecting to "Ceton InfiniTV4 PCIe & USB". Signed-off-by: Martin Storsjö <martin@martin.st>
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 a93963a7a8..6e923d9b1c 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