Re: [FFmpeg-devel] [PATCH 1/1] avformat: Fix Pro-MPEG non-square matrix

2017-06-25 Thread Vlad Tarca
Sorry, gmail refused to send the In-Reply-To header. The concerned patch is: https://patchwork.ffmpeg.org/patch/2206/ This is a confirmed error, patch can be applied. Thanks! On 25/06/2017 22:47, Vlad Tarca wrote: The patch is correct, please apply. Reviewed-by:vta...@mobibase.com

[FFmpeg-devel] [PATCH 1/1] avformat: Fix Pro-MPEG non-square matrix

2017-06-25 Thread Vlad Tarca
The patch is correct, please apply. Reviewed-by:vta...@mobibase.com -- ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

[FFmpeg-devel] [PATCH] avformat: Add Pro-MPEG CoP #3-R2 FEC protocol

2016-06-02 Thread Vlad Tarca
Pro-MPEG Code of Practice #3 release 2 forward error correction for rtp_mpegts streams Signed-off-by: Vlad Tarca --- Changelog | 1 + doc/general.texi| 1 + doc/protocols.texi | 35 libavformat/Makefile| 1 + libavformat/prompeg.c | 481

Re: [FFmpeg-devel] [PATCH] avformat: Add Pro-MPEG CoP #3-R2 FEC protocol

2016-06-02 Thread Vlad Tarca
> also why are some called _size and some _len ? I will use length_recovery as it's named exactly like that in the code of practice and use better names for the rest. The size check will also take into account UINT16_MAX and not INT_MAX since the recovery field is only 16-bit. > -ret = ffurl_

[FFmpeg-devel] [PATCH] avformat: Add Pro-MPEG CoP #3-R2 FEC protocol

2016-06-01 Thread Vlad Tarca
- moved fec_hd open outside the retry loop as it doesn't set any specific local ports - replaced ffurl_close call with ffurl_closep Signed-off-by: Vlad Tarca --- Changelog | 1 + doc/general.texi| 1 + doc/protocols.texi | 35 libavformat/Makefile

[FFmpeg-devel] [PATCH] avformat: Add Pro-MPEG CoP #3-R2 FEC protocol

2016-05-30 Thread Vlad Tarca
t prompeg_close() for cleanup. Thanks Signed-off-by: Vlad Tarca --- Changelog | 1 + doc/general.texi| 1 + doc/protocols.texi | 35 libavformat/Makefile| 1 + libavformat/prompeg.c | 491 libavformat/pr

Re: [FFmpeg-devel] [PATCH] avformat: Add Pro-MPEG CoP #3-R2 FEC protocol

2016-05-18 Thread Vlad Tarca
> > Have you tested this on actual receivers? > Are you aware this won't work effectively because of the bursty nature of > FFmpeg? > > Kieran > Hello, I tested the FFmpeg version on a software receiver, not a hardware one. I initially implemented this for one of my applications based on VideoLAN

[FFmpeg-devel] [PATCH] avformat: Add Pro-MPEG CoP #3-R2 FEC protocol

2016-05-18 Thread Vlad Tarca
Fixed a type issue in xor added after the last modification and cleaned up unnecessary NULL checks for av_dict_free Signed-off-by: Vlad Tarca --- Changelog | 1 + doc/general.texi| 1 + doc/protocols.texi | 35 libavformat/Makefile| 1 + libavformat

[FFmpeg-devel] [PATCH] avformat: Add Pro-MPEG CoP #3-R2 FEC protocol

2016-05-16 Thread Vlad Tarca
Pro-MPEG Code of Practice #3 release 2 forward error correction for rtp_mpegts streams Signed-off-by: Vlad Tarca --- Changelog | 1 + doc/general.texi| 1 + doc/protocols.texi | 35 libavformat/Makefile| 1 + libavformat/prompeg.c | 489

[FFmpeg-devel] [PATCH] avformat: Add Pro-MPEG CoP #3-R2 FEC protocol

2016-05-13 Thread Vlad Tarca
Pro-MPEG Code of Practice #3 release 2 forward error correction for rtp_mpegts streams Signed-off-by: Vlad Tarca --- Changelog | 1 + doc/general.texi| 1 + doc/protocols.texi | 38 libavformat/Makefile| 1 + libavformat/prompeg.c | 493