[FFmpeg-devel] [PATCH v2 4/5] avcodec/bitpacked_dec: support for frame thread decode

2021-12-01 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavcodec/bitpacked_dec.c | 9 ++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/libavcodec/bitpacked_dec.c b/libavcodec/bitpacked_dec.c index a2edccc..90e5bcc 100644 --- a/libavcodec/bitpacked_dec.c +++

[FFmpeg-devel] [PATCH 5/5] avcodec/bitpacked_enc: suppport for frame thread encode

2021-12-01 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- multi-thread is active, but I'm not sure why the performance isn't getting better. libavcodec/bitpacked_enc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/bitpacked_enc.c b/libavcodec/bitpacked_enc.c index

[FFmpeg-devel] [PATCH 4/5] avcodec/bitpacked_dec: support for frame thread decode

2021-12-01 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavcodec/bitpacked_dec.c | 9 ++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/libavcodec/bitpacked_dec.c b/libavcodec/bitpacked_dec.c index a2edccc..90e5bcc 100644 --- a/libavcodec/bitpacked_dec.c +++

[FFmpeg-devel] [PATCH 3/5] avcodec/bitpacked_dec: setting pict_type and key_frame after decode()

2021-12-01 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavcodec/bitpacked_dec.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libavcodec/bitpacked_dec.c b/libavcodec/bitpacked_dec.c index c1cb6ac..a2edccc 100644 --- a/libavcodec/bitpacked_dec.c +++

[FFmpeg-devel] [PATCH 2/5] avcodec/bitpacked_dec: remove AV_CODEC_CAP_EXPERIMENTAL capabilities

2021-12-01 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavcodec/bitpacked_dec.c | 1 - 1 file changed, 1 deletion(-) diff --git a/libavcodec/bitpacked_dec.c b/libavcodec/bitpacked_dec.c index 0440df9..c1cb6ac 100644 --- a/libavcodec/bitpacked_dec.c +++ b/libavcodec/bitpacked_dec.c @@ -149,7 +149,6

[FFmpeg-devel] [PATCH 1/5] avformat/rtsp: make use of avio_get_str() to load the sdp

2021-12-01 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavformat/rtsp.c | 30 -- 1 file changed, 20 insertions(+), 10 deletions(-) diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index e6a4993..ec8be8b 100644 --- a/libavformat/rtsp.c +++ b/libavformat/rtsp.c @@

Re: [FFmpeg-devel] [PATCH v2] avformat/rtp: add localaddr for network interface selection

2021-11-26 Thread lance . lmwang
On Fri, Nov 26, 2021 at 01:50:33PM +0200, Martin Storsjö wrote: > On Fri, 26 Nov 2021, lance.lmw...@gmail.com wrote: > > > From: Limin Wang > > > > Reviewed-by: Martin Storsjö > > Technically, I haven't reviewed this version yet - including such a header > would indicate that I have approvd

[FFmpeg-devel] [PATCH v3] avfilter/src_movie: add format_opts for the opened file

2021-11-26 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- doc/filters.texi| 9 + libavfilter/src_movie.c | 4 +++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/doc/filters.texi b/doc/filters.texi index 3731a14..3b70aca 100644 --- a/doc/filters.texi +++ b/doc/filters.texi

[FFmpeg-devel] [PATCH v2] avformat/rtp: add localaddr for network interface selection

2021-11-26 Thread lance . lmwang
From: Limin Wang Reviewed-by: Martin Storsjö Signed-off-by: Limin Wang --- support for both sdp and rtp for v2: 1, -localaddr xx.xx.xx.xx -i 1.sdp 2, -localaddr xx.xx.xx.xx -i rtp://xx.xx.xx.xx:xx 3, -i rtp://xx.xx.xx.xx:xx?localadd xx.xx.xx.xx doc/protocols.texi | 4

Re: [FFmpeg-devel] [PATCH 2/2] avformat/udp: remove local localaddr array

2021-11-26 Thread lance . lmwang
On Fri, Nov 26, 2021 at 11:26:39AM +0100, Andreas Rheinhardt wrote: > lance.lmw...@gmail.com: > > From: Limin Wang > > > > Signed-off-by: Limin Wang > > --- > > libavformat/udp.c | 10 -- > > 1 file changed, 4 insertions(+), 6 deletions(-) > > > > diff --git a/libavformat/udp.c

Re: [FFmpeg-devel] [PATCH v2] avfilter/src_movie: add format_opts for the opened file

2021-11-26 Thread lance . lmwang
On Fri, Nov 26, 2021 at 10:48:07AM +0100, Paul B Mahol wrote: > On Fri, Nov 26, 2021 at 10:38 AM wrote: > > > From: Limin Wang > > > > Signed-off-by: Limin Wang > > --- > > doc/filters.texi| 5 + > > libavfilter/src_movie.c | 4 +++- > > 2 files changed, 8 insertions(+), 1

[FFmpeg-devel] [PATCH v2] avfilter/src_movie: add format_opts for the opened file

2021-11-26 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- doc/filters.texi| 5 + libavfilter/src_movie.c | 4 +++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/doc/filters.texi b/doc/filters.texi index 3731a14..f2d5957 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@

Re: [FFmpeg-devel] [PATCH 1/2] avfilter/src_movie: add format_opts for the opened file

2021-11-26 Thread lance . lmwang
On Fri, Nov 26, 2021 at 07:36:33AM +0100, Andreas Rheinhardt wrote: > lance.lmw...@gmail.com: > > From: Limin Wang > > > > Signed-off-by: Limin Wang > > --- > > doc/filters.texi| 5 + > > libavfilter/src_movie.c | 8 +++- > > 2 files changed, 12 insertions(+), 1 deletion(-) > >

