[FFmpeg-devel] [PATCH 1/3] avcodec/libopenh264enc: support for colorspace and range information

2022-01-13 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavcodec/libopenh264enc.c | 15 +++ 1 file changed, 15 insertions(+) diff --git a/libavcodec/libopenh264enc.c b/libavcodec/libopenh264enc.c index de4b85c..a55bef8 100644 --- a/libavcodec/libopenh264enc.c +++

Re: [FFmpeg-devel] [PATCH] avutil/parseutils: use quadhd for Quad HD

2022-01-12 Thread lance . lmwang
On Wed, Jan 12, 2022 at 10:49:56AM +0100, Andreas Rheinhardt wrote: > lance.lmw...@gmail.com: > > From: Limin Wang > > > > qHD is 960x540 (q stands for quarter) and QHD is 2560x1440 (Q is quad). > > use quadhd for QHD for abbreviation. > > > > Fix ticket#9591 > > > > Signed-off-by: Limin Wang

[FFmpeg-devel] [PATCH] avutil/parseutils: use quadhd for Quad HD

2022-01-10 Thread lance . lmwang
From: Limin Wang qHD is 960x540 (q stands for quarter) and QHD is 2560x1440 (Q is quad). use quadhd for QHD for abbreviation. Fix ticket#9591 Signed-off-by: Limin Wang --- libavutil/parseutils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavutil/parseutils.c

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

2022-01-10 Thread lance . lmwang
On Mon, Jan 10, 2022 at 07:16:50PM +0100, Andreas Rheinhardt wrote: > lance.lmw...@gmail.com: > > From: Limin Wang > > > > Signed-off-by: Limin Wang > > --- > > libavutil/parseutils.c | 2 ++ > > 1 file changed, 2 insertions(+) > > > > diff --git a/libavutil/parseutils.c

Re: [FFmpeg-devel] 5.0 blocking issues

2022-01-10 Thread lance . lmwang
On Mon, Jan 10, 2022 at 11:09:11AM +0800, "zhilizhao(赵志立)" wrote: > > > > On Jan 9, 2022, at 12:30 AM, Michael Niedermayer > > wrote: > > > > Hi all > > > > This is a simple go/no go call > > if you know of something that still should go into 5.0 please reply here > > with a list of what you

Re: [FFmpeg-devel] [PATCH 1/2] avformat/rtpdec_rfc4175: support for interlace format

2022-01-08 Thread lance . lmwang
On Sun, Jan 02, 2022 at 08:43:30AM +0800, lance.lmw...@gmail.com wrote: > From: Limin Wang > > Signed-off-by: Limin Wang > --- > FYI, other patches have submit to support for the interface format few years > ago: >

Re: [FFmpeg-devel] [PATCH] avformat/rawvideodec: Disable option accidentally added for v210(x)

2022-01-08 Thread lance . lmwang
On Sat, Jan 08, 2022 at 09:08:58PM +0100, Andreas Rheinhardt wrote: > 41f213c3bf629d549400e935e7f123e6cfa959ab accidentally added > an unused pixel_format option to the v210(x) demuxers. > Remove it before it really becomes part of the API. > > Signed-off-by: Andreas Rheinhardt > --- >

Re: [FFmpeg-devel] [PATCH] avformat/rawvideodec: check packet size

2022-01-08 Thread lance . lmwang
On Fri, Jan 07, 2022 at 05:51:11PM +0100, Michael Niedermayer wrote: > Fixes: division by zero > Fixes: integer overflow > Fixes: > 43347/clusterfuzz-testcase-minimized-ffmpeg_dem_V210X_fuzzer-5846911637127168 > > Found-by: continuous fuzzing process >

Re: [FFmpeg-devel] [PATCH] avformat/rawvideodec: check packet size

2022-01-06 Thread lance . lmwang
On Thu, Jan 06, 2022 at 09:42:03AM +0100, Michael Niedermayer wrote: > Fixes: division by zero > Fixes: > 43347/clusterfuzz-testcase-minimized-ffmpeg_dem_V210X_fuzzer-5846911637127168 > > Found-by: continuous fuzzing process > https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg >

Re: [FFmpeg-devel] [PATCH] avcodec/videotoolbox: Fix undefined symbol with minimal configuration

2022-01-04 Thread lance . lmwang
On Tue, Jan 04, 2022 at 10:17:17PM -0300, James Almer wrote: > > > On 1/4/2022 10:15 PM, lance.lmw...@gmail.com wrote: > > On Tue, Jan 04, 2022 at 05:51:56PM -0600, Cameron Gutman wrote: > > > > > > > On Jan 4, 2022, at 3:43 AM, lance.lmw...@gmail.com wrote: > > > > > > > > From: Limin Wang >

Re: [FFmpeg-devel] [PATCH] avcodec/videotoolbox: Fix undefined symbol with minimal configuration

2022-01-04 Thread lance . lmwang
On Tue, Jan 04, 2022 at 05:51:56PM -0600, Cameron Gutman wrote: > > > On Jan 4, 2022, at 3:43 AM, lance.lmw...@gmail.com wrote: > > > > From: Limin Wang > > > > Please reproduced with the following minimal configure command: > > ./configure --enable-shared --disable-all --enable-avcodec > >

Re: [FFmpeg-devel] Build break: VideoToolbox VP9 support breaks H.264-only build

2022-01-04 Thread lance . lmwang
On Mon, Jan 03, 2022 at 01:18:34PM -0600, Cameron Gutman wrote: > I am building minimal ffmpeg libraries for my application using the following > configure command: > > ./configure --enable-shared --disable-all --enable-avcodec > --enable-decoder=h264 --enable-hwaccel=h264_videotoolbox > >

[FFmpeg-devel] [PATCH] avcodec/videotoolbox: Fix undefined symbol with minimal configuration

