mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2025-02-19 19:42:55 +00:00
Increase buffer size for RTP packet data because some ASF streams use a
manual, non-standard blocksize which is bigger than RTP_MAX_PACKET_LENGTH. See "[PATCH] RTSP-MS 4/15: blocksize detection" thread on mailinglist. Originally committed as revision 16502 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
5ce0043367
commit
e49906c321
@ -1299,7 +1299,7 @@ static int rtsp_read_packet(AVFormatContext *s,
|
||||
RTSPState *rt = s->priv_data;
|
||||
RTSPStream *rtsp_st;
|
||||
int ret, len;
|
||||
uint8_t buf[RTP_MAX_PACKET_LENGTH];
|
||||
uint8_t buf[10 * RTP_MAX_PACKET_LENGTH];
|
||||
|
||||
if (rt->server_type == RTSP_SERVER_REAL) {
|
||||
int i;
|
||||
|
Loading…
x
Reference in New Issue
Block a user