[FFmpeg-devel] [PATCH v1] Add ignore_rtcp option in rtsp

2021-05-07 Thread sunml
From: Minlei Sun Regarding ignore_rtcp flag, it is turned off by default. When some devices (such as hikvision iSecure Center Platform v1.3.xxx) rtsp stream contains rtcp data packets (may be non-standard), there will be a freeze when the output is rtmp stream. So when igore_rtcp is enabled, t

[FFmpeg-devel] [PATCH v2] doc/protocols.texi : Add ignore_rtcp option in rtsp section

2021-04-20 Thread sunml
From: Minlei Sun Regarding ignore_rtcp flag, it is turned off by default. When some devices (such as hikvision iSecure Center Platform v1.3.xxx) rtsp stream contains rtcp data packets (may be non-standard), there will be a freeze when the output is rtmp stream. So when igore_rtcp is enabled, t

[FFmpeg-devel] [PATCH v1] doc/protocols.texi : Add ignore_rtcp option in rtsp section

2021-04-20 Thread sunml
From: Minlei Sun Signed-off-by: Minlei Sun --- doc/protocols.texi | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/protocols.texi b/doc/protocols.texi index a6e46b99ad..604d42b693 100644 --- a/doc/protocols.texi +++ b/doc/protocols.texi @@ -1188,6 +1188,9 @@ libavformat identifier str

[FFmpeg-devel] [PATCH v1] doc/protocols.texi : Add ignore_rtcp option in rtsp section

2021-04-20 Thread sunml
From: Minlei Sun Signed-off-by: Minlei Sun --- doc/protocols.texi | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/protocols.texi b/doc/protocols.texi index a6e46b99ad..604d42b693 100644 --- a/doc/protocols.texi +++ b/doc/protocols.texi @@ -1188,6 +1188,9 @@ libavformat identifier str

[FFmpeg-devel] [PATCH v1 2/3] libavformat/rtsp.c : Add ignore_rtcp option to ff_rtsp_options

2021-04-17 Thread sunml
From: Minlei Sun Signed-off-by: Minlei Sun --- libavformat/rtsp.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index 25bdf475b3..32043bfff6 100644 --- a/libavformat/rtsp.c +++ b/libavformat/rtsp.c @@ -105,6 +105,7 @@ const AVOption ff_rtsp_options[

[FFmpeg-devel] [PATCH v1 3/3] libavformat/rtspdec.c : Implement ignore_rtcp code

2021-04-17 Thread sunml
From: Minlei Sun Signed-off-by: Minlei Sun --- libavformat/rtspdec.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavformat/rtspdec.c b/libavformat/rtspdec.c index 113da975e1..1d5e674149 100644 --- a/libavformat/rtspdec.c +++ b/libavformat/rtspdec.c @@ -817,6 +817,8 @@ redo: }

[FFmpeg-devel] [PATCH v1 1/3] libavformat/rtsp.h : Add member ignore_rtcp to RTSPState

2021-04-17 Thread sunml
From: Minlei Sun Signed-off-by: Minlei Sun --- libavformat/rtsp.h | 5 + 1 file changed, 5 insertions(+) diff --git a/libavformat/rtsp.h b/libavformat/rtsp.h index 1310dd9c08..516391673a 100644 --- a/libavformat/rtsp.h +++ b/libavformat/rtsp.h @@ -416,6 +416,11 @@ typedef struct RTSPState