2022-01-04 Thread lance . lmwang
From: Limin Wang Please reproduced with the following minimal configure command: ./configure --enable-shared --disable-all --enable-avcodec --enable-decoder=h264 --enable-hwaccel=h264_videotoolbox You'll get below error: Undefined symbols for architecture x86_64:

[FFmpeg-devel] [PATCH 1/2] avformat/rtpdec_rfc4175: support for interlace format

2022-01-01 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- FYI, other patches have submit to support for the interface format few years ago: https://patchwork.ffmpeg.org/project/ffmpeg/patch/1531259521-19421-2-git-send-email-patrick.kerou...@savoirfairelinux.com/ I proposal to process the interlace

[FFmpeg-devel] [PATCH 2/2] avformat/rtpenc_rfc4175: support for interlace format

2022-01-01 Thread lance . lmwang
From: Limin Wang Below is step for how to test in your local machine: wget --no-check-certificate https://samples.ffmpeg.org/MPEG2/interlaced/burosch1.mpg 1. test interlace: ffmpeg -re -i ./burosch1.mpg -c:v bitpacked -pix_fmt yuv422p10 -f rtp rtp://239.255.0.1:6000 copy and create sdp

Re: [FFmpeg-devel] [PATCH v6] avcodec/h264_slice: add warning log when droping picture at 'h264_select_output_frame'

2021-12-30 Thread lance . lmwang
On Thu, Dec 30, 2021 at 05:19:09PM +0800, zozobr...@163.com wrote: > This will lost the droped picture's infomation, lead to hard to debug when > this error happens. Please stop top posting. As warning message, I think it's enough to print out "no picture ooo", if you want to debug, please use

Re: [FFmpeg-devel] [PATCH v6] avcodec/h264_slice: add warning log when droping picture at 'h264_select_output_frame'

2021-12-30 Thread lance . lmwang
On Thu, Dec 30, 2021 at 03:24:28PM +0800, zourenyi wrote: > since there is only debug log 'no picture ooo' when droping a picture, > I spent much time to troubleshooting a wrong sps 'num_reorder_frames' param > changed by webrtc's 'ParseAndRewriteSps', > FFmpeg keeped silence about this error, so

Re: [FFmpeg-devel] [PATCH v2 1/2] avcodec/libx26[45]: add udu_sei option to import user data unregistered SEIs

2021-12-28 Thread lance . lmwang
On Tue, Dec 28, 2021 at 10:12:43AM +0800, "zhilizhao(赵志立)" wrote: > > > > On Dec 28, 2021, at 9:29 AM, lance.lmw...@gmail.com wrote: > > > > On Sat, Dec 25, 2021 at 10:46:52PM +0800, lance.lmw...@gmail.com wrote: > >> From: Limin Wang > >> > >> Most of user data unregistered SEIs are privated

Re: [FFmpeg-devel] [PATCH v2 1/2] avcodec/libx26[45]: add udu_sei option to import user data unregistered SEIs

2021-12-27 Thread lance . lmwang
On Sat, Dec 25, 2021 at 10:46:52PM +0800, lance.lmw...@gmail.com wrote: > From: Limin Wang > > Most of user data unregistered SEIs are privated data which defined by user/ > encoder. currently, the user data unregistered SEIs found in input are > forwarded > as side-data to encoders directly,

Re: [FFmpeg-devel] GitHub Integration

2021-12-26 Thread lance . lmwang
On Sun, Dec 26, 2021 at 04:37:54PM -0500, Ronald S. Bultje wrote: > Hi, > > On Sun, Dec 26, 2021 at 3:21 PM Soft Works wrote: > > > I'm not sure. My interpretation of Lance' and Steven's comments would > > be that they'd prefer to stick to the ML. > > > > No, it's not strictly related to that

Re: [FFmpeg-devel] GitHub Integration

2021-12-25 Thread lance . lmwang
On Sat, Dec 25, 2021 at 05:15:19PM +, Soft Works wrote: > > > > -Original Message- > > From: ffmpeg-devel On Behalf Of Lynne > > Sent: Saturday, December 25, 2021 5:50 PM > > To: FFmpeg development discussions and patches > > Subject: Re: [FFmpeg-devel] GitHub Integration > > > >

[FFmpeg-devel] [PATCH v2 2/2] avcodec/libx26[45]: reindent after last commit

2021-12-25 Thread lance . lmwang
From: Limin Wang --- libavcodec/libx264.c | 44 ++-- libavcodec/libx265.c | 48 2 files changed, 46 insertions(+), 46 deletions(-) diff --git a/libavcodec/libx264.c b/libavcodec/libx264.c index

[FFmpeg-devel] [PATCH v2 1/2] avcodec/libx26[45]: add udu_sei option to import user data unregistered SEIs

2021-12-25 Thread lance . lmwang
From: Limin Wang Most of user data unregistered SEIs are privated data which defined by user/ encoder. currently, the user data unregistered SEIs found in input are forwarded as side-data to encoders directly, it'll cause the reencoded output including some useless UDU SEIs. I prefer to add

Re: [FFmpeg-devel] [PATCH] avcodec/nvenc: add udu_sei option to import user data unregistered SEIs

2021-12-25 Thread lance . lmwang
On Sat, Dec 25, 2021 at 02:15:36PM +0100, Timo Rothenpieler wrote: > Applied a slightly modified version. > Just so it avoids cycling through the side data loop entirely when it's > never going to be needed. Thanks, it's better, I'll move the check out of loop for libx264 and libx265 to avoid the

[FFmpeg-devel] [PATCH 2/2] avcodec/qsvenc_h264: use AV_OPT_TYPE_BOOL for aud, a53cc, cavlc, look_ahead, pic_timing_sei options

