Re: [FFmpeg-devel] [PATCH] doc/examples/qsv_decode.c: remove unused config.h header file

2024-03-11 Thread hung kuishing
> 在 2024年3月10日,21:55,Stefano Sabatini 写道: > > On date Saturday 2024-03-09 02:17:19 +0000, hung kuishing wrote: >> >> Signed-off-by: clarkh >> mailto:hungkuish...@outlook.com>> >> --- >> doc/examples/qsv_decode.c | 2 -- >> 1 file chang

[FFmpeg-devel] [PATCH] doc/examples/qsv_decode.c: remove unused config.h header file

2024-03-08 Thread hung kuishing
Signed-off-by: clarkh mailto:hungkuish...@outlook.com>> --- doc/examples/qsv_decode.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/doc/examples/qsv_decode.c b/doc/examples/qsv_decode.c index cc2662d5bd..901eac3b27 100644 --- a/doc/examples/qsv_decode.c +++ b/doc/examples/qsv_decode.c @@ -

Re: [FFmpeg-devel] [PATCH] doc/examples/qsv_transcode: EINVAL is more appropriate and ENAVAIL will fail build with visual studio

2023-12-14 Thread hung kuishing
Do, 2023-12-07 at 06:44 +, hung kuishing wrote: > > Signed-off-by: clarkh > > --- > >  doc/examples/qsv_transcode.c | 8 > >  1 file changed, 4 insertions(+), 4 deletions(-) > > > > diff --git a/doc/examples/qsv_transcode.c > > b/doc/examples

[FFmpeg-devel] [PATCH] doc/examples/qsv_transcode: EINVAL is more appropriate and ENAVAIL will fail build with visual studio

2023-12-06 Thread hung kuishing
Signed-off-by: clarkh --- doc/examples/qsv_transcode.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/examples/qsv_transcode.c b/doc/examples/qsv_transcode.c index 48128b200c..972126800b 100644 --- a/doc/examples/qsv_transcode.c +++ b/doc/examples/qsv_transcode.c

Re: [FFmpeg-devel] [PATCH v3 2/2] lavf: add prores bitstream demuxer and muxer

2023-07-27 Thread hung kuishing
> From: ffmpeg-devel On Behalf Of > Andreas Rheinhardt > Sent: Thursday, July 27, 2023 1:11 AM > To: ffmpeg-devel@ffmpeg.org > Subject: Re: [FFmpeg-devel] [PATCH v3 2/2] lavf: add prores bitstream > demuxer and muxer > > hung kuishing: > >> From: ffmpeg

Re: [FFmpeg-devel] [PATCH v3 2/2] lavf: add prores bitstream demuxer and muxer

2023-07-26 Thread hung kuishing
> From: ffmpeg-devel On Behalf Of > Derek Buitenhuis > Sent: Wednesday, July 26, 2023 8:55 PM > To: ffmpeg-devel@ffmpeg.org > Subject: Re: [FFmpeg-devel] [PATCH v3 2/2] lavf: add prores bitstream > demuxer and muxer > > On 7/26/2023 10:28 AM, hung kuishing wrote: &

Re: [FFmpeg-devel] [PATCH v3 1/2] lavc: add prores bitstream parser

2023-07-26 Thread hung kuishing
> From: ffmpeg-devel On Behalf Of > Paul B Mahol > Sent: Wednesday, July 26, 2023 9:02 PM > To: FFmpeg development discussions and patches de...@ffmpeg.org> > Subject: Re: [FFmpeg-devel] [PATCH v3 1/2] lavc: add prores bitstream > parser > > On Wed, Jul 26, 202

[FFmpeg-devel] [PATCH v3 2/2] lavf: add prores bitstream demuxer and muxer

2023-07-26 Thread hung kuishing
Signed-off-by: clarkh --- libavformat/Makefile | 2 ++ libavformat/allformats.c | 2 ++ libavformat/proresdec.c | 66 libavformat/rawenc.c | 13 4 files changed, 83 insertions(+) create mode 100644 libavformat/proresdec.c diff --git a

[FFmpeg-devel] [PATCH v3 1/2] lavc: add prores bitstream parser

2023-07-26 Thread hung kuishing
Signed-off-by: clarkh --- libavcodec/Makefile| 1 + libavcodec/parsers.c | 1 + libavcodec/prores_parser.c | 107 + 3 files changed, 109 insertions(+) create mode 100644 libavcodec/prores_parser.c diff --git a/libavcodec/Makefile b/libavcode

Re: [FFmpeg-devel] [PATCH] use bits_per_coded_sample if bits_per_raw_sample equal to 0 in pcmc tag, fix bug #10433

2023-07-25 Thread hung kuishing
> > On Jul 24, 2023, at 10:41, hung kuishing > wrote: > > > > Signed-off-by: clarkh > > --- > > libavformat/movenc.c | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/libavformat/movenc.c b/libavformat/movenc.

[FFmpeg-devel] 回复: [PATCH v2] add prores bitstream demuxer and muxer

2023-07-25 Thread hung kuishing
Hi, width and height use u(16) descriptor in prores specification, and spec does not limit scope, I guess 1~65535 are allowable. So I think I'll change it to check if they are equal to 0. What do you propose? -邮件原件- 发件人: ffmpeg-devel 代表 Tomas H?rdin 发送时间: 2023年7月25日 19:48 收件人: FFmpeg d

[FFmpeg-devel] [PATCH v2] add prores bitstream demuxer and muxer

2023-07-25 Thread hung kuishing
Signed-off-by: clarkh --- libavcodec/Makefile| 1 + libavcodec/parsers.c | 1 + libavcodec/prores_parser.c | 107 + libavformat/Makefile | 2 + libavformat/allformats.c | 2 + libavformat/proresdec.c| 66 ++

[FFmpeg-devel] 回复: [PATCH] add prores bitstream demuxer and muxer

2023-07-24 Thread hung kuishing
Andreas Rheinhardt: Thank you for your review! I will try use prefixed length. 发件人: ffmpeg-devel 代表 Andreas Rheinhardt 发送时间: 2023年7月24日 15:25 收件人: ffmpeg-devel@ffmpeg.org 主题: Re: [FFmpeg-devel] [PATCH] add prores bitstream demuxer and muxer hung kuishing

[FFmpeg-devel] [PATCH] libavfilter/vf_stack.c: check input height for avoiding crashed

2023-07-23 Thread hung kuishing
In the case of vertical layout, if the chroma height is ceil rounded when shifted to the right, the total height of the chroma input will be greater than the output height, and a crash occurs. So make sure that the luma height can be shifted to the right to get an integer chroma height Signed-o

[FFmpeg-devel] [PATCH] use bits_per_coded_sample if bits_per_raw_sample equal to 0 in pcmc tag, fix bug #10433

2023-07-23 Thread hung kuishing
Signed-off-by: clarkh --- libavformat/movenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/movenc.c b/libavformat/movenc.c index f1cc80b1b3..d08c056438 100644 --- a/libavformat/movenc.c +++ b/libavformat/movenc.c @@ -1237,7 +1237,7 @@ static int mov_write_pcmc_

[FFmpeg-devel] [PATCH] add prores bitstream demuxer and muxer

2023-07-23 Thread hung kuishing
--- libavcodec/Makefile| 1 + libavcodec/parsers.c | 1 + libavcodec/prores_parser.c | 91 ++ libavformat/Makefile | 2 + libavformat/allformats.c | 2 + libavformat/proresdec.c| 62 ++ libavformat/rawenc.c