[FFmpeg-devel] [PATCH] lavc/{av1, h264, h265}_metadata_bsf: fix description of tick_rate

2021-08-27 Thread Zhao Zhili
Users may take the description literally which leads to inverted results. --- doc/bitstream_filters.texi | 8 libavcodec/av1_metadata_bsf.c | 2 +- libavcodec/h264_metadata_bsf.c | 2 +- libavcodec/h265_metadata_bsf.c | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --g

Re: [FFmpeg-devel] [PATCH 3/3] lavfi/formats: document the negotiation process

2021-08-27 Thread Nicolas George
Soft Works (12021-08-27): > I finally came to review your proposed changes as documented in this > patch and I also watched your presentation: This patch does not propose changes, except minor optimizations. -- A Nicolas ___ ffmpeg-devel mailing li

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

2021-08-27 Thread Paul Buxton
Signed-off-by: Paul Buxton --- doc/filters.texi | 12 ++ libavfilter/Makefile | 1 + libavfilter/allfilters.c | 1 + libavfilter/version.h | 2 +- libavfilter/vf_grayworld.c | 361 + 5 files changed, 376 insertions(+), 1 deletion(-

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

2021-08-27 Thread Paul B Mahol
On Fri, Aug 27, 2021 at 10:06 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 | 361 +++

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

2021-08-27 Thread Paul Buxton
I will get there eventually! On Fri, Aug 27, 2021 at 9:06 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_grayworl

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

2021-08-27 Thread Andreas Rheinhardt
Paul Buxton: > Signed-off-by: Paul Buxton > --- > doc/filters.texi | 12 ++ > libavfilter/Makefile | 1 + > libavfilter/allfilters.c | 1 + > libavfilter/version.h | 2 +- > libavfilter/vf_grayworld.c | 361 + > 5 files changed, 37

Re: [FFmpeg-devel] [PATCH 1/2] avformat/mxf: rename sub_descriptors as file_descriptors

2021-08-27 Thread Tomas Härdin
tis 2021-08-24 klockan 13:18 +0200 skrev Marc-Antoine Arnaud: ---  libavformat/mxfdec.c | 24  1 file changed, 12 insertions(+), 12 deletions(-) Fine by me /Tomas ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffm

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

2021-08-27 Thread Paul Buxton
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 + 5 files changed, 377 insertions(+), 1 deletion(-

Re: [FFmpeg-devel] [PATCH 2/2] avformat/mxf: support MCA audio information

2021-08-27 Thread Tomas Härdin
tis 2021-08-24 klockan 13:18 +0200 skrev Marc-Antoine Arnaud: ---  libavformat/mxf.h    |   1 +  libavformat/mxfdec.c | 283 ++-  2 files changed, 278 insertions(+), 6 deletions(-) diff --git a/libavformat/mxf.h b/libavformat/mxf.h index fe9c52732c..cddbcb13c

Re: [FFmpeg-devel] [PATCH 4/8] avformat/oggparsevorbis: Factor parsing a single VorbisComment out

2021-08-27 Thread Andreas Rheinhardt
Andreas Rheinhardt: > This is in preparation for further commits. > > Signed-off-by: Andreas Rheinhardt > --- > libavformat/oggparsevorbis.c | 142 ++- > 1 file changed, 75 insertions(+), 67 deletions(-) > > diff --git a/libavformat/oggparsevorbis.c b/libavformat

[FFmpeg-devel] [PATCH 1/1 v5] avfilter: Implement color correction using gray world algorithm

2021-08-27 Thread Paul Buxton
Updated with more input from Paul and Andreas Paul Buxton (1): avfilter: Implement gray world color correction Uses log LAB colorspace doc/filters.texi | 12 ++ libavfilter/Makefile | 1 + libavfilter/allfilters.c | 1 + libavfilter/version.h | 2 +- libavfilt

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

2021-08-27 Thread Paul Buxton
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 + 5 files changed, 377 insertions(+), 1 deletion(-

[FFmpeg-devel] What parameters are people using for git-send email

2021-08-27 Thread Paul Buxton
Hi, I am using git-prepare patch and send-email to send my patches, but don't seem to get the subject line correct. It seems to ignore the subject line I pass in except for if I use the cover letter option with prepare patch, but only applies it to the cover letter. Thanks, Paul __

[FFmpeg-devel] [PATCH v1] avcodec/av1dec: check if hwaccel is specificed

2021-08-27 Thread Fei Wang
Since av1 decoder is only available for hw acceleration. This will gives out more accurate information if this decoder used but doesn't specificed a hwaccel. For example: ffmpeg -c:v av1 -i INPUT OUTPUT Signed-off-by: Fei Wang --- 1. This is improvement of patch for: https://patchwork.ffmpeg.org

[FFmpeg-devel] [PATCH 01/25] avformat/matroskadec: Fix heap-buffer overflow upon gigantic timestamps

2021-08-27 Thread Andreas Rheinhardt
The WebM DASH Manifest demuxer creates a comma-delimited list of all the timestamps of index entries. It allocates 20 bytes per timestamp; yet the largest 64bit numbers have 20 decimal digits (for int64_t it can be '-'+ 19 digits), so that one needs 21B per entry because of the comma (resp. the fin

[FFmpeg-devel] [PATCH 02/25] avcodec/tiff_common: Fix AVBPrint error checks

2021-08-27 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavcodec/tiff_common.c | 76 +++- 1 file changed, 21 insertions(+), 55 deletions(-) diff --git a/libavcodec/tiff_common.c b/libavcodec/tiff_common.c index b3c6b96b57..2b872ea7e2 100644 --- a/libavcodec/tiff_common.c +++

[FFmpeg-devel] [PATCH 03/25] avformat/yuv4mpegdec: Don't call avio_tell() twice

2021-08-27 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavformat/yuv4mpegdec.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/libavformat/yuv4mpegdec.c b/libavformat/yuv4mpegdec.c index c327aa9d3f..69dd8a3165 100644 --- a/libavformat/yuv4mpegdec.c +++ b/libavformat/yuv4mpegdec.c @@ -44

[FFmpeg-devel] [PATCH 04/25] avfilter/graphdump: Properly initialize AVBPrint

2021-08-27 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/graphdump.c | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/libavfilter/graphdump.c b/libavfilter/graphdump.c index 79ef1a733f..22b2e21559 100644 --- a/libavfilter/graphdump.c +++ b/libavfilter/graphdump.c @@ -31,10 +31,1

[FFmpeg-devel] [PATCH 05/25] avfilter/graphdump: Don't silently truncate channel layout string

2021-08-27 Thread Andreas Rheinhardt
64B are not enough any more. Signed-off-by: Andreas Rheinhardt --- libavfilter/graphdump.c | 9 - 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/libavfilter/graphdump.c b/libavfilter/graphdump.c index 22b2e21559..cf3296550c 100644 --- a/libavfilter/graphdump.c +++ b/libavf

[FFmpeg-devel] [PATCH 06/25] avfilter/graphdump: Don't return truncated string

2021-08-27 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/graphdump.c | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/libavfilter/graphdump.c b/libavfilter/graphdump.c index cf3296550c..099125bea8 100644 --- a/libavfilter/graphdump.c +++ b/libavfilter/graphdump.c @@ -159,8 +159,

[FFmpeg-devel] [PATCH 15/25] avformat/utils: Don't compare pointers when sorting chapters

2021-08-27 Thread Andreas Rheinhardt
The chapters are independently allocated, so that comparing the pointers is undefined behaviour. Furthermore, its result is not platform-independent (and may not even be deterministic on a particular platform). So compare the chapters' ids instead. (avpriv_new_chapter() ensures that there are no du

[FFmpeg-devel] [PATCH 08/25] avformat/utils: Remove always-false check

2021-08-27 Thread Andreas Rheinhardt
AVFormatContext.internal is already allocated by avformat_alloc_context() on success; and on error, avformat_alloc_context() cleans up manually without avformat_free_context(). Signed-off-by: Andreas Rheinhardt --- libavformat/utils.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/libavfor

[FFmpeg-devel] [PATCH 07/25] avfilter/graphdump: Use pointer to const for pointer to static strings

2021-08-27 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavfilter/graphdump.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/graphdump.c b/libavfilter/graphdump.c index 099125bea8..cf8914b558 100644 --- a/libavfilter/graphdump.c +++ b/libavfilter/graphdump.c @@ -29,7 +29,7 @@

[FFmpeg-devel] [PATCH 16/25] avformat/utils: Don't allocate zero-sized array

2021-08-27 Thread Andreas Rheinhardt
It is unnecessary and also ill-defined: av_malloc() returns a 1-byte block of memory in this case, but this is not documented. Signed-off-by: Andreas Rheinhardt --- libavformat/utils.c | 10 +++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/libavformat/utils.c b/libavforma

[FFmpeg-devel] [PATCH 09/25] avformat/utils: Remove obsolete todo

2021-08-27 Thread Andreas Rheinhardt
Also initialize the AVCodecContexts directly. Signed-off-by: Andreas Rheinhardt --- libavformat/utils.c | 8 ++-- 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/libavformat/utils.c b/libavformat/utils.c index 7d7fd16257..ad8e26d3a3 100644 --- a/libavformat/utils.c +++ b/libavf

[FFmpeg-devel] [PATCH 10/25] avformat/utils: Make ff_compute_frame_duration() static

2021-08-27 Thread Andreas Rheinhardt
Since 1c0885334dda9ee8652e60c586fa2e3674056586 ff_compute_frame_duration is only called from within utils.c and only for demuxers. So make it static and remove the code in it that deals with muxers. Signed-off-by: Andreas Rheinhardt --- libavformat/internal.h | 6 -- libavformat/utils.c

[FFmpeg-devel] [PATCH 11/25] avformat/mux: Don't access AVStream's internal AVCodecContext

2021-08-27 Thread Andreas Rheinhardt
An AVStream's internal AVCodecContext is pretty much unused for muxing: The only place where any of its fields are set is avformat_transfer_internal_stream_timing_info() where its time base is set based upon the desired output format. The max_b_frames field is never set at all, so don't read it in

[FFmpeg-devel] [PATCH 17/25] avformat/utils: Use av_memdup to duplicate array of AVChapter *

2021-08-27 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavformat/utils.c | 5 + 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/libavformat/utils.c b/libavformat/utils.c index b3ff9e95eb..b56190d2da 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -3176,12 +3176,9 @@ static int com

[FFmpeg-devel] [PATCH 12/25] avformat/utils: Remove redundant flushing of packet queue

2021-08-27 Thread Andreas Rheinhardt
The packet queue is already flushed in avformat_free_context() which is called a few lines below. Signed-off-by: Andreas Rheinhardt --- libavformat/utils.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/libavformat/utils.c b/libavformat/utils.c index 67a1d158b4..79fa9382cf 100644 --- a/lib

[FFmpeg-devel] [PATCH 14/25] avformat/utils: Only allocate FFStream.info for input streams

2021-08-27 Thread Andreas Rheinhardt
This structure is only used for demuxers (mostly in avformat_find_stream_info()), so only allocate it for them. Signed-off-by: Andreas Rheinhardt --- Yes, when demuxing this structure was freed in avformat_find_stream_info(), but for muxers it was always kept. libavformat/utils.c | 20 +

[FFmpeg-devel] [PATCH 13/25] avformat/utils: Don't initialize AVStreamInternal.info multiple times

2021-08-27 Thread Andreas Rheinhardt
It has been allocated and initialized in avformat_find_stream_info() until fd0368e7ca35e2feaf7960564e61a76655c4d1f6 when the structure was moved to AVStreamInternal and its allocation to avformat_new_stream. In order to also initialize the struct for new streams that only get created during avforma

[FFmpeg-devel] [PATCH 18/25] avformat/mux, utils: Use smaller scope for variables

2021-08-27 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavformat/mux.c | 60 -- libavformat/utils.c | 284 +++- 2 files changed, 148 insertions(+), 196 deletions(-) diff --git a/libavformat/mux.c b/libavformat/mux.c index b1ad0dd561..a05deb3f0b 100644 --- a/li

[FFmpeg-devel] [PATCH 19/25] avformat/mux, mxfenc, utils: Use dedicated pointer for AVFormatInternal

2021-08-27 Thread Andreas Rheinhardt
This gets rid of ugly "->internal" and is in preparation for removing AVFormatInternal altogether. Signed-off-by: Andreas Rheinhardt --- libavformat/mux.c| 80 +- libavformat/mxfenc.c | 15 ++--- libavformat/utils.c | 133 ---

[FFmpeg-devel] [PATCH 20/25] avformat: Avoid allocation for AVFormatInternal

2021-08-27 Thread Andreas Rheinhardt
Do this by allocating AVFormatContext together with the data that is currently in AVFormatInternal; or rather: Put AVFormatContext at the beginning of a new structure called FFFormatContext (which encompasses more than just the internal fields and is a proper context in its own right, hence the nam

[FFmpeg-devel] [PATCH 21/25] avformat/mux, utils: Use dedicated pointer for AVStreamInternal

2021-08-27 Thread Andreas Rheinhardt
This gets rid of ugly "->internal" and is in preparation for removing AVStreamInternal altogether. Signed-off-by: Andreas Rheinhardt --- libavformat/mux.c | 94 ++--- libavformat/utils.c | 891 +++- 2 files changed, 521 insertions(+), 464 deletions(-)

[FFmpeg-devel] [PATCH 23/25] avformat/utils: Reindentation

2021-08-27 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavformat/utils.c | 20 ++-- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/libavformat/utils.c b/libavformat/utils.c index cedea97593..e86cdaa96f 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -4274,19 +4274,

[FFmpeg-devel] [PATCH 24/25] avformat/utils: Move seeking code out into a new file

2021-08-27 Thread Andreas Rheinhardt
libavformat/utils.c has over 5500 lines and is supposed to contain "various utility functions for use within FFmpeg". In reality it contains all that and the whole demuxing+seeking core of libavformat. This is especially bad, because said file includes the FFMPEG_VERSION (the git commit sha) so tha

Re: [FFmpeg-devel] [PATCH 15/25] avformat/utils: Don't compare pointers when sorting chapters

2021-08-27 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".

Re: [FFmpeg-devel] [PATCH 07/25] avfilter/graphdump: Use pointer to const for pointer to static strings

2021-08-27 Thread Nicolas George
Andreas Rheinhardt (12021-08-27): > Signed-off-by: Andreas Rheinhardt > --- > libavfilter/graphdump.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) No objection to all four patches. Regards, -- Nicolas George signature.asc Description: PGP signature _

Re: [FFmpeg-devel] [PATCH 20/25] avformat: Avoid allocation for AVFormatInternal

2021-08-27 Thread James Almer
On 8/27/2021 11:27 AM, Andreas Rheinhardt wrote: diff --git a/libavformat/internal.h b/libavformat/internal.h index 4fc1154b9d..813032870f 100644 --- a/libavformat/internal.h +++ b/libavformat/internal.h @@ -69,7 +69,12 @@ typedef struct FFFrac { } FFFrac; -struct AVFormatInternal { +typ

Re: [FFmpeg-devel] [PATCH v1] avcodec/av1dec: check if hwaccel is specificed

2021-08-27 Thread Soft Works
> -Original Message- > From: ffmpeg-devel On Behalf Of Fei > Wang > Sent: Friday, 27 August 2021 13:54 > To: ffmpeg-devel@ffmpeg.org > Cc: Fei Wang > Subject: [FFmpeg-devel] [PATCH v1] avcodec/av1dec: check if hwaccel > is specificed > > Since av1 decoder is only available for hw acce

Re: [FFmpeg-devel] [PATCH v1] avcodec/av1dec: check if hwaccel is specificed

2021-08-27 Thread Hendrik Leppkes
On Fri, Aug 27, 2021 at 1:54 PM Fei Wang wrote: > > Since av1 decoder is only available for hw acceleration. This will > gives out more accurate information if this decoder used but doesn't > specificed a hwaccel. > > For example: > ffmpeg -c:v av1 -i INPUT OUTPUT > > Signed-off-by: Fei Wang > --

Re: [FFmpeg-devel] [PATCH 3/3] lavfi/formats: document the negotiation process

2021-08-27 Thread Soft Works
> -Original Message- > From: ffmpeg-devel On Behalf Of > Nicolas George > Sent: Friday, 27 August 2021 09:27 > To: FFmpeg development discussions and patches de...@ffmpeg.org> > Subject: Re: [FFmpeg-devel] [PATCH 3/3] lavfi/formats: document the > negotiation process > > Soft Works (1

Re: [FFmpeg-devel] [PATCH v1 0/2] libavformat/protocols.c: avio_enum_protocols(): Cleanup

2021-08-27 Thread Michael Witten
Michael Witten (1 week ago): > This series improves the following function: > > libavformat/protocols.c: avio_enum_protocols() > > There are only 2 commits: > > [1] Quash warning about const-correctness > [2] Refactoring > > This series is a revision of a previous series;

[FFmpeg-devel] [PATCH] avforma: add an AV1 Low overhead bitstream format muxer

2021-08-27 Thread James Almer
Suggested-by: BBB Signed-off-by: James Almer --- Changelog | 1 + configure | 1 + doc/general_contents.texi | 1 + libavformat/Makefile | 1 + libavformat/allformats.c | 1 + libavformat/rawenc.c | 20 libavformat/version.h

Re: [FFmpeg-devel] [PATCH 1/3] Revert "fftools/ffmpeg_filter: fix the flags parsing for scaler"

2021-08-27 Thread Michael Niedermayer
On Sat, Aug 07, 2021 at 09:33:27PM +0200, Michael Niedermayer wrote: > On Sat, Aug 07, 2021 at 06:15:05PM +0800, Linjie Fu wrote: > > From: Linjie Fu > > > > This reverts commit b3a0548a981db52911dd34d9de254c4fee0a8f79. > > LGTM please apply this unless you intend to fix it in another way thx

Re: [FFmpeg-devel] [PATCH 2/2] avcodec/wma: handle run_level_decode error

2021-08-27 Thread Michael Niedermayer
On Thu, Aug 26, 2021 at 10:11:40AM -0400, Olivier Crête wrote: > On Thu, 2021-08-26 at 12:33 +0200, Michael Niedermayer wrote: > > On Tue, Aug 24, 2021 at 09:43:43AM -0400, Olivier Crête wrote: > > > From: Stéphane Cerveau > > > > > > Consider data as invalid if ff_wma_run_level_decode > > > gets

Re: [FFmpeg-devel] [PATCH] avfilter/vf_scale: reset color matrix in case of identity & non-RGB

2021-08-27 Thread Michael Niedermayer
On Fri, Aug 27, 2021 at 01:02:31AM +0300, Jan Ekström wrote: > On Sun, Aug 22, 2021 at 11:55 PM Jan Ekström wrote: > > > > Fixes passing through mismatching metadata from the input side > > when RGB input (from f.ex. H.264 or HEVC) gets converted to YCbCr. > > > > Fixes #9132 > > --- > > libavfil

Re: [FFmpeg-devel] [PATCH] avfilter/vf_scale: reset color matrix in case of identity & non-RGB

2021-08-27 Thread Jan Ekström
On Sat, Aug 28, 2021 at 12:03 AM Michael Niedermayer wrote: > > On Fri, Aug 27, 2021 at 01:02:31AM +0300, Jan Ekström wrote: > > On Sun, Aug 22, 2021 at 11:55 PM Jan Ekström wrote: > > > > > > Fixes passing through mismatching metadata from the input side > > > when RGB input (from f.ex. H.264 or

Re: [FFmpeg-devel] [PATCH v1] lavfi: add nlmeans CUDA filter

2021-08-27 Thread Timo Rothenpieler
There still are some issues in the C side of this filter: You're allocating a lot of stuff on init (integral_img, ...) but never free it. So the filter leaks those. You define a list of supported formats at the top, listing practically all formats that can be in a CUDA frame as of right now.

[FFmpeg-devel] [PATCH 2/2] avcodec/mlpdec: make end of stream message into debug level

2021-08-27 Thread Paul B Mahol
Not really important to user. Signed-off-by: Paul B Mahol --- libavcodec/mlpdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/mlpdec.c b/libavcodec/mlpdec.c index f0012cbb05..d8b347ce1e 100644 --- a/libavcodec/mlpdec.c +++ b/libavcodec/mlpdec.c @@ -1288,7 +1288

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

2021-08-27 Thread Paul B Mahol
Fixes invalid reports of bad lossless crc. Signed-off-by: Paul B Mahol --- libavcodec/mlpdec.c | 8 +++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/libavcodec/mlpdec.c b/libavcodec/mlpdec.c index e4992550ee..f0012cbb05 100644 --- a/libavcodec/mlpdec.c +++ b/libavcodec/mlpde

Re: [FFmpeg-devel] [PATCH v5 1/6] lavfi/dnn: Task-based Inference in Native Backend

2021-08-27 Thread Guo, Yejun
> -Original Message- > From: ffmpeg-devel On Behalf Of > Shubhanshu Saxena > Sent: 2021年8月26日 5:08 > To: ffmpeg-devel@ffmpeg.org > Cc: Shubhanshu Saxena > Subject: [FFmpeg-devel] [PATCH v5 1/6] lavfi/dnn: Task-based Inference in > Native Backend > > This commit rearranges the code in N

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

2021-08-27 Thread Maryam Ebrahimzadeh
ping. ___ 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".