Re: [FFmpeg-devel] [PATCH v2 1/1] avcodec/wmaprodec: return value check for init_get_bits

2021-08-28 Thread Paul B Mahol
Please waith 14 days between pings. ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-devel] [PATCH v2 1/5] libavfilter/x86/vf_gblur: add ff_postscale_slice_avx512()

2021-08-28 Thread qs xw
Paul B Mahol Wrote: > will apply shortly Hi there, May I know when this patches will be applied? Thanks, Jianhua ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link abov

[FFmpeg-devel] [PATCH] avformat/dv: Set AVFMTCTX_NOHEADER flag

2021-08-28 Thread Andreas Rheinhardt
Audio streams are only added when a packet is read. Signed-off-by: Andreas Rheinhardt --- The mov demuxer is different from all the other users of DV: It does not use its main AVFormatContext for this, but a separate one. Therefore the new audio streams are not added to the mov context and so it

Re: [FFmpeg-devel] [PATCH 1/2] avcodec/mjpegdec: Check for bits left in mjpeg_decode_scan_progressive_ac()

2021-08-28 Thread Michael Niedermayer
On Sun, Aug 22, 2021 at 11:55:57PM +0200, Michael Niedermayer wrote: > Fixes: Timeout > Fixes: > 36262/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_JPEGLS_fuzzer-4969052454912000 > > Found-by: continuous fuzzing process > https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg > Sign

[FFmpeg-devel] [PATCH 2/2] avcodec/mlpdec: add flush support

2021-08-28 Thread Paul B Mahol
Fixes spurious lossless check failures when seeking. Signed-off-by: Paul B Mahol --- libavcodec/mlpdec.c | 14 ++ 1 file changed, 14 insertions(+) diff --git a/libavcodec/mlpdec.c b/libavcodec/mlpdec.c index f4c7c6c320..08db5dc63c 100644 --- a/libavcodec/mlpdec.c +++ b/libavcodec/ml

Re: [FFmpeg-devel] [PATCH] avfilter: add adecorrelate filter

2021-08-28 Thread Paul B Mahol
will apply shortly ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-devel] [PATCH] avfilter: add atilt filter

2021-08-28 Thread Paul B Mahol
will apply shortly ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

[FFmpeg-devel] [PATCH 1/2] avcodec/mlpdec: reset lossless crc checking when stream ends

2021-08-28 Thread Paul B Mahol
Fixes invalid reports of bad lossless crc. While here make end of stream message into debug level as it is not really important to user. Also wait for new major sync frame as invalid concating of files may produce invalid files, which cause various errors. Signed-off-by: Paul B Mahol --- libavco

Re: [FFmpeg-devel] [PATCH v2 1/1] avcodec/wmalosslessdec: return value check for init_get_bits

2021-08-28 Thread Paul B Mahol
On Fri, Aug 27, 2021 at 8:50 AM maryam ebrahimzadeh wrote: > Similar to CVE-2021-38171 as the second argument for init_get_bits(avpkt > and bu$ > a return value check for this function call is necessary. > Also replace init_get_bits with init_get_bits8. > > --- > libavcodec/wmalosslessdec.c | 9

Re: [FFmpeg-devel] [PATCH v2 1/1] avcodec/wmaprodec: return value check for init_get_bits

2021-08-28 Thread Paul B Mahol
applied with minor changes ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-devel] [PATCH 1/1] avfilter: Implement gray world color correction Uses log LAB colorspace

2021-08-28 Thread Paul B Mahol
On Fri, Aug 27, 2021 at 11:18 AM Paul Buxton wrote: > Signed-off-by: Paul Buxton > --- > doc/filters.texi | 12 ++ > libavfilter/Makefile | 1 + > libavfilter/allfilters.c | 1 + > libavfilter/version.h | 2 +- > libavfilter/vf_grayworld.c | 362 +++

[FFmpeg-devel] [PATCH] avutil/frame: fix av_frame_get_buffer's doc

2021-08-28 Thread liudingming
av_frame_get_buffer can be used with channels set. Signed-off-by: liudingming --- libavutil/frame.h | 13 ++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/libavutil/frame.h b/libavutil/frame.h index ff2540a20f..40523aff71 100644 --- a/libavutil/frame.h +++ b/libavutil

[FFmpeg-devel] [PATCH] doc/examples/transcoding: fix wrong time base

2021-08-28 Thread liudingming
Signed-off-by: liudingming --- doc/examples/transcoding.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/examples/transcoding.c b/doc/examples/transcoding.c index 3a97426e2c..ea6ffefc70 100644 --- a/doc/examples/transcoding.c +++ b/doc/examples/transcoding.c @@ -171,7 +17

Re: [FFmpeg-devel] [PATCH v2 1/1] avcodec/wmaprodec: return value check for init_get_bits

2021-08-28 Thread Maryam Ebrahimzadeh
On Aug 28, 2021, at 9:54 PM, Paul B Mahol mailto:one...@gmail.com>> wrote: applied with minor changes Thank you. Why you change the commit message? Regards, Maryam ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/li

[FFmpeg-devel] [PATCH v3 1/1] avcodec/wmalosslessdec: Return value check for init_get_bits

2021-08-28 Thread maryam ebrahimzadeh
avcodec/wmalosslessdec: Return value check for init_get_bits Similar to CVE-2021-38171 as the second argument for init_get_bits(avpkt and buf) can be crafted, a return value check for this function call is necessary. Also replace init_get_bits with init_get_bits8. --- libavcodec/wmalosslessdec

Re: [FFmpeg-devel] [PATCH v3 1/1] avcodec/wmalosslessdec: Return value check for init_get_bits

2021-08-28 Thread Paul B Mahol
It is not that trivial, that breaks fate and normal decoding, otherwise would be already applied. ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-dev

Re: [FFmpeg-devel] [PATCH v2 1/1] avcodec/wmaprodec: return value check for init_get_bits

2021-08-28 Thread Paul B Mahol
On Sat, Aug 28, 2021 at 9:07 PM Maryam Ebrahimzadeh wrote: > > > On Aug 28, 2021, at 9:54 PM, Paul B Mahol one...@gmail.com>> wrote: > > applied with minor changes > > Thank you. > Why you change the commit message? > I do not think that listing CVE entries is useful. > > Regards, > Maryam >

[FFmpeg-devel] [PATCH] avfilter/vf_scale: set the RGB matrix coefficients in case of RGB

2021-08-28 Thread Jan Ekström
This fixes the passing through of non-RGB matrix from input to output when conversion from YCbCr to RGB happens. --- libavfilter/vf_scale.c | 17 ++--- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/libavfilter/vf_scale.c b/libavfilter/vf_scale.c index 7ca833bbb1..17668

Re: [FFmpeg-devel] [PATCH v3 1/1] avcodec/wmalosslessdec: Return value check for init_get_bits

2021-08-28 Thread Maryam Ebrahimzadeh
Why and where it is breaking normal decoding? ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".