2021-12-24 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavcodec/qsvenc_h264.c | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/libavcodec/qsvenc_h264.c b/libavcodec/qsvenc_h264.c index 80fe3cc..9f12760 100644 --- a/libavcodec/qsvenc_h264.c +++

[FFmpeg-devel] [PATCH 1/2] avcodec/qsvenc_hevc: use AV_OPT_TYPE_BOOL for aud option

2021-12-24 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- I haven't tested it for no build environment for qsv. libavcodec/qsvenc_hevc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/qsvenc_hevc.c b/libavcodec/qsvenc_hevc.c index 5847ea2..08aba30 100644 ---

Re: [FFmpeg-devel] [PATCH] avcodec/nvenc: add udu_sei option to import user data unregistered SEIs

2021-12-24 Thread lance . lmwang
On Fri, Dec 24, 2021 at 04:52:35PM +0100, Timo Rothenpieler wrote: > On 24.12.2021 15:47, lance.lmw...@gmail.com wrote: > > > > You can tested with libx264 output file, the size of unregistered SEIs(for > > encoding > > setting) will > 503 always, if you don't make the size <= 503, you'll see >

Re: [FFmpeg-devel] [PATCH] avcodec/nvenc: add udu_sei option to import user data unregistered SEIs

2021-12-24 Thread lance . lmwang
On Fri, Dec 24, 2021 at 03:00:10PM +0100, Timo Rothenpieler wrote: > On 24.12.2021 05:32, lance.lmw...@gmail.com wrote: > > From: Limin Wang > > > > Note: > > nvenc sdk will truncated user data unregistered SEI if the size > 503. > > for example, hardcode its size to 504, trace_headers will

Re: [FFmpeg-devel] [PATCH] lavc/qsvenc_hevc: add -pic_timing_sei option

2021-12-24 Thread lance . lmwang
On Fri, Dec 24, 2021 at 08:47:38AM +, Xiang, Haihao wrote: > On Fri, 2021-12-24 at 16:17 +0800, lance.lmw...@gmail.com wrote: > > On Fri, Dec 24, 2021 at 07:35:25AM +, Xiang, Haihao wrote: > > > On Fri, 2021-08-06 at 10:10 +0800, Haihao Xiang wrote: > > > > The SDK may insert picture

Re: [FFmpeg-devel] [PATCH] avcodec/vaapi_encode_vp9: fix > 4k encode fail issue

2021-12-24 Thread lance . lmwang
On Fri, Dec 24, 2021 at 07:32:28AM +, Xiang, Haihao wrote: > On Mon, 2021-04-12 at 09:47 +0800, Zhang yuankun wrote: > > This patch will fix following command: > > ffmpeg -hwaccel vaapi -hwaccel_output_format vaapi -i input.264 \ > > -vf 'scale_vaapi=w=7680:h=4096' -c:v vp9_vaapi output.ivf >

Re: [FFmpeg-devel] [PATCH] lavc/qsvenc_hevc: add -pic_timing_sei option

2021-12-24 Thread lance . lmwang
On Fri, Dec 24, 2021 at 07:35:25AM +, Xiang, Haihao wrote: > On Fri, 2021-08-06 at 10:10 +0800, Haihao Xiang wrote: > > The SDK may insert picture timing SEI for hevc and the code to set mfx > > parameter has been added in qsvenc, however the corresponding option is > > missing in the hevc

[FFmpeg-devel] [PATCH] avcodec/nvenc: add udu_sei option to import user data unregistered SEIs

2021-12-23 Thread lance . lmwang
From: Limin Wang Note: nvenc sdk will truncated user data unregistered SEI if the size > 503. for example, hardcode its size to 504, trace_headers will report below error: Invalid SEI message: payload_size too large (504 504 bytes). Signed-off-by: Limin Wang --- libavcodec/nvenc.c | 2 +-

[FFmpeg-devel] [PATCH] avcodec/libx26[45]: add udu_sei option to import user data unregistered SEIs

2021-12-23 Thread lance . lmwang
From: Limin Wang Most of user data unregistered SEIs are privated data which defined by user/ encoder. currently, the user data unregistered SEIs found in input are forwarded as side-data to encoders directly, it'll cause the reencoded output including some useless UDU SEIs. I prefer to add

[FFmpeg-devel] [PATCH v2 3/3] avformat: remove unused v210.c

2021-12-22 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavformat/v210.c | 123 - 1 file changed, 123 deletions(-) delete mode 100644 libavformat/v210.c diff --git a/libavformat/v210.c b/libavformat/v210.c deleted file mode 100644 index

[FFmpeg-devel] [PATCH v2 2/3] avformat: reuse the common code for v210/v210x

2021-12-22 Thread lance . lmwang
From: Limin Wang As suggested by Andreas Rheinhardt, most code of v210 demuxer is common code which is duplicated from rawvideodec, so it's better to move v210/v210x demuxer code to rawvideodec.c and reuse the common code. Signed-off-by: Limin Wang --- libavformat/Makefile | 4 ++--

[FFmpeg-devel] [PATCH v2 1/3] avformat: add bitpacked demuxer

2021-12-22 Thread lance . lmwang
From: Limin Wang Allows user can playback bitpacked pixel format directly: ffplay -video_size 1280x720 -pixel_format yuv422p10 test.bitpacked ffplay -f bitpacked -video_size 1280x720 -pixel_format uyvy422 test.yuv Signed-off-by: Limin Wang --- libavformat/Makefile | 1 +

Re: [FFmpeg-devel] [PATCH] avformat: add bitpacked demuxer

