diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-04-09 11:36:35 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-04-09 11:36:39 +0200 |
commit | 4e0130faed10fe9bd28e5d149b099c9b55612145 (patch) | |
tree | 3be6765b9a595b72ca4cceffeab4f807bc0c427c /libavformat/sapdec.c | |
parent | 93e8fcb94b1ae3e1cb9be1164bb098b3ed188a11 (diff) | |
parent | fc792308c5ae03d245e8bb7d3bf7fca08d6528e3 (diff) | |
download | ffmpeg-4e0130faed10fe9bd28e5d149b099c9b55612145.tar.gz |
Merge remote-tracking branch 'qatar/master'
* qatar/master:
srtp: Include rtpdec.h for RTP_MAX_PACKET_LENGTH
rtpdec: Increase max rtp packet size to 8192
lavf: Use RTP_MAX_PACKET_LENGTH instead of 1500
h264pred: Add a few missing const declarations for ff_cropTbl derived pointers
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/sapdec.c')
-rw-r--r-- | libavformat/sapdec.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libavformat/sapdec.c b/libavformat/sapdec.c index ed3e8578d5..fe7bd825f2 100644 --- a/libavformat/sapdec.c +++ b/libavformat/sapdec.c @@ -27,6 +27,7 @@ #include "internal.h" #include "avio_internal.h" #include "url.h" +#include "rtpdec.h" #if HAVE_POLL_H #include <poll.h> #endif @@ -63,7 +64,7 @@ static int sap_read_header(AVFormatContext *s) { struct SAPState *sap = s->priv_data; char host[1024], path[1024], url[1024]; - uint8_t recvbuf[1500]; + uint8_t recvbuf[RTP_MAX_PACKET_LENGTH]; int port; int ret, i; AVInputFormat* infmt; @@ -186,7 +187,7 @@ static int sap_fetch_packet(AVFormatContext *s, AVPacket *pkt) int fd = ffurl_get_file_handle(sap->ann_fd); int n, ret; struct pollfd p = {fd, POLLIN, 0}; - uint8_t recvbuf[1500]; + uint8_t recvbuf[RTP_MAX_PACKET_LENGTH]; if (sap->eof) return AVERROR_EOF; |