Re: [FFmpeg-devel] [PATCH 2/4] avformat/utils: be more strict about stream specifiers

2019-03-01 Thread Marton Balint
On Sun, 24 Feb 2019, Marton Balint wrote: On Tue, 19 Feb 2019, Carl Eugen Hoyos wrote: 2019-02-18 22:43 GMT+01:00, Marton Balint : On Sun, 17 Feb 2019, Carl Eugen Hoyos wrote: 2019-02-17 20:55 GMT+01:00, Marton Balint : This reworks the code to be more strict about accepting stream

Re: [FFmpeg-devel] [PATCH 1/2] avformat/mpegtsenc: factorize writing registration_descriptor

2019-03-01 Thread Marton Balint
On Sun, 24 Feb 2019, Carl Eugen Hoyos wrote: Looks fine if tested. Thanks, applied. Regards, Marton ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] avformat/http: reconnect when connect reset by peer

2019-03-01 Thread Michael Niedermayer
On Fri, Mar 01, 2019 at 09:39:14AM +, lmzeng(曾令明) wrote: > diff --git a/libavformat/http.c b/libavformat/http.c > old mode 100644 > new mode 100755 > index ed0eb1c..400df94 > --- a/libavformat/http.c > +++ b/libavformat/http.c > @@ -253,6 +253,7 @@ static int http_open_cnx(URLContext *h,

Re: [FFmpeg-devel] [PATCH 2/2] avformat/mpegtsenc: write format_identifier HEVC for HEVC streams

2019-03-01 Thread Marton Balint
On Mon, 25 Feb 2019, Carl Eugen Hoyos wrote: Am 24.02.2019 um 23:39 schrieb Marton Balint : On Sat, 23 Feb 2019, Carl Eugen Hoyos wrote: Hi Marton! Am 23.02.2019 um 20:36 schrieb Marton Balint : This improves compatibility with some consumer TVs which apparently either search a HEVC

Re: [FFmpeg-devel] [PATCH 1/3] avcodec/avpacket: add some assertions to ensure pkt->data is not null if pkt->size > 0

2019-03-01 Thread Marton Balint
On Sun, 24 Feb 2019, Marton Balint wrote: On Sun, 17 Feb 2019, Marton Balint wrote: This should fix the following Coverity false positives: Coverity CID #1405450. Coverity CID #1430930. Signed-off-by: Marton Balint Ping for the series, will apply soon. Applied. Regards, Marton

Re: [FFmpeg-devel] [PATCH] avcodec/libvpxenc: add VP8 support for ROI-based encoding

2019-03-01 Thread James Zern
On Fri, Mar 1, 2019 at 4:51 AM Derek Buitenhuis wrote: > > On 01/03/2019 03:18, Guo, Yejun wrote: > > yes, that's the reason I pending VP9 work. As for VP8 ROI, another thinking > > is to first push vp8 roi, since libvpx is an external dependency and we > > don't > > know the time when it is

[FFmpeg-devel] New active mailing list maintainer needed

2019-03-01 Thread Lou Logan
Would any developer like to volunteer to take care of the mailing lists? I'm retiring from it. Here are the usual tasks: * Clear the ffmpeg-devel moderation ideally on a daily basis. It isn't time consuming but involves approving legit messages/patches (first check to see if it is not a

[FFmpeg-devel] [PATCH] Added ff_v210_planar_unpack_aligned_avx2

2019-03-01 Thread Michael Stoner
The AVX2 code leverages VPERMD to process 12 pixels/iteration. This is my first patch submission so any comments are greatly appreciated. -Mike Tested on Skylake (Win32 & Win64) 1920x1080 input frame = C code - 440 fps SSSE3 - 920 fps AVX- 930 fps AVX2 - 1040 fps

Re: [FFmpeg-devel] The log level of "co located POCs unavailable" should not be ERROR

2019-03-01 Thread Yukun Guo
On Fri, 1 Mar 2019 at 05:30, Michael Niedermayer wrote: > When data is missing (in live streaming or otherwise) it under > almost all cases cannot be losslessly recovered. So this use matches > the definition Yes, this is reasonable. But then "Frame num gap" should be of ERROR level too. H.264

[FFmpeg-devel] avformat/http: reconnect when connect reset by peer

2019-03-01 Thread 曾令明
diff --git a/libavformat/http.c b/libavformat/http.c old mode 100644 new mode 100755 index ed0eb1c..400df94 --- a/libavformat/http.c +++ b/libavformat/http.c @@ -253,6 +253,7 @@ static int http_open_cnx(URLContext *h, AVDictionary **options) HTTPAuthType cur_auth_type, cur_proxy_auth_type;

[FFmpeg-devel] [PATCH 1/1] avformat/dashenc: Added #EXT-X-PROGRAM-DATE-TIME to HLS playlists

2019-03-01 Thread joepadmiraal
--- libavformat/dashenc.c | 23 --- 1 file changed, 20 insertions(+), 3 deletions(-) diff --git a/libavformat/dashenc.c b/libavformat/dashenc.c index c5e882f4ae..4ee4a0cf72 100644 --- a/libavformat/dashenc.c +++ b/libavformat/dashenc.c @@ -61,6 +61,7 @@ typedef struct Segment

[FFmpeg-devel] [PATCH 0/1] avformat/dashenc: Added #EXT-X-PROGRAM-DATE-TIME to HLS playlists

2019-03-01 Thread joepadmiraal
This is the second attempt for a patch that adds the #EXT-X-PROGRAM-DATE-TIME tag to HLS playlists when using the Dash muxer. This time it is not increasing calculation complexity as time progresses. joepadmiraal (1): avformat/dashenc: Added #EXT-X-PROGRAM-DATE-TIME to HLS playlists

Re: [FFmpeg-devel] [PATCH 1/2] tools/target_dec_fate.sh: Add support for lines that are comments

2019-03-01 Thread Michael Niedermayer
On Thu, Feb 21, 2019 at 11:17:37PM +0100, Michael Niedermayer wrote: > Signed-off-by: Michael Niedermayer > --- > tools/target_dec_fate.sh | 5 + > 1 file changed, 5 insertions(+) will apply patchset [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB

Re: [FFmpeg-devel] [PATCH] avcodec/jpeg2000dwt: Fix integer overflow in dwt_decode97_int()

2019-03-01 Thread Michael Niedermayer
On Tue, Feb 19, 2019 at 02:13:00AM +0100, Michael Niedermayer wrote: > Fixes: runtime error: signed integer overflow: 2147483598 + 128 cannot be > represented in type 'int' > Fixes: > 12926/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_JPEG2000_fuzzer-5705100733972480 > > Found-by:

Re: [FFmpeg-devel] avformat/http: reconnect when connect reset by peer

2019-03-01 Thread Liu Steven
> 在 2019年3月1日,下午5:39,lmzeng(曾令明) 写道: > > diff --git a/libavformat/http.c b/libavformat/http.c > old mode 100644 > new mode 100755 > index ed0eb1c..400df94 > --- a/libavformat/http.c > +++ b/libavformat/http.c > @@ -253,6 +253,7 @@ static int http_open_cnx(URLContext *h, AVDictionary >

Re: [FFmpeg-devel] [PATCH] avcodec/libvpxenc: add VP8 support for ROI-based encoding

2019-03-01 Thread Derek Buitenhuis
On 01/03/2019 03:18, Guo, Yejun wrote: > yes, that's the reason I pending VP9 work. As for VP8 ROI, another thinking > is to first push vp8 roi, since libvpx is an external dependency and we don't > know the time when it is available for vp9 roi. Anyway, I'm open to both. Presumably the

[FFmpeg-devel] [PATCH] avcodec/imm4: add support for mid-stream size changes

2019-03-01 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- libavcodec/imm4.c | 27 +++ 1 file changed, 15 insertions(+), 12 deletions(-) diff --git a/libavcodec/imm4.c b/libavcodec/imm4.c index b72f0be28e..aeb29f5d44 100644 --- a/libavcodec/imm4.c +++ b/libavcodec/imm4.c @@ -41,7 +41,6 @@ typedef