2021-12-22 Thread lance . lmwang
On Wed, Dec 22, 2021 at 02:38:13PM +0100, Andreas Rheinhardt wrote: > lance.lmw...@gmail.com: > > On Tue, Dec 21, 2021 at 02:20:31PM +0100, Andreas Rheinhardt wrote: > >> lance.lmw...@gmail.com: > >>> From: Limin Wang > >>> > >>> Allows user can playback bitpacked pixel format directly: > >>>

Re: [FFmpeg-devel] [PATCH] avformat: add bitpacked demuxer

2021-12-21 Thread lance . lmwang
On Tue, Dec 21, 2021 at 02:20:31PM +0100, Andreas Rheinhardt wrote: > lance.lmw...@gmail.com: > > From: Limin Wang > > > > Allows user can playback bitpacked pixel format directly: > > ffplay -video_size 1280x720 test.bitpacked > > ffplay -f bitpacked -video_size 1280x720 -pixel_format uyvy422

Re: [FFmpeg-devel] [PATCH] avformat: add bitpacked demuxer

2021-12-21 Thread lance . lmwang
On Tue, Dec 14, 2021 at 10:35:13PM +0800, lance.lmw...@gmail.com wrote: > From: Limin Wang > > Allows user can playback bitpacked pixel format directly: > ffplay -video_size 1280x720 test.bitpacked > ffplay -f bitpacked -video_size 1280x720 -pixel_format uyvy422 test.yuv > > Signed-off-by:

Re: [FFmpeg-devel] [PATCH 2/2] avcodec/libx26[45]: Don't forward old x26[45] SEI's

2021-12-20 Thread lance . lmwang
On Mon, Dec 20, 2021 at 07:27:30PM +0100, Andreas Rheinhardt wrote: > Currently, user data unregistered SEIs found in input are > forwarded as side-data to encoders; for the libx26[45] encoders > these are included in the reencoded output (even including x264 SEIs > in H.265 and vice versa). >

Re: [FFmpeg-devel] [PATCH 1/2] avcodec/libx264: Don't unnecessarily add in-band extradata

2021-12-20 Thread lance . lmwang
On Mon, Dec 20, 2021 at 07:22:56PM +0100, Andreas Rheinhardt wrote: > The check here is meant to check for whether avcintra-class option > (default value -1) has been set; yet it checks for the x264_param_t > value where 0 is the default value (treated as "no avcintra-mode" > by x264). This meant

[FFmpeg-devel] [PATCH] avformat: add bitpacked demuxer

2021-12-14 Thread lance . lmwang
From: Limin Wang Allows user can playback bitpacked pixel format directly: ffplay -video_size 1280x720 test.bitpacked ffplay -f bitpacked -video_size 1280x720 -pixel_format uyvy422 test.yuv Signed-off-by: Limin Wang --- libavformat/Makefile | 1 + libavformat/allformats.c | 1 +

Re: [FFmpeg-devel] [PATCH v2] avfilter/dnn: fix incompatible integer to pointer conversion warning

2021-12-10 Thread lance . lmwang
On Sat, Dec 11, 2021 at 03:06:42AM +, Guo, Yejun wrote: > > > -Original Message- > From: ffmpeg-devel On Behalf Of > lance.lmw...@gmail.com > Sent: 2021年12月9日 22:37 > To: ffmpeg-devel@ffmpeg.org > Cc: Limin Wang > Subject: [FFmpeg-devel] [PATCH v2] avfilter/dnn: fix incompatible

[FFmpeg-devel] [PATCH v3 2/6] avfilter/af_astats: improve options descriptions

2021-12-10 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- doc/filters.texi| 7 --- libavfilter/af_astats.c | 6 +++--- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/doc/filters.texi b/doc/filters.texi index 8eff460..e5059f2 100644 --- a/doc/filters.texi +++ b/doc/filters.texi

Re: [FFmpeg-devel] [PATCH 2/5] avfilter/af_astats: improve options descriptions

2021-12-09 Thread lance . lmwang
On Thu, Dec 09, 2021 at 10:41:17PM +0530, Gyan Doshi wrote: > > > On 2021-12-09 06:49 am, lance.lmw...@gmail.com wrote: > > From: Limin Wang > > > > Signed-off-by: Limin Wang > > --- > > libavfilter/af_astats.c | 6 +++--- > > 1 file changed, 3 insertions(+), 3 deletions(-) > > > > diff

[FFmpeg-devel] [PATCH v2] avfilter/dnn: fix incompatible integer to pointer conversion warning

2021-12-09 Thread lance . lmwang
From: Limin Wang --- libavfilter/dnn/dnn_backend_common.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavfilter/dnn/dnn_backend_common.c b/libavfilter/dnn/dnn_backend_common.c index 6a9c4cc..dd7bdf4 100644 --- a/libavfilter/dnn/dnn_backend_common.c +++

[FFmpeg-devel] [PATCH v2] avfilter/dnn: fix incompatible integer to pointer conversion warning

2021-12-09 Thread lance . lmwang
From: Limin Wang --- libavfilter/dnn/dnn_backend_common.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavfilter/dnn/dnn_backend_common.c b/libavfilter/dnn/dnn_backend_common.c index 6a9c4cc..dd7bdf4 100644 --- a/libavfilter/dnn/dnn_backend_common.c +++

Re: [FFmpeg-devel] [PATCH 3/5] avfilter/dnn: fix the return value of async_thread_routine

2021-12-09 Thread lance . lmwang
On Thu, Dec 09, 2021 at 03:00:06PM +0100, Michael Niedermayer wrote: > On Thu, Dec 09, 2021 at 09:19:41AM +0800, lance.lmw...@gmail.com wrote: > > From: Limin Wang > > > > Signed-off-by: Limin Wang > > --- > > libavfilter/dnn/dnn_backend_common.c | 7 +-- > > 1 file changed, 5

Re: [FFmpeg-devel] [PATCH 3/5] avfilter/dnn: fix the return value of async_thread_routine

