[FFmpeg-devel] [PATCH] libavformat/rtsp: pkt_size option is not honored in rtsp

"zhilizhao(赵志立)" quinkblack at foxmail.com
Wed Apr 6 16:28:49 EEST 2022


> On Apr 6, 2022, at 8:52 PM, Yubo Xie <xyb at xyb.name> wrote:
> 
> Signed-off-by: xyb <xyb at xyb.name>
> ---
> libavformat/rtsp.c    | 4 ++--
> libavformat/rtsp.h    | 1 -
> libavformat/rtspenc.c | 2 +-
> 3 files changed, 3 insertions(+), 4 deletions(-)
> 
[…]
> 
> diff --git a/libavformat/rtspenc.c b/libavformat/rtspenc.c
> index 2a00b3e18d..5c7e0b4e8b 100644
> --- a/libavformat/rtspenc.c
> +++ b/libavformat/rtspenc.c
> @@ -174,7 +174,7 @@ int ff_rtsp_tcp_write_packet(AVFormatContext *s, RTSPStream *rtsp_st)
>         size -= packet_len;
>     }
>     av_free(buf);
> -    return ffio_open_dyn_packet_buf(&rtpctx->pb, RTSP_TCP_MAX_PACKET_SIZE);
> +    return ffio_open_dyn_packet_buf(&rtpctx->pb, rt->pkt_size);

There is no more reference to RTSP_TCP_MAX_PACKET_SIZE now, it would
be better be removed.


More information about the ffmpeg-devel mailing list