]> git.sesse.net Git - ffmpeg/commitdiff
lavf: Use RTP_MAX_PACKET_LENGTH instead of 1500
authorAndrew Van Til <andyvt@babgvant.com>
Thu, 4 Apr 2013 23:45:52 +0000 (01:45 +0200)
committerMartin Storsjö <martin@martin.st>
Tue, 9 Apr 2013 07:36:43 +0000 (10:36 +0300)
Signed-off-by: Martin Storsjö <martin@martin.st>
libavformat/rtsp.c
libavformat/sapdec.c
libavformat/srtp.c
libavformat/srtpproto.c

index 1ce28d64574fcba4dfef5e350cc75e96fde9bcc4..9dfb97508ceb4186bd6dd25be96d99cdc09b3821 100644 (file)
@@ -2138,7 +2138,7 @@ static int rtp_probe(AVProbeData *p)
 
 static int rtp_read_header(AVFormatContext *s)
 {
-    uint8_t recvbuf[1500];
+    uint8_t recvbuf[RTP_MAX_PACKET_LENGTH];
     char host[500], sdp[500];
     int ret, port;
     URLContext* in = NULL;
index c1cdc8fb72f31944be06d50ace6ac4fb12537ce0..0280cead9cad3b741de91ada8aadca577f856747 100644 (file)
@@ -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;
index 1fe34a7c5a4c1fcb289619fdfd6fe89ea8efdf7e..4628da2d48cdf29e1dd089aae8af138ce6e32266 100644 (file)
@@ -419,7 +419,7 @@ static void test_encrypt(const uint8_t *data, int in_len, const char *suite,
 {
     struct SRTPContext enc = { 0 }, dec = { 0 };
     int len;
-    char buf[1500];
+    char buf[RTP_MAX_PACKET_LENGTH];
     ff_srtp_set_crypto(&enc, suite, key);
     ff_srtp_set_crypto(&dec, suite, key);
     len = ff_srtp_encrypt(&enc, data, in_len, buf, sizeof(buf));
@@ -441,7 +441,7 @@ int main(void)
     static const char *aes128_32_suite = "AES_CM_128_HMAC_SHA1_32";
     static const char *aes128_80_32_suite = "SRTP_AES128_CM_HMAC_SHA1_32";
     static const char *test_key = "abcdefghijklmnopqrstuvwxyz1234567890ABCD";
-    uint8_t buf[1500];
+    uint8_t buf[RTP_MAX_PACKET_LENGTH];
     struct SRTPContext srtp = { 0 };
     int len;
     ff_srtp_set_crypto(&srtp, aes128_80_suite, aes128_80_key);
index 1cacfdbb06c1984a20c91f833dc8d84503602f13..f9b94d7e91dcf7a99894a9159944df746bc87897 100644 (file)
@@ -25,6 +25,7 @@
 #include "url.h"
 
 #include "internal.h"
+#include "rtpdec.h"
 #include "srtp.h"
 
 typedef struct SRTPProtoContext {
@@ -33,7 +34,7 @@ typedef struct SRTPProtoContext {
     const char *out_suite, *out_params;
     const char *in_suite, *in_params;
     struct SRTPContext srtp_out, srtp_in;
-    uint8_t encryptbuf[1500];
+    uint8_t encryptbuf[RTP_MAX_PACKET_LENGTH];
 } SRTPProtoContext;
 
 #define D AV_OPT_FLAG_DECODING_PARAM