2021-12-09 Thread lance . lmwang
On Thu, Dec 09, 2021 at 11:55:14AM +, Guo, Yejun wrote: > > > -Original Message- > From: ffmpeg-devel On Behalf Of > lance.lmw...@gmail.com > Sent: 2021年12月9日 9:20 > To: ffmpeg-devel@ffmpeg.org > Cc: Limin Wang > Subject: [FFmpeg-devel] [PATCH 3/5] avfilter/dnn: fix the return

Re: [FFmpeg-devel] [PATCH 3/5] avfilter/dnn: fix the return value of async_thread_routine

2021-12-09 Thread lance . lmwang
On Thu, Dec 09, 2021 at 11:55:14AM +, Guo, Yejun wrote: > > > -Original Message- > From: ffmpeg-devel On Behalf Of > lance.lmw...@gmail.com > Sent: 2021年12月9日 9:20 > To: ffmpeg-devel@ffmpeg.org > Cc: Limin Wang > Subject: [FFmpeg-devel] [PATCH 3/5] avfilter/dnn: fix the return

[FFmpeg-devel] [PATCH v2 3/3] avcodec/v210enc: suppport frame thread for v210

2021-12-08 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavcodec/v210enc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/v210enc.c b/libavcodec/v210enc.c index 22875be..16c4f82 100644 --- a/libavcodec/v210enc.c +++ b/libavcodec/v210enc.c @@ -156,7 +156,7 @@ const

[FFmpeg-devel] [PATCH v2 2/3] avcodec/rawenc: suppport frame thread for rawvideo

2021-12-08 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavcodec/rawenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/rawenc.c b/libavcodec/rawenc.c index 7e15084..561d992 100644 --- a/libavcodec/rawenc.c +++ b/libavcodec/rawenc.c @@ -85,7 +85,7 @@ const AVCodec

[FFmpeg-devel] [PATCH v2 1/3] fate: use single thread for rawvideo

2021-12-08 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- tests/fate/ffmpeg.mak | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/fate/ffmpeg.mak b/tests/fate/ffmpeg.mak index 4ba73a8..2a6a066 100644 --- a/tests/fate/ffmpeg.mak +++ b/tests/fate/ffmpeg.mak @@ -32,7 +32,7

Re: [FFmpeg-devel] [PATCH 4/5] avcodec/rawenc: suppport frame thread for rawvideo

2021-12-08 Thread lance . lmwang
On Thu, Dec 09, 2021 at 09:19:42AM +0800, lance.lmw...@gmail.com wrote: > From: Limin Wang > > Signed-off-by: Limin Wang > --- > libavcodec/rawenc.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/libavcodec/rawenc.c b/libavcodec/rawenc.c > index 7e15084..561d992

[FFmpeg-devel] [PATCH 5/5] avcodec/v210enc: suppport frame thread for v210

2021-12-08 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavcodec/v210enc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/v210enc.c b/libavcodec/v210enc.c index 22875be..16c4f82 100644 --- a/libavcodec/v210enc.c +++ b/libavcodec/v210enc.c @@ -156,7 +156,7 @@ const

[FFmpeg-devel] [PATCH 4/5] avcodec/rawenc: suppport frame thread for rawvideo

2021-12-08 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavcodec/rawenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/rawenc.c b/libavcodec/rawenc.c index 7e15084..561d992 100644 --- a/libavcodec/rawenc.c +++ b/libavcodec/rawenc.c @@ -85,7 +85,7 @@ const AVCodec

[FFmpeg-devel] [PATCH 3/5] avfilter/dnn: fix the return value of async_thread_routine

2021-12-08 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavfilter/dnn/dnn_backend_common.c | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/libavfilter/dnn/dnn_backend_common.c b/libavfilter/dnn/dnn_backend_common.c index 6a9c4cc..8c020e5 100644 ---

[FFmpeg-devel] [PATCH 2/5] avfilter/af_astats: improve options descriptions

2021-12-08 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavfilter/af_astats.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libavfilter/af_astats.c b/libavfilter/af_astats.c index d0810b5..776a8aa 100644 --- a/libavfilter/af_astats.c +++ b/libavfilter/af_astats.c @@ -114,8

[FFmpeg-devel] [PATCH 1/5] avformat/rtpdec_rfc4175: cosmetic changes

2021-12-08 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavformat/rtpdec_rfc4175.c | 16 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/libavformat/rtpdec_rfc4175.c b/libavformat/rtpdec_rfc4175.c index 7feefd2..a66e00d 100644 --- a/libavformat/rtpdec_rfc4175.c +++

Re: [FFmpeg-devel] [PATCH v9 4/5] avformat/movenc: Refactor mov_write_dvcc_dvvc_tag to use ff_isom_put_dvcc_dvvc

2021-12-07 Thread lance . lmwang
On Sun, Dec 05, 2021 at 06:35:34PM +0100, quietvoid wrote: > Improves code legibility by not using bit shifts. > Also avoids duplicating the dvcC/dvvC ISOM box writing code. > > Signed-off-by: quietvoid > --- > libavformat/movenc.c | 24 +++- > 1 file changed, 7

Re: [FFmpeg-devel] [PATCH v9 3/5] avformat/mov: Refactor mov_read_dvcc_dvvc to use ff_isom_parse_dvcc_dvvc

2021-12-07 Thread lance . lmwang
On Sun, Dec 05, 2021 at 06:35:33PM +0100, quietvoid wrote: > To avoid duplicating code. The implementation in dovi_isom is identical. > > Signed-off-by: quietvoid > --- > libavformat/mov.c | 50 +-- > 1 file changed, 9 insertions(+), 41 deletions(-) >

