[FFmpeg-devel] [PATCH 2/2] avcodec/jni: make global variables static

2023-09-16 Thread Zhao Zhili
From: Zhao Zhili Signed-off-by: Zhao Zhili --- libavcodec/jni.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/jni.c b/libavcodec/jni.c index 85dcf2abaf..ae6490de9d 100644 --- a/libavcodec/jni.c +++ b/libavcodec/jni.c @@ -34,8 +34,8 @@ #include "libavutil/lo

[FFmpeg-devel] [PATCH 1/2] avdevice/android_camera: fix missing include for usleep

2023-09-16 Thread Zhao Zhili
From: Zhao Zhili Signed-off-by: Zhao Zhili --- libavdevice/android_camera.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavdevice/android_camera.c b/libavdevice/android_camera.c index 1934999c18..0425b27518 100644 --- a/libavdevice/android_camera.c +++ b/libavdevice/android_camera.c @

[FFmpeg-devel] [PATCH 2/2] avcodec/h264dec: Check early whether film grain is supported, fix race

2023-09-16 Thread Andreas Rheinhardt
Applying film grain happens after ff_thread_finish_setup(), so the parameters synced in ff_h264_update_thread_context() must not be modified. But this is exactly what happens if applying film grain fails. (The likely result is that in case of frame threading an uninitialized frame is output.) Fail

[FFmpeg-devel] [PATCH 1/2] avcodec/hevcdec: Check early whether film grain is supported, fix race

2023-09-16 Thread Andreas Rheinhardt
Applying film grain happens after ff_thread_finish_setup(), so the parameters synced in hevc_update_thread_context() must not be modified. But this is exactly what happens in case applying film grain fails. (The likely result is that in case of frame threading an uninitialized frame is output.) Gi

Re: [FFmpeg-devel] [PATCH 4/6] avcodec/vp3: Fix undefined pointer arithmetic

2023-09-16 Thread Andreas Rheinhardt
Andreas Rheinhardt: > When decoding a keyframe, last_frame and golden_frame are > not used at all and (at least when starting decoding) > are not set at all. But due to code sharing pointer arithmetic > on the NULL data-pointers of these frames has nevertheless > been performed. This is undefined b

Re: [FFmpeg-devel] [PATCH 1/4] lavc/aarch64: new optimization for 8-bit hevc_epel_uni_v

2023-09-16 Thread Martin Storsjö
On Thu, 14 Sep 2023, Logan.Lyu wrote: Hi Martin, You can try the attached patchset. If that doesn't work, My code branch address is https://github.com/myais2023/FFmpeg/tree/hevc-aarch64 Thanks for the patches. Functionally, they seem to work, and the issues i saw in the code are relatively

Re: [FFmpeg-devel] [PATCH] avformat/libssh: avoid deprecated functions

2023-09-16 Thread Leo Izen
On 9/13/23 06:40, Leo Izen wrote: Avoid using the deprecated functions ssh_try_publickey_from_file among others in favor of symbols introduced in libssh 0.6.0 (Jan 2014) and update configure to require this version. Signed-off-by: Leo Izen --- configure| 2 +- libavformat/libssh

Re: [FFmpeg-devel] [PATCH 1/3] avformat/hls: reduce default max reload to 3

2023-09-16 Thread Michael Niedermayer
On Mon, May 15, 2023 at 02:05:45AM +0200, Michael Niedermayer wrote: > The 1000 did result in the appearance of a never ending reload loop > > The RFC mandates that "If the client reloads a Playlist file and finds that > it has not > changed, then it MUST wait for a period of one-half the target

Re: [FFmpeg-devel] [PATCH 1/2] avformat/format: Stop reading data at EOF during probing

2023-09-16 Thread Michael Niedermayer
On Wed, May 10, 2023 at 11:58:31PM +0200, Michael Niedermayer wrote: > Issue found by: Сергей Колесников > Signed-off-by: Michael Niedermayer > --- > libavformat/format.c | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) will apply [...] -- Michael GnuPG fingerprint: 9FF2128B147EF

Re: [FFmpeg-devel] [FFmpeg-cvslog] avcodec/utvideodec: add vlc multi support

2023-09-16 Thread Michael Niedermayer
On Fri, Sep 15, 2023 at 01:24:39AM +0200, Paul B Mahol wrote: > On Fri, Sep 15, 2023 at 12:19 AM Michael Niedermayer > wrote: > > > On Wed, Sep 06, 2023 at 10:19:29PM +, Christophe Gisquet wrote: > > > ffmpeg | branch: master | Christophe Gisquet < > > christophe.gisq...@gmail.com> | Sun Jul

Re: [FFmpeg-devel] [PATCH 1/5] avcodec/thread: Remove outdated documentation

2023-09-16 Thread Andreas Rheinhardt
Andreas Rheinhardt: > Signed-off-by: Andreas Rheinhardt > --- > libavcodec/thread.h | 7 +-- > 1 file changed, 1 insertion(+), 6 deletions(-) > > diff --git a/libavcodec/thread.h b/libavcodec/thread.h > index 2c8c0cdb16..180e1137ae 100644 > --- a/libavcodec/thread.h > +++ b/libavcodec/thread

Re: [FFmpeg-devel] [PATCH] avfilter/x86/af_afir: add FMA3 SIMD

2023-09-16 Thread Paul B Mahol
Will apply soon. ___ 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] avcodec/lagarith: use VLC for probe code length

2023-09-16 Thread Paul B Mahol
Will apply soon. ___ 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] avformat: add CRI USM demuxer

2023-09-16 Thread Paul B Mahol
Will push soon. ___ 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] avcodec/dnxhddec: Use VLC symbol table to avoid lookup

2023-09-16 Thread Paul B Mahol
LGTM ___ 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".