diff --git a/libavformat/rtspdec.c b/libavformat/rtspdec.c
index da571a8..57d335c 100644
|
a
|
b
|
int ff_rtsp_setup_input_streams(AVFormatContext *s, RTSPMessageHeader *reply)
|
| 574 | 574 | /* describe the stream */ |
| 575 | 575 | snprintf(cmd, sizeof(cmd), |
| 576 | 576 | "Accept: application/sdp\r\n"); |
| | 577 | av_strlcat(cmd, |
| | 578 | "User-Agent: Lavf/" AV_STRINGIFY(LIBAVFORMAT_VERSION) "\r\n", |
| | 579 | sizeof(cmd)); |
| 577 | 580 | if (rt->server_type == RTSP_SERVER_REAL) { |
| 578 | 581 | /** |
| 579 | 582 | * The Require: attribute is needed for proper streaming from |