Re: [FFmpeg-devel] [PATCH v9 1/5] avformat/dovi_isom: Implement Dolby Vision configuration parsing/writing

2021-12-07 Thread lance . lmwang
On Sun, Dec 05, 2021 at 06:35:31PM +0100, quietvoid wrote: > Both parse/write implementations are based on mov/movenc. > > This only adds support for the "Dolby Vision configuration box". > Other configuration boxes, such as > "Dolby Vision enhancement layer configuration box" are not supported.

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

2021-12-07 Thread lance . lmwang
On Wed, Dec 01, 2021 at 09:39:14PM +0800, lance.lmw...@gmail.com wrote: > From: Limin Wang > > Signed-off-by: Limin Wang > --- > multi-thread is active, but I'm not sure why the performance isn't getting > better. plan to push the patchset in the next two day unless there are objection. About

Re: [FFmpeg-devel] [PATCH v2 4/6] avformat/rtsp: check content_ptr before memory allocate

2021-12-07 Thread lance . lmwang
On Tue, Dec 07, 2021 at 11:30:11AM +0200, Martin Storsjö wrote: > On Mon, 6 Dec 2021, lance.lmw...@gmail.com wrote: > > > From: Limin Wang > > > > Signed-off-by: Limin Wang > > --- > > libavformat/rtsp.c | 7 ++- > > 1 file changed, 2 insertions(+), 5 deletions(-) > > > > diff --git

Re: [FFmpeg-devel] [PATCH v2 3/6] avformat/rtsp: use MAX_URL_SIZE for one line parse

2021-12-07 Thread lance . lmwang
On Tue, Dec 07, 2021 at 11:27:32AM +0200, Martin Storsjö wrote: > On Mon, 6 Dec 2021, lance.lmw...@gmail.com wrote: > > > From: Limin Wang > > > > The buf is used for one line of sdp parsing, so it's ok to use MAX_URL_SIZE > > > > Signed-off-by: Limin Wang > > --- > > libavformat/rtsp.c | 2

[FFmpeg-devel] [PATCH v2 6/6] avformat/rtsp: fix the error code from ffurl_read_complete()

2021-12-05 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavformat/rtsp.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index 4ae810d..c591664 100644 --- a/libavformat/rtsp.c +++ b/libavformat/rtsp.c @@ -1197,7 +1197,7 @@ start:

[FFmpeg-devel] [PATCH v2 5/6] avformat/rtsp: add error code handling for ff_rtsp_skip_packet()

2021-12-05 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavformat/rtsp.c| 15 ++- libavformat/rtsp.h| 4 +++- libavformat/rtspenc.c | 7 +-- 3 files changed, 18 insertions(+), 8 deletions(-) diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index b3d1e91..4ae810d 100644

[FFmpeg-devel] [PATCH v2 4/6] avformat/rtsp: check content_ptr before memory allocate

2021-12-05 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavformat/rtsp.c | 7 ++- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index 3e4a68a..b3d1e91 100644 --- a/libavformat/rtsp.c +++ b/libavformat/rtsp.c @@ -1240,7 +1240,7 @@ start:

[FFmpeg-devel] [PATCH v2 3/6] avformat/rtsp: use MAX_URL_SIZE for one line parse

2021-12-05 Thread lance . lmwang
From: Limin Wang The buf is used for one line of sdp parsing, so it's ok to use MAX_URL_SIZE Signed-off-by: Limin Wang --- libavformat/rtsp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index 5cffe0b..3e4a68a 100644 ---

[FFmpeg-devel] [PATCH v2 2/6] avformat/rtsp: free the alloc memory if failed

2021-12-05 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavformat/rtsp.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index 47120fd..5cffe0b 100644 --- a/libavformat/rtsp.c +++ b/libavformat/rtsp.c @@ -1245,8 +1245,10 @@ start:

[FFmpeg-devel] [PATCH v2 1/6] avformat/rtsp: remove redundant assignment

2021-12-05 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavformat/rtsp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index deaed34..47120fd 100644 --- a/libavformat/rtsp.c +++ b/libavformat/rtsp.c @@ -1178,8 +1178,8 @@ int

Re: [FFmpeg-devel] [PATCH 3/6] avformat/rtsp: prefer to return EOF for incomplete read

2021-12-05 Thread lance . lmwang
On Sun, Dec 05, 2021 at 07:10:31PM +0100, Marton Balint wrote: > > > On Sun, 5 Dec 2021, lance.lmw...@gmail.com wrote: > > > From: Limin Wang > > > > Signed-off-by: Limin Wang > > --- > > libavformat/rtsp.c | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git

[FFmpeg-devel] [PATCH 6/6] avformat/rtsp: add error code handling for ff_rtsp_skip_packet()

2021-12-05 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavformat/rtsp.c| 15 ++- libavformat/rtsp.h| 4 +++- libavformat/rtspenc.c | 7 +-- 3 files changed, 18 insertions(+), 8 deletions(-) diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index a8d079e..6442e5b 100644

[FFmpeg-devel] [PATCH 5/6] avformat/rtsp: use MAX_URL_SIZE for one line parse

2021-12-05 Thread lance . lmwang
From: Limin Wang The buf is used for one line of sdp parsing, so it's ok to use MAX_URL_SIZE Signed-off-by: Limin Wang --- libavformat/rtsp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index 233ed16..a8d079e 100644 ---

[FFmpeg-devel] [PATCH 4/6] avformat/rtsp: check content_ptr before memory allocate

2021-12-05 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavformat/rtsp.c | 7 ++- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index 2ee2463..233ed16 100644 --- a/libavformat/rtsp.c +++ b/libavformat/rtsp.c @@ -1240,7 +1240,7 @@ start:

[FFmpeg-devel] [PATCH 3/6] avformat/rtsp: prefer to return EOF for incomplete read

