Module: libav Branch: master Commit: 0e729b2290cf2fc8084c18294a46d996c41e3924
Author: Andrew Van Til <[email protected]> Committer: Martin Storsjö <[email protected]> Date: Fri Apr 5 01:46:50 2013 +0200 rtpdec: Increase max rtp packet size to 8192 This fixes connecting to "Ceton InfiniTV4 PCIe & USB". Signed-off-by: Martin Storsjö <[email protected]> --- libavformat/rtpdec.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/libavformat/rtpdec.h b/libavformat/rtpdec.h index a93963a..6e923d9 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 _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