Re: [FFmpeg-devel] [PATCH 1/2] avformat/rtp: add localaddr for network interface selection

2021-11-25 Thread lance . lmwang
On Thu, Nov 25, 2021 at 10:09:17PM +0200, Martin Storsjö wrote: > On Thu, 25 Nov 2021, lance.lmw...@gmail.com wrote: > > > From: Limin Wang > > > > Signed-off-by: Limin Wang > > --- > > doc/protocols.texi | 4 > > libavformat/rtpproto.c | 17 ++--- > > libavformat/rtsp.c

Re: [FFmpeg-devel] [PATCH 1/2] avformat/rtp: add localaddr for network interface selection

2021-11-25 Thread lance . lmwang
On Thu, Nov 25, 2021 at 12:56:24PM +0200, Martin Storsjö wrote: > On Thu, 25 Nov 2021, lance.lmw...@gmail.com wrote: > > > From: Limin Wang > > > > Signed-off-by: Limin Wang > > --- > > doc/protocols.texi | 4 > > libavformat/rtpproto.c | 17 ++--- > > libavformat/rtsp.c

[FFmpeg-devel] [PATCH 2/2] avformat/udp: remove local localaddr array

2021-11-25 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavformat/udp.c | 10 -- 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/libavformat/udp.c b/libavformat/udp.c index bbe5aec..b8b0e19 100644 --- a/libavformat/udp.c +++ b/libavformat/udp.c @@ -623,7 +623,7 @@ end: /*

[FFmpeg-devel] [PATCH 1/2] avformat/rtp: add localaddr for network interface selection

2021-11-25 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- doc/protocols.texi | 4 libavformat/rtpproto.c | 17 ++--- libavformat/rtsp.c | 3 +++ libavformat/rtsp.h | 1 + 4 files changed, 22 insertions(+), 3 deletions(-) diff --git a/doc/protocols.texi

Re: [FFmpeg-devel] [PATCH v3 7/7] avformat/rtp: support for RGB/BGR for rfc4175

2021-11-25 Thread lance . lmwang
On Wed, Nov 24, 2021 at 04:49:18PM +0100, Lynne wrote: > 24 Nov 2021, 16:27 by lance.lmw...@gmail.com: > > > From: Limin Wang > > > > Signed-off-by: Limin Wang > > --- > > libavformat/rtpdec_rfc4175.c | 20 > > libavformat/rtpenc_rfc4175.c | 8 > >

Re: [FFmpeg-devel] [PATCH v3 5/7] avcodec: suppport for bitpacked encode

2021-11-24 Thread lance . lmwang
On Wed, Nov 24, 2021 at 10:20:34PM +0100, Michael Niedermayer wrote: > On Wed, Nov 24, 2021 at 11:27:43PM +0800, lance.lmw...@gmail.com wrote: > > From: Limin Wang > > > > Signed-off-by: Limin Wang > > --- > > Changelog | 1 + > > libavcodec/Makefile| 1 + > >

[FFmpeg-devel] [PATCH v3 7/7] avformat/rtp: support for RGB/BGR for rfc4175

2021-11-24 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavformat/rtpdec_rfc4175.c | 20 libavformat/rtpenc_rfc4175.c | 8 libavformat/sdp.c| 6 ++ 3 files changed, 34 insertions(+) diff --git a/libavformat/rtpdec_rfc4175.c

[FFmpeg-devel] [PATCH v3 6/7] avformat: suppport for 4:2:2 10-bit for rfc4175

2021-11-24 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavformat/rtpenc.c | 2 ++ libavformat/rtpenc_rfc4175.c | 4 libavformat/sdp.c| 5 + 3 files changed, 11 insertions(+) diff --git a/libavformat/rtpenc.c b/libavformat/rtpenc.c index 4f115cc..17f5d9d 100644 ---

[FFmpeg-devel] [PATCH v3 5/7] avcodec: suppport for bitpacked encode

2021-11-24 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- Changelog | 1 + libavcodec/Makefile| 1 + libavcodec/allcodecs.c | 1 + libavcodec/bitpacked_enc.c | 121 + libavcodec/version.h | 2 +- 5 files changed, 125

[FFmpeg-devel] [PATCH v3 4/7] avcodec: rename bitpacked.c to bitpacked_dec.c

2021-11-24 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavcodec/Makefile| 2 +- libavcodec/bitpacked.c | 158 - libavcodec/bitpacked_dec.c | 158 + 3 files changed, 159 insertions(+), 159

[FFmpeg-devel] [PATCH v3 3/7] avformat/rtpenc: adds partial support for the RFC 4175

2021-11-24 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- Changelog| 1 + libavformat/Makefile | 1 + libavformat/rtpenc.c | 4 ++ libavformat/rtpenc.h | 1 + libavformat/rtpenc_rfc4175.c | 116 +++

[FFmpeg-devel] [PATCH v3 2/7] avformat/rtpdec_rfc4175: support for yuv420p format

2021-11-24 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavformat/rtpdec_rfc4175.c | 11 +++ 1 file changed, 11 insertions(+) diff --git a/libavformat/rtpdec_rfc4175.c b/libavformat/rtpdec_rfc4175.c index f13736b..5a7058b 100644 --- a/libavformat/rtpdec_rfc4175.c +++

[FFmpeg-devel] [PATCH v3 1/7] avformat/rtpdec_rfc4175: use rawvideo for uyvy422

2021-11-24 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavformat/rtpdec_rfc4175.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libavformat/rtpdec_rfc4175.c b/libavformat/rtpdec_rfc4175.c index f50cad7..f13736b 100644 --- a/libavformat/rtpdec_rfc4175.c +++

Re: [FFmpeg-devel] [PATCH 01/11] avformat/rtpdec_rfc4175: use rawvideo for uyvy422

2021-11-24 Thread lance . lmwang
On Wed, Nov 24, 2021 at 04:54:01AM +0100, Lynne wrote: > 23 Nov 2021, 23:33 by lance.lmw...@gmail.com: > > > On Fri, Nov 12, 2021 at 06:22:06PM +0800, lance.lmw...@gmail.com wrote: > > > >> From: Limin Wang > >> > >> Signed-off-by: Limin Wang > >> --- > >> libavformat/rtpdec_rfc4175.c | 4 +++-

Re: [FFmpeg-devel] [PATCH 01/11] avformat/rtpdec_rfc4175: use rawvideo for uyvy422

2021-11-23 Thread lance . lmwang
On Fri, Nov 12, 2021 at 06:22:06PM +0800, lance.lmw...@gmail.com wrote: > From: Limin Wang > > Signed-off-by: Limin Wang > --- > libavformat/rtpdec_rfc4175.c | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/libavformat/rtpdec_rfc4175.c b/libavformat/rtpdec_rfc4175.c

[FFmpeg-devel] [PATCH 2/2] avcodec/libaomenc: remove the redundant initialization

2021-11-22 Thread lance . lmwang
From: Limin Wang For dst->have_sse will be assigned by ctx->have_sse soon(code line 23). Signed-off-by: Limin Wang --- libavcodec/libaomenc.c | 1 - 1 file changed, 1 deletion(-) diff --git a/libavcodec/libaomenc.c b/libavcodec/libaomenc.c index 800fda0..963cc1b 100644 ---

[FFmpeg-devel] [PATCH 1/2] avfilter/src_movie: add format_opts for the opened file

2021-11-22 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- doc/filters.texi| 5 + libavfilter/src_movie.c | 8 +++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/doc/filters.texi b/doc/filters.texi index c3ccaf9..6c35788 100644 --- a/doc/filters.texi +++ b/doc/filters.texi

Re: [FFmpeg-devel] [PATCH] avformat/libsrt: add missing version check for snddropdelay

2021-11-19 Thread lance . lmwang
On Fri, Nov 19, 2021 at 09:29:01PM +0100, Marton Balint wrote: > Signed-off-by: Marton Balint > --- > libavformat/libsrt.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/libavformat/libsrt.c b/libavformat/libsrt.c > index 145eea2f7c..19b9cb9895 100644 > --- a/libavformat/libsrt.c >

Re: [FFmpeg-devel] [PATCH 01/11] avformat/rtpdec_rfc4175: use rawvideo for uyvy422

2021-11-18 Thread lance . lmwang
On Fri, Nov 12, 2021 at 06:22:06PM +0800, lance.lmw...@gmail.com wrote: > From: Limin Wang > > Signed-off-by: Limin Wang > --- > libavformat/rtpdec_rfc4175.c | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/libavformat/rtpdec_rfc4175.c b/libavformat/rtpdec_rfc4175.c

[FFmpeg-devel] [PATCH] avfilter/vf_gblur_vulkan: make sure init_filter() returns zero on success

2021-11-18 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavfilter/vf_gblur_vulkan.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libavfilter/vf_gblur_vulkan.c b/libavfilter/vf_gblur_vulkan.c index 16c8bbb..8407bd1 100644 --- a/libavfilter/vf_gblur_vulkan.c +++

Re: [FFmpeg-devel] [PATCH] avfilter/vf_gblur_vulkan: Fix use of uninitialized value

2021-11-18 Thread lance . lmwang
On Thu, Nov 18, 2021 at 05:30:50AM +0100, Andreas Rheinhardt wrote: > lance.lmw...@gmail.com: > > From: Limin Wang > > > > Signed-off-by: Limin Wang > > --- > > libavfilter/vf_gblur_vulkan.c | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git

[FFmpeg-devel] [PATCH] avfilter/vf_gblur_vulkan: Fix use of uninitialized value

2021-11-16 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavfilter/vf_gblur_vulkan.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/vf_gblur_vulkan.c b/libavfilter/vf_gblur_vulkan.c index d4f391b..16c8bbb 100644 --- a/libavfilter/vf_gblur_vulkan.c +++

[FFmpeg-devel] [PATCH v2 08/12] avcodec: suppport for s210 encode

2021-11-16 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- Changelog | 1 + libavcodec/Makefile| 1 + libavcodec/allcodecs.c | 1 + libavcodec/s210enc.c | 90 ++ libavcodec/version.h | 2 +- 5 files changed, 94 insertions(+), 1

[FFmpeg-devel] [PATCH v2 05/12] avformat/rtpenc: adds partial support for the RFC 4175

2021-11-16 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- Changelog| 1 + libavformat/Makefile | 1 + libavformat/rtpenc.c | 4 ++ libavformat/rtpenc.h | 1 + libavformat/rtpenc_rfc4175.c | 116 +++ libavformat/sdp.c

[FFmpeg-devel] [PATCH v2 05/12] avformat/rtpenc: adds partial support for the RFC 4175

2021-11-16 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- Changelog| 1 + libavformat/Makefile | 1 + libavformat/rtpenc.c | 4 ++ libavformat/rtpenc.h | 1 + libavformat/rtpenc_rfc4175.c | 116 +++ libavformat/sdp.c

[FFmpeg-devel] [PATCH 10/11] avcodec/s210dec: support 4:2:2 10bit only and remove the EXPERIMENTAL capability

2021-11-12 Thread lance . lmwang
From: Limin Wang Don't need set the pix_fmt to YUV422P10 anymore. Signed-off-by: Limin Wang --- libavcodec/s210dec.c | 9 +++-- 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/libavcodec/s210dec.c b/libavcodec/s210dec.c index 7bc5dbc..a89546f 100644 ---

[FFmpeg-devel] [PATCH 09/11] avformat: suppport for 4:2:2 10-bit for rfc4175

2021-11-12 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavformat/rtpenc.c | 2 ++ libavformat/rtpenc_rfc4175.c | 4 libavformat/sdp.c| 5 + 3 files changed, 11 insertions(+) diff --git a/libavformat/rtpenc.c b/libavformat/rtpenc.c index 4f115cc..a60e647 100644 ---

[FFmpeg-devel] [PATCH 08/11] avcodec: suppport for s210 encode

2021-11-12 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavcodec/Makefile| 1 + libavcodec/allcodecs.c | 1 + libavcodec/s210enc.c | 90 ++ 3 files changed, 92 insertions(+) create mode 100644 libavcodec/s210enc.c diff --git

[FFmpeg-devel] [PATCH 07/11] avcodec: rename bitpacked.c to s210dec.c

2021-11-12 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavcodec/Makefile| 2 +- libavcodec/bitpacked.c | 125 - libavcodec/s210dec.c | 125 + 3 files changed, 126 insertions(+), 126 deletions(-)

[FFmpeg-devel] [PATCH 11/11] avformat/movenc: add s210 4:2:2 10-bit packed

2021-11-12 Thread lance . lmwang
From: Limin Wang S210 is not regiestered by official registration authority yet, so the patch is just to help testing s210 encoder/decode locally. Signed-off-by: Limin Wang --- libavformat/isom_tags.c | 1 + libavformat/movenc.c| 1 + 2 files changed, 2 insertions(+) diff --git

[FFmpeg-devel] [PATCH 06/11] avcodec: use s210 fourcc for 10-bit 4:2:2 packed

2021-11-12 Thread lance . lmwang
From: Limin Wang s210 is used by AWS Elemental Live encoder so I prefer to use same to support 4:2:2 10-bit packed uncompressed video. Refer to: https://docs.aws.amazon.com/elemental-live/latest/ug/codec-vod-outputs.html I split the patch for better review, next patch will rename bitpacked.c to

[FFmpeg-devel] [PATCH 05/11] avformat/rtpenc: adds partial support for the RFC 4175

2021-11-12 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavformat/Makefile | 1 + libavformat/rtpenc.c | 4 ++ libavformat/rtpenc.h | 1 + libavformat/rtpenc_rfc4175.c | 116 +++ libavformat/sdp.c| 25 ++ 5

[FFmpeg-devel] [PATCH 04/11] avformat/rtpdec_rfc4175: support for yuv420p format

2021-11-12 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavformat/rtpdec_rfc4175.c | 11 +++ 1 file changed, 11 insertions(+) diff --git a/libavformat/rtpdec_rfc4175.c b/libavformat/rtpdec_rfc4175.c index fe0754f..81930ce 100644 --- a/libavformat/rtpdec_rfc4175.c +++

[FFmpeg-devel] [PATCH 03/11] avformat/rtpdec_rfc4175: remove the unused tag

2021-11-12 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavformat/rtpdec_rfc4175.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/libavformat/rtpdec_rfc4175.c b/libavformat/rtpdec_rfc4175.c index f13736b..fe0754f 100644 --- a/libavformat/rtpdec_rfc4175.c +++ b/libavformat/rtpdec_rfc4175.c @@

[FFmpeg-devel] [PATCH 02/11] avcodec/bitpacked: remove unneeded 8bit support

2021-11-12 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavcodec/bitpacked.c | 44 +--- 1 file changed, 5 insertions(+), 39 deletions(-) diff --git a/libavcodec/bitpacked.c b/libavcodec/bitpacked.c index 0440df9..d239141 100644 --- a/libavcodec/bitpacked.c +++

[FFmpeg-devel] [PATCH 01/11] avformat/rtpdec_rfc4175: use rawvideo for uyvy422

2021-11-12 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavformat/rtpdec_rfc4175.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libavformat/rtpdec_rfc4175.c b/libavformat/rtpdec_rfc4175.c index f50cad7..f13736b 100644 --- a/libavformat/rtpdec_rfc4175.c +++

[FFmpeg-devel] [PATCH v4] avfilter/src_movie: make the number of decode thread configurable

2021-11-06 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- doc/filters.texi| 3 +++ libavfilter/src_movie.c | 10 +++--- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/doc/filters.texi b/doc/filters.texi index b537e42..c9ef854 100644 --- a/doc/filters.texi +++

Re: [FFmpeg-devel] [PATCH v3] avfilter/src_movie: make the number of decode thread configurable

2021-11-06 Thread lance . lmwang
On Sat, Nov 06, 2021 at 02:59:06PM +0100, Paul B Mahol wrote: > On Sat, Nov 6, 2021 at 2:48 PM wrote: > > > From: Limin Wang > > > > Please use threads option if you want the number of thread configurable. > > > > > Generally bad idea to use number of filtering threads for decoding threads. I

[FFmpeg-devel] [PATCH v3] avfilter/src_movie: make the number of decode thread configurable

2021-11-06 Thread lance . lmwang
From: Limin Wang Please use threads option if you want the number of thread configurable. Signed-off-by: Limin Wang --- libavfilter/src_movie.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libavfilter/src_movie.c b/libavfilter/src_movie.c index 573f363..5811675

Re: [FFmpeg-devel] [PATCH v2] avfilter/src_movie: Add a maximum constraint of 16 slice threads

2021-11-06 Thread lance . lmwang
On Sat, Nov 06, 2021 at 11:44:08AM +0100, Paul B Mahol wrote: > NACK What's your suggestion? any objection if add a thread option for src_movie filter? -- Thanks, Limin Wang ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org

Re: [FFmpeg-devel] [PATCH 2/2] avutil/slicethread: Add a maximum constraint of 16 slice threads

2021-11-06 Thread lance . lmwang
On Sat, Nov 06, 2021 at 08:42:38AM +0100, Hendrik Leppkes wrote: > On Sat, Nov 6, 2021 at 6:26 AM wrote: > > > > On Fri, Nov 05, 2021 at 10:00:41PM +0100, Michael Niedermayer wrote: > > > On Fri, Nov 05, 2021 at 08:32:16PM +0800, lance.lmw...@gmail.com wrote: > > > > From: Limin Wang > > > > > >

[FFmpeg-devel] [PATCH v2] avfilter/src_movie: Add a maximum constraint of 16 slice threads

2021-11-06 Thread lance . lmwang
From: Limin Wang It's configured the number of video decode thread, so use the same maximum constraint as MAX_AUTO_THREADS in libavcodec/pthread_internal.h Signed-off-by: Limin Wang --- libavfilter/src_movie.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

Re: [FFmpeg-devel] [PATCH 2/2] avutil/slicethread: Add a maximum constraint of 16 slice threads

2021-11-05 Thread lance . lmwang
On Fri, Nov 05, 2021 at 10:00:41PM +0100, Michael Niedermayer wrote: > On Fri, Nov 05, 2021 at 08:32:16PM +0800, lance.lmw...@gmail.com wrote: > > From: Limin Wang > > > > Signed-off-by: Limin Wang > > --- > > libavutil/slicethread.c | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) >

[FFmpeg-devel] [PATCH 2/2] avutil/slicethread: Add a maximum constraint of 16 slice threads

2021-11-05 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavutil/slicethread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavutil/slicethread.c b/libavutil/slicethread.c index 867ce32..7b3a106 100644 --- a/libavutil/slicethread.c +++ b/libavutil/slicethread.c @@ -104,7

[FFmpeg-devel] [PATCH 1/2] avfilter/af_atilt: use ff_filter_execute()

2021-11-05 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavfilter/af_atilt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/af_atilt.c b/libavfilter/af_atilt.c index a1ce030..a6f7782 100644 --- a/libavfilter/af_atilt.c +++ b/libavfilter/af_atilt.c @@ -196,7 +196,7 @@

Re: [FFmpeg-devel] [PATCH] Fix first_pcr initial update

2021-11-03 Thread lance . lmwang
On Wed, Nov 03, 2021 at 01:01:29PM +0200, Maksym Veremeyenko wrote: > On 02.11.2021 12:47, Maksym Veremeyenko wrote: > > One of latest commit > > https://source.ffmpeg.org/?p=ffmpeg.git;a=commitdiff;h=6f36eb0da71d22aadf8f056f0966bd86656ea57e > > claim it fixes endless loop on package generation

Re: [FFmpeg-devel] [PATCH] Fix first_pcr initial update

2021-11-03 Thread lance . lmwang
On Tue, Nov 02, 2021 at 05:36:37PM +0200, Maksym Veremeyenko wrote: > On 02.11.2021 16:59, lance.lmw...@gmail.com wrote: > [...] > > > +if (!ts->first_dts_checked && dts != AV_NOPTS_VALUE) { > > > +ts->first_pcr += dts * 300; > > > +ts->first_dts_checked = 1; > > > +} > > >

Re: [FFmpeg-devel] [PATCH] Fix first_pcr initial update

2021-11-02 Thread lance . lmwang
On Tue, Nov 02, 2021 at 12:47:57PM +0200, Maksym Veremeyenko wrote: > One of latest commit > https://source.ffmpeg.org/?p=ffmpeg.git;a=commitdiff;h=6f36eb0da71d22aadf8f056f0966bd86656ea57e > claim it fixes endless loop on package generation if muxrate specified and > copyts used. But actually it

[FFmpeg-devel] [PATCH v2] avutil/hwcontext_videotoolbox: fix use of unknown builtin '__builtin_available'

2021-10-31 Thread lance . lmwang
From: Limin Wang OSX version: 10.11.6 Apple LLVM version 8.0.0 (clang-800.0.42.1) Target: x86_64-apple-darwin15.6.0 Signed-off-by: Limin Wang --- configure | 8 ++ libavutil/hwcontext_videotoolbox.c | 54 +- 2 files changed, 38

Re: [FFmpeg-devel] [PATCH 7/8] avformat/mpegts: Fix for the DOVI video stream descriptor

2021-10-27 Thread lance . lmwang
On Wed, Oct 27, 2021 at 10:54:31AM -0400, quietvoid wrote: > On Wed, Oct 27, 2021 at 10:26 AM wrote: > > > On Wed, Oct 27, 2021 at 11:50:04AM +0300, Jan Ekström wrote: > > > On Thu, Oct 14, 2021 at 5:31 PM wrote: > > > > > > > > On Thu, Oct 14, 2021 at 10:12:05AM -0400, quietvoid wrote: > > > >

[FFmpeg-devel] [PATCH 2/2] avformat/dashenc: Fix comparing double with 0

2021-10-27 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavformat/dashenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/dashenc.c b/libavformat/dashenc.c index 06bbf36..94e77c7 100644 --- a/libavformat/dashenc.c +++ b/libavformat/dashenc.c @@ -551,7 +551,7 @@

[FFmpeg-devel] [PATCH 1/2] avutil/parseutils: add qhd(Quad HD) or wqhd(Wide Quad HD) for 1440p

2021-10-27 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavutil/parseutils.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavutil/parseutils.c b/libavutil/parseutils.c index 7f678cd..19bbdde 100644 --- a/libavutil/parseutils.c +++ b/libavutil/parseutils.c @@ -102,6 +102,7 @@ static const

Re: [FFmpeg-devel] [PATCH 7/8] avformat/mpegts: Fix for the DOVI video stream descriptor

2021-10-27 Thread lance . lmwang
On Wed, Oct 27, 2021 at 11:50:04AM +0300, Jan Ekström wrote: > On Thu, Oct 14, 2021 at 5:31 PM wrote: > > > > On Thu, Oct 14, 2021 at 10:12:05AM -0400, quietvoid wrote: > > > On Thu, Oct 14, 2021 at 9:52 AM wrote: > > > > > > > On Thu, Oct 14, 2021 at 09:45:45AM -0400, quietvoid wrote: > > > > >

Re: [FFmpeg-devel] [PATCH 7/8] avformat/mpegts: Fix for the DOVI video stream descriptor

2021-10-26 Thread lance . lmwang
On Thu, Oct 14, 2021 at 09:09:01PM +0800, lance.lmw...@gmail.com wrote: > From: Limin Wang > > By <> > > Signed-off-by: Limin Wang > --- > libavformat/mpegts.c | 11 +-- > 1 file changed, 9 insertions(+), 2 deletions(-) > > diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c >

Re: [FFmpeg-devel] [PATCH v2] libavformat/rtpdec_mpeg: handle bare ADTS packets with explicit decoder config

2021-10-20 Thread lance . lmwang
On Tue, Oct 19, 2021 at 05:02:44PM -0400, Jeff Mahoney wrote: The title should be "avformat/rtpdec_mpeg4: ..." > When SDP specifies a decoder config, there may not be any AU headers > provided by the sender. This can result in rtp_parse_mp4_au failing > and aac_parse_packet reporting "Error

[FFmpeg-devel] [PATCH 2/2] avutil/hwcontext_videotoolbox: fix use of unknown builtin '__builtin_available'

2021-10-19 Thread lance . lmwang
From: Limin Wang OSX version: 10.11.6 Apple LLVM version 8.0.0 (clang-800.0.42.1) Target: x86_64-apple-darwin15.6.0 Signed-off-by: Limin Wang --- libavutil/hwcontext_videotoolbox.c | 12 1 file changed, 12 insertions(+) diff --git a/libavutil/hwcontext_videotoolbox.c

[FFmpeg-devel] [PATCH 1/2] configure: add hls demuxer link dependencies

2021-10-19 Thread lance . lmwang
From: Limin Wang Fixes building with --disable-everything --enable-demuxer=hls Signed-off-by: Limin Wang --- configure | 1 + 1 file changed, 1 insertion(+) diff --git a/configure b/configure index 92610c7..0fe3937 100755 --- a/configure +++ b/configure @@ -3363,6 +3363,7 @@

Re: [FFmpeg-devel] [FFmpeg-cvslog] libavcodec/libx264: add user data unregistered SEI encoding

2021-10-18 Thread lance . lmwang
On Tue, Oct 19, 2021 at 12:05:19AM +0200, Michael Niedermayer wrote: > Hi > > On Mon, Oct 18, 2021 at 12:15:11PM +, Brad Hards wrote: > > ffmpeg | branch: master | Brad Hards | Fri Aug 6 > > 19:16:33 2021 +1000| [7c08cad280a16b346c0a5e0efdfd8333ec54f095] | > > committer: Derek Buitenhuis

Re: [FFmpeg-devel] [PATCH] libavformat/rtpdec_mpeg: handle bare ADTS packets with explicit decoder config

2021-10-17 Thread lance . lmwang
On Fri, Oct 01, 2021 at 06:53:23PM -0400, Jeff Mahoney wrote: > When SDP specifies a decoder config, there may not be any AU headers > provided by the sender. This can result in rtp_parse_mp4_au failing > and aac_parse_packet reporting "Error parsing AU headers." and no audio > is recovered from

Re: [FFmpeg-devel] [PATCH 1/8] avfilter/af_replaygain: use fabsf() instead of fabs()

2021-10-17 Thread lance . lmwang
On Sat, Oct 16, 2021 at 10:06:35AM -0300, James Almer wrote: > On 10/14/2021 10:08 AM, lance.lmw...@gmail.com wrote: > > From: Limin Wang > > > > Signed-off-by: Limin Wang > > --- > > libavfilter/af_replaygain.c | 4 ++-- > > 1 file changed, 2 insertions(+), 2 deletions(-) > > > > diff

Re: [FFmpeg-devel] [PATCH 5/8] avformat/mov: support dvwC box for Dolby Vision

2021-10-15 Thread lance . lmwang
On Fri, Oct 15, 2021 at 04:40:26PM +0800, myp...@gmail.com wrote: > On Thu, Oct 14, 2021 at 9:10 PM wrote: > > > > From: Limin Wang > > > > By < > 2.2>> > > > > Signed-off-by: Limin Wang > > --- > > libavformat/mov.c | 3 ++- > > 1 file changed, 2 insertions(+), 1 deletion(-) > > > > diff

Re: [FFmpeg-devel] [PATCH 8/8] avformat/mpegts: return proper error codes

2021-10-14 Thread lance . lmwang
On Thu, Oct 14, 2021 at 09:46:37PM +0200, Marton Balint wrote: > > > On Thu, 14 Oct 2021, lance.lmw...@gmail.com wrote: > > > From: Limin Wang > > > > Signed-off-by: Limin Wang > > --- > > libavformat/mpegts.c | 12 ++-- > > 1 file changed, 6 insertions(+), 6 deletions(-) > > No,

Re: [FFmpeg-devel] [PATCH 7/8] avformat/mpegts: Fix for the DOVI video stream descriptor

2021-10-14 Thread lance . lmwang
On Thu, Oct 14, 2021 at 10:12:05AM -0400, quietvoid wrote: > On Thu, Oct 14, 2021 at 9:52 AM wrote: > > > On Thu, Oct 14, 2021 at 09:45:45AM -0400, quietvoid wrote: > > > On Thu, Oct 14, 2021 at 9:36 AM wrote: > > > > > > > On Thu, Oct 14, 2021 at 09:18:16AM -0400, f tcChlisop0 wrote: > > > > >

Re: [FFmpeg-devel] [PATCH 7/8] avformat/mpegts: Fix for the DOVI video stream descriptor

2021-10-14 Thread lance . lmwang
On Thu, Oct 14, 2021 at 09:45:45AM -0400, quietvoid wrote: > On Thu, Oct 14, 2021 at 9:36 AM wrote: > > > On Thu, Oct 14, 2021 at 09:18:16AM -0400, f tcChlisop0 wrote: > > > On Thu, Oct 14, 2021 at 9:10 AM wrote: > > > > > > > From: Limin Wang > > > > > > > > By < > v1.2>> > > > > > > > >

Re: [FFmpeg-devel] [PATCH 7/8] avformat/mpegts: Fix for the DOVI video stream descriptor

2021-10-14 Thread lance . lmwang
On Thu, Oct 14, 2021 at 09:18:16AM -0400, f tcChlisop0 wrote: > On Thu, Oct 14, 2021 at 9:10 AM wrote: > > > From: Limin Wang > > > > By <> > > > > Signed-off-by: Limin Wang > > --- > > libavformat/mpegts.c | 11 +-- > > 1 file changed, 9 insertions(+), 2 deletions(-) > > > > diff

[FFmpeg-devel] [PATCH 8/8] avformat/mpegts: return proper error codes

2021-10-14 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavformat/mpegts.c | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c index 774964d..3157e3a 100644 --- a/libavformat/mpegts.c +++ b/libavformat/mpegts.c @@ -2270,22

[FFmpeg-devel] [PATCH 7/8] avformat/mpegts: Fix for the DOVI video stream descriptor

2021-10-14 Thread lance . lmwang
From: Limin Wang By <> Signed-off-by: Limin Wang --- libavformat/mpegts.c | 11 +-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c index 44d9298..774964d 100644 --- a/libavformat/mpegts.c +++ b/libavformat/mpegts.c @@ -2178,6

[FFmpeg-devel] [PATCH 6/8] avformat/movenc: support dvwC box for Dolby Vision

2021-10-14 Thread lance . lmwang
From: Limin Wang By <> Signed-off-by: Limin Wang --- libavformat/movenc.c | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/libavformat/movenc.c b/libavformat/movenc.c index d43a086..37d4403 100644 --- a/libavformat/movenc.c +++ b/libavformat/movenc.c @@ -1912,7

[FFmpeg-devel] [PATCH 5/8] avformat/mov: support dvwC box for Dolby Vision

2021-10-14 Thread lance . lmwang
From: Limin Wang By <> Signed-off-by: Limin Wang --- libavformat/mov.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libavformat/mov.c b/libavformat/mov.c index 57c67e3..49a8c27 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -7074,7 +7074,7 @@ static int

[FFmpeg-devel] [PATCH 4/8] avcodec/atsc_a53: use AVERROR_INVALIDDATA

2021-10-14 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavcodec/atsc_a53.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libavcodec/atsc_a53.c b/libavcodec/atsc_a53.c index 2d89ef5..29ec71b 100644 --- a/libavcodec/atsc_a53.c +++ b/libavcodec/atsc_a53.c @@ -73,7 +73,7 @@

[FFmpeg-devel] [PATCH 3/8] avcodec/hevc_sei: remove the duplicate check

2021-10-14 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavcodec/hevc_sei.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/libavcodec/hevc_sei.c b/libavcodec/hevc_sei.c index 29d0346..7fd8226 100644 --- a/libavcodec/hevc_sei.c +++ b/libavcodec/hevc_sei.c @@ -181,9 +181,6 @@ static int

[FFmpeg-devel] [PATCH 2/8] avfilter/vf_showinfo: small adjustments for the HDR10+ dump

2021-10-14 Thread lance . lmwang
From: Limin Wang summary for the adjustments: 1, remove the extra "," in the ,} ...{0.2004,0.3001,0.4008,0.5005,0.6002,0.7009,0.8006,0.9013,} to ...{0.2004,0.3001,0.4008,0.5005,0.6002,0.7009,0.8006,0.9013} 2, add "," between the } and new field } fraction_bright_pixels to },

[FFmpeg-devel] [PATCH 1/8] avfilter/af_replaygain: use fabsf() instead of fabs()

2021-10-14 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavfilter/af_replaygain.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavfilter/af_replaygain.c b/libavfilter/af_replaygain.c index 4bf2763..da5c196 100644 --- a/libavfilter/af_replaygain.c +++

[FFmpeg-devel] [PATCH v2 4/4] avformat/rtpdec_rfc4175: add support for RANGE

2021-10-11 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavformat/rtpdec_rfc4175.c | 5 + 1 file changed, 5 insertions(+) diff --git a/libavformat/rtpdec_rfc4175.c b/libavformat/rtpdec_rfc4175.c index 93607d7..f50cad7 100644 --- a/libavformat/rtpdec_rfc4175.c +++ b/libavformat/rtpdec_rfc4175.c

[FFmpeg-devel] [PATCH v2 3/4] avformat/rtpdec_rfc4175: add support for colorimetry

2021-10-11 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavformat/rtpdec_rfc4175.c | 11 +++ 1 file changed, 11 insertions(+) diff --git a/libavformat/rtpdec_rfc4175.c b/libavformat/rtpdec_rfc4175.c index d45530e..93607d7 100644 --- a/libavformat/rtpdec_rfc4175.c +++

[FFmpeg-devel] [PATCH v2 2/4] avformat/rtpdec_rfc4175: add support for TCS

2021-10-11 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavformat/rtpdec_rfc4175.c | 13 + 1 file changed, 13 insertions(+) diff --git a/libavformat/rtpdec_rfc4175.c b/libavformat/rtpdec_rfc4175.c index 060f725..d45530e 100644 --- a/libavformat/rtpdec_rfc4175.c +++

[FFmpeg-devel] [PATCH v2 1/4] avformat/rtpdec_rfc4175: add support for exactframerate

2021-10-11 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavformat/rtpdec_rfc4175.c | 11 +++ 1 file changed, 11 insertions(+) diff --git a/libavformat/rtpdec_rfc4175.c b/libavformat/rtpdec_rfc4175.c index 712c683..060f725 100644 --- a/libavformat/rtpdec_rfc4175.c +++

Re: [FFmpeg-devel] [PATCH 6/8] avformat/rtpdec_rfc4175: add support for TCS

2021-10-11 Thread lance . lmwang
On Mon, Oct 11, 2021 at 05:01:54PM +0200, Andreas Rheinhardt wrote: > lance.lmw...@gmail.com: > > From: Limin Wang > > > > Signed-off-by: Limin Wang > > --- > > libavformat/rtpdec_rfc4175.c | 19 +++ > > 1 file changed, 19 insertions(+) > > > > diff --git

Re: [FFmpeg-devel] [PATCH 5/8] avformat/rtpdec_rfc4175: add support for exactframerate

2021-10-11 Thread lance . lmwang
On Mon, Oct 11, 2021 at 05:00:29PM +0200, Andreas Rheinhardt wrote: > lance.lmw...@gmail.com: > > From: Limin Wang > > > > Signed-off-by: Limin Wang > > --- > > libavformat/rtpdec_rfc4175.c | 14 ++ > > 1 file changed, 14 insertions(+) > > > > diff --git

Re: [FFmpeg-devel] [PATCH 8/8] avformat/rtpdec_rfc4175: add support for RANGE

2021-10-11 Thread lance . lmwang
On Wed, Oct 06, 2021 at 06:14:11PM +0800, lance.lmw...@gmail.com wrote: > From: Limin Wang > > Signed-off-by: Limin Wang > --- > libavformat/rtpdec_rfc4175.c | 11 +++ > 1 file changed, 11 insertions(+) > > diff --git a/libavformat/rtpdec_rfc4175.c b/libavformat/rtpdec_rfc4175.c >

[FFmpeg-devel] [PATCH 8/8] avcodec/hevc_filter: Correct indention

2021-10-11 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavcodec/hevc_filter.c | 24 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/libavcodec/hevc_filter.c b/libavcodec/hevc_filter.c index 7e9478c..3c45b5a 100644 --- a/libavcodec/hevc_filter.c +++

[FFmpeg-devel] [PATCH 7/8] avcodec/hevc_filter: remove unneeded headers

2021-10-11 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavcodec/hevc_filter.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/libavcodec/hevc_filter.c b/libavcodec/hevc_filter.c index 6b98240..7e9478c 100644 --- a/libavcodec/hevc_filter.c +++ b/libavcodec/hevc_filter.c @@ -25,11 +25,8 @@

[FFmpeg-devel] [PATCH 6/8] avcodec/hevcdec: remove unused code

2021-10-11 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavcodec/hevcdec.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/libavcodec/hevcdec.h b/libavcodec/hevcdec.h index 482638a..2855342 100644 --- a/libavcodec/hevcdec.h +++ b/libavcodec/hevcdec.h @@ -45,9 +45,6 @@ #define SHIFT_CTB_WPP 2

[FFmpeg-devel] [PATCH 5/8] avformat/mpegtsenc: add AVSV format_identifier for AVS standard

2021-10-11 Thread lance . lmwang
From: Limin Wang Listing of Registered Identifiers: https://smpte-ra.org/registered-mpeg-ts-ids Signed-off-by: Limin Wang --- libavformat/mpegtsenc.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libavformat/mpegtsenc.c b/libavformat/mpegtsenc.c index 26fb1f1..184bb52 100644 ---

[FFmpeg-devel] [PATCH 4/8] avformat/mpegts: add support for stream_type 0xd4, which is AVS3

2021-10-11 Thread lance . lmwang
From: Limin Wang GB/T 17975.1 Information technology-Generic coding of moving pictures and associated audio information-Part 1:Systems Signed-off-by: Limin Wang --- libavformat/mpegts.c| 1 + libavformat/mpegts.h| 1 + libavformat/mpegtsenc.c | 3 +++ 3 files changed, 5 insertions(+)

[FFmpeg-devel] [PATCH 3/8] avformat/mpegts: add support for stream_type 0xd2, which is AVS2

2021-10-11 Thread lance . lmwang
From: Limin Wang GB/T 17975.1 Information technology-Generic coding of moving pictures and associated audio information-Part 1:Systems Signed-off-by: Limin Wang --- libavformat/mpegts.h| 1 + libavformat/mpegtsenc.c | 3 +++ 2 files changed, 4 insertions(+) diff --git

[FFmpeg-devel] [PATCH 2/8] avcodec/extract_extradata_bsf: add support for AVS3

2021-10-11 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavcodec/extract_extradata_bsf.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavcodec/extract_extradata_bsf.c b/libavcodec/extract_extradata_bsf.c index 32c732f..dbcb850 100644 --- a/libavcodec/extract_extradata_bsf.c +++

<    1   2   3   4   5   6   7   8   9   10   >