2021-12-05 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavformat/rtsp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index 5cffe0b..2ee2463 100644 --- a/libavformat/rtsp.c +++ b/libavformat/rtsp.c @@ -1247,7 +1247,7 @@ start:

[FFmpeg-devel] [PATCH 2/6] avformat/rtsp: free the alloc memory if failed

2021-12-05 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavformat/rtsp.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index 47120fd..5cffe0b 100644 --- a/libavformat/rtsp.c +++ b/libavformat/rtsp.c @@ -1245,8 +1245,10 @@ start:

[FFmpeg-devel] [PATCH 1/6] avformat/rtsp: remove redundant assignment

2021-12-05 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavformat/rtsp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index deaed34..47120fd 100644 --- a/libavformat/rtsp.c +++ b/libavformat/rtsp.c @@ -1178,8 +1178,8 @@ int

Re: [FFmpeg-devel] [PATCH 3/3] lavf/sdp: add more thorough error handling

2021-12-05 Thread lance . lmwang
On Sat, Dec 04, 2021 at 06:33:00PM +0100, Anton Khirnov wrote: > Return error codes when constructing a stream config fails, rather than > just disregarding the failure and continuing. > Propagate the error codes from av_sdp_create(). > --- > libavformat/internal.h | 7 +- > libavformat/sdp.c

Re: [FFmpeg-devel] [PATCH v8 4/5] avformat/movenc: Refactor mov_write_dvcc_dvvc_tag to use ff_isom_put_dvcc_dvvc

2021-12-03 Thread lance . lmwang
On Fri, Dec 03, 2021 at 08:55:08PM -0500, quietvoid wrote: > On Fri, Dec 3, 2021 at 8:51 PM quietvoid wrote: > > > > > On Fri, Dec 3, 2021 at 8:40 PM wrote: > > > >> On Fri, Dec 03, 2021 at 08:27:06PM -0500, quietvoid wrote: > >> > On Fri, Dec 3, 2021 at 8:19 PM wrote: > >> > > >> > > On Sat,

Re: [FFmpeg-devel] [PATCH v8 4/5] avformat/movenc: Refactor mov_write_dvcc_dvvc_tag to use ff_isom_put_dvcc_dvvc

2021-12-03 Thread lance . lmwang
On Fri, Dec 03, 2021 at 08:27:06PM -0500, quietvoid wrote: > On Fri, Dec 3, 2021 at 8:19 PM wrote: > > > On Sat, Dec 04, 2021 at 02:09:04AM +0100, quietvoid wrote: > > > From: quietvoid > > > > > > Improves code legibility by not using bit shifts. > > > Also avoids duplicating the dvcC/dvvC

Re: [FFmpeg-devel] [PATCH v8 4/5] avformat/movenc: Refactor mov_write_dvcc_dvvc_tag to use ff_isom_put_dvcc_dvvc

2021-12-03 Thread lance . lmwang
On Sat, Dec 04, 2021 at 02:09:04AM +0100, quietvoid wrote: > From: quietvoid > > Improves code legibility by not using bit shifts. > Also avoids duplicating the dvcC/dvvC ISOM box writing code. > > Signed-off-by: quietvoid > --- > libavformat/movenc.c | 26 +- > 1 file

Re: [FFmpeg-devel] [PATCH v3 1/2] avformat/rtsp: load the sdp file with avio_read_to_bprint()

2021-12-03 Thread lance . lmwang
On Fri, Dec 03, 2021 at 02:50:14PM +0100, Michael Niedermayer wrote: > On Fri, Dec 03, 2021 at 09:14:12PM +0800, lance.lmw...@gmail.com wrote: > > On Thu, Dec 02, 2021 at 11:52:23PM +0100, Michael Niedermayer wrote: > > > On Thu, Dec 02, 2021 at 06:37:38PM +0800, lance.lmw...@gmail.com wrote: > >

Re: [FFmpeg-devel] [PATCH v3 1/2] avformat/rtsp: load the sdp file with avio_read_to_bprint()

2021-12-03 Thread lance . lmwang
On Thu, Dec 02, 2021 at 11:52:23PM +0100, Michael Niedermayer wrote: > On Thu, Dec 02, 2021 at 06:37:38PM +0800, lance.lmw...@gmail.com wrote: > > From: Limin Wang > > > > this allows getting rid of the hardcoded max size of SDP. > > > > Reviewed-by: Martin Storsjö > > Signed-off-by: Limin

Re: [FFmpeg-devel] [PATCH 2/2] avformat/aviobuf: prefer to use avio_read_partial()

2021-12-03 Thread lance . lmwang
On Fri, Dec 03, 2021 at 01:59:16PM +0200, Martin Storsjö wrote: > On Fri, 3 Dec 2021, lance.lmw...@gmail.com wrote: > > > On Fri, Dec 03, 2021 at 10:47:00AM +0100, Marton Balint wrote: > > > > > > > > > On Fri, 3 Dec 2021, lance.lmw...@gmail.com wrote: > > > > > > > From: Limin Wang > > > >

Re: [FFmpeg-devel] [PATCH 2/2] avformat/aviobuf: prefer to use avio_read_partial()

2021-12-03 Thread lance . lmwang
On Fri, Dec 03, 2021 at 10:47:00AM +0100, Marton Balint wrote: > > > On Fri, 3 Dec 2021, lance.lmw...@gmail.com wrote: > > > From: Limin Wang > > > > This is allowed to read fewer bytes than requested. The missing bytes can > > be read in the next call. > > I don't think this is needed,

[FFmpeg-devel] [PATCH 2/2] avformat/aviobuf: prefer to use avio_read_partial()

