[FFmpeg-devel] [PATCH 0/2] rtpdec: add traces about RTP jitter buffer

2015-09-14 Thread Eloi BAIL
issues. Indeed a jitter buffer full will lead to packet reordering failure and then to video decoding failure. Eloi BAIL (2): rtpdec: add a trace when jitter buffer is full rtpdec: inform jitter buffer size libavformat/rtpdec.c | 7 +++ 1 file changed, 7 insertions(+) -- 2.1.4

[FFmpeg-devel] [PATCH 2/2] rtpdec: inform jitter buffer size

2015-09-14 Thread Eloi BAIL
This commit print as AV_LOG_INFO the jitter buffer size. It might be the default value or the value set by application. Signed-off-by: Eloi BAIL --- libavformat/rtpdec.c | 4 1 file changed, 4 insertions(+) diff --git a/libavformat/rtpdec.c b/libavformat/rtpdec.c index 225b77e..de01403

[FFmpeg-devel] [PATCH 1/2] rtpdec: add a trace when jitter buffer is full

2015-09-14 Thread Eloi BAIL
This commit adds an error trace when jitter buffer is full. It helps to understand leading decoding issues. Signed-off-by: Eloi BAIL --- libavformat/rtpdec.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libavformat/rtpdec.c b/libavformat/rtpdec.c index fee9547..225b77e 100644 --- a