2021-12-02 Thread lance . lmwang
From: Limin Wang This is allowed to read fewer bytes than requested. The missing bytes can be read in the next call. Signed-off-by: Limin Wang --- libavformat/aviobuf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/aviobuf.c b/libavformat/aviobuf.c index

[FFmpeg-devel] [PATCH 1/2] avformat/aviobuf: check if read_packet() exist before read_packet_wrapper()

2021-12-02 Thread lance . lmwang
From: Limin Wang without it, read_packet_wrapper() will return AVERROR(EINVAL) and avio_read will be failed. Signed-off-by: Limin Wang --- It'll fix the issue reported by Michael in below patch:

Re: [FFmpeg-devel] [PATCH v3 1/2] avformat/rtsp: load the sdp file with avio_read_to_bprint()

2021-12-02 Thread lance . lmwang
On Thu, Dec 02, 2021 at 11:52:23PM +0100, Michael Niedermayer wrote: > On Thu, Dec 02, 2021 at 06:37:38PM +0800, lance.lmw...@gmail.com wrote: > > From: Limin Wang > > > > this allows getting rid of the hardcoded max size of SDP. > > > > Reviewed-by: Martin Storsjö > > Signed-off-by: Limin

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

2021-12-02 Thread lance . lmwang
From: Limin Wang Old system is: 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 --- libavcodec/videotoolbox.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/videotoolbox.c

Re: [FFmpeg-devel] [PATCH] avcodec/videotoolbox: fix use of unknown builtin '__builtin_available'

2021-12-02 Thread lance . lmwang
On Thu, Dec 02, 2021 at 03:39:44PM +0100, Hendrik Leppkes wrote: > On Thu, Dec 2, 2021 at 2:20 PM wrote: > > > > From: Limin Wang > > > > Old system is: > > 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

[FFmpeg-devel] [PATCH] avcodec/videotoolbox: fix use of unknown builtin '__builtin_available'

2021-12-02 Thread lance . lmwang
From: Limin Wang Old system is: 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 --- libavcodec/videotoolbox.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/videotoolbox.c

Re: [FFmpeg-devel] [PATCH v3 2/2] avformat/rtspdec: get rid of the hardcoded max size for sdp

2021-12-02 Thread lance . lmwang
On Thu, Dec 02, 2021 at 01:20:00PM +0200, Martin Storsjö wrote: > On Thu, 2 Dec 2021, lance.lmw...@gmail.com wrote: > > > From: Limin Wang > > > > Signed-off-by: Limin Wang > > --- > > libavformat/rtspdec.c | 10 -- > > 1 file changed, 8 insertions(+), 2 deletions(-) > > LGTM, thanks!

[FFmpeg-devel] [PATCH v3 2/2] avformat/rtspdec: get rid of the hardcoded max size for sdp

2021-12-02 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavformat/rtspdec.c | 10 -- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/libavformat/rtspdec.c b/libavformat/rtspdec.c index 0e91e3e..2ada29a 100644 --- a/libavformat/rtspdec.c +++ b/libavformat/rtspdec.c @@ -172,7

[FFmpeg-devel] [PATCH v3 1/2] avformat/rtsp: load the sdp file with avio_read_to_bprint()

2021-12-02 Thread lance . lmwang
From: Limin Wang this allows getting rid of the hardcoded max size of SDP. Reviewed-by: Martin Storsjö Signed-off-by: Limin Wang --- libavformat/rtsp.c | 25 + 1 file changed, 9 insertions(+), 16 deletions(-) diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index

Re: [FFmpeg-devel] [PATCH v2] avformat/rtsp: load the sdp file with avio_read_to_bprint()

2021-12-02 Thread lance . lmwang
On Thu, Dec 02, 2021 at 10:04:37AM +0200, Martin Storsjö wrote: > On Thu, 2 Dec 2021, lance.lmw...@gmail.com wrote: > > > From: Limin Wang > > > > Signed-off-by: Limin Wang > > --- > > libavformat/rtsp.c | 23 +-- > > 1 file changed, 9 insertions(+), 14 deletions(-) > > > >

[FFmpeg-devel] [PATCH v2] avformat/rtsp: load the sdp file with avio_read_to_bprint()

2021-12-01 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavformat/rtsp.c | 23 +-- 1 file changed, 9 insertions(+), 14 deletions(-) diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index e6a4993..249a019 100644 --- a/libavformat/rtsp.c +++ b/libavformat/rtsp.c @@ -2373,9

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

2021-12-01 Thread lance . lmwang
On Wed, Dec 01, 2021 at 06:55:19PM +0100, Marton Balint wrote: > > > On Wed, 1 Dec 2021, lance.lmw...@gmail.com wrote: > > > On Wed, Dec 01, 2021 at 05:17:08PM +0200, Martin Storsjö wrote: > > > On Wed, 1 Dec 2021, lance.lmw...@gmail.com wrote: > > > > > > > On Wed, Dec 01, 2021 at 03:55:37PM

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

2021-12-01 Thread lance . lmwang
On Wed, Dec 01, 2021 at 05:17:08PM +0200, Martin Storsjö wrote: > On Wed, 1 Dec 2021, lance.lmw...@gmail.com wrote: > > > On Wed, Dec 01, 2021 at 03:55:37PM +0200, Martin Storsjö wrote: > > > On Wed, 1 Dec 2021, lance.lmw...@gmail.com wrote: > > > > > > > From: Limin Wang > > > > >

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

2021-12-01 Thread lance . lmwang
On Wed, Dec 01, 2021 at 03:55:37PM +0200, Martin Storsjö wrote: > On Wed, 1 Dec 2021, lance.lmw...@gmail.com wrote: > > > From: Limin Wang > > > > Signed-off-by: Limin Wang > > --- > > libavformat/rtsp.c | 30 -- > > 1 file changed, 20 insertions(+), 10 deletions(-)

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