[FFmpeg-devel] [PATCH v2 7/8] avfilter/spliter: Add VPE spliter filter

2020-05-30 Thread Zhang, Guiyong
This filter splite one input to multi output with different picture data. Signed-off-by: Qin.Wang --- configure| 1 + libavfilter/Makefile | 1 + libavfilter/allfilters.c | 1 + libavfilter/vf_spliter_vpe.c | 319 +++

[FFmpeg-devel] [PATCH v2 8/8] vfilter/pp: Add VPE post processing filter

2020-05-30 Thread Zhang, Guiyong
The input of this filter is raw video data, it supports most of the popular raw data formats like NV12, YUV420P, YUV420P10BE etc. Signed-off-by: Guiyong.zhang --- configure| 1 + libavfilter/Makefile | 1 + libavfilter/allfilters.c | 1 + libavfilter/vf_pp_vpe.c | 391

[FFmpeg-devel] [PATCH v2 6/8] vcodec/vp9enc: Add vp9 VPE HW encoder

2020-05-30 Thread Zhang, Guiyong
This encoder uses VPI(VPE Interface) API and library for vp9 encoding. Signed-off-by: Guiyong.zhang --- configure | 1 + libavcodec/Makefile | 1 + libavcodec/allcodecs.c | 1 + libavcodec/vpe_vp9enc.c | 536 libavcodec/vp

[FFmpeg-devel] [PATCH v2 5/8] avcodec/h26xenc: Add h264/hevc VPE HW encoder

2020-05-30 Thread Zhang, Guiyong
This encoder uses VPI(VPE Interface) API and library for h264 and hevc encoding. Signed-off-by: rxchen --- configure| 2 + libavcodec/Makefile | 2 + libavcodec/allcodecs.c | 2 + libavcodec/vpe_h26xenc.c | 633 +++ libavco

[FFmpeg-devel] [PATCH v2 4/8] avcodec/vp9dec: Add vp9 VPE HW decoder

2020-05-30 Thread Zhang, Guiyong
This decoder uses VPI(VPE Interface) API and library for vp9 decoding. Signed-off-by: Qin.Wang --- configure | 1 + libavcodec/Makefile | 1 + libavcodec/allcodecs.c | 1 + libavcodec/vpe_vp9dec.c | 67 + 4 files changed, 70 i

[FFmpeg-devel] [PATCH v2 3/8] avcodec/hevcdec: Add hevc VPE HW decoder

2020-05-30 Thread Zhang, Guiyong
This decoder uses VPI(VPE Interface) API and library for hevc decoding. Signed-off-by: Qin.Wang --- configure| 1 + libavcodec/Makefile | 1 + libavcodec/allcodecs.c | 1 + libavcodec/vpe_hevcdec.c | 69 4 files changed,

[FFmpeg-devel] [PATCH v2 2/8] avcodec/h264dec: Add h264 VPE HW decoder

2020-05-30 Thread Zhang, Guiyong
This decoder uses VPI(VPE Interface) API and library for h264 decoding. Signed-off-by: Qin.Wang --- configure | 1 + libavcodec/Makefile | 1 + libavcodec/allcodecs.c | 1 + libavcodec/vpe_dec_common.c | 476 libav

[FFmpeg-devel] [PATCH v2 1/8] avutil/hwcontext: Add VPE implementation

2020-05-30 Thread Zhang, Guiyong
VPE(VeriSilicon Paltform Engine) is VeriSilicon's hardware engine for multi formats video encoding and decoding. It is used with the VPE hwaccel codec API and library to initialize and use a VPE device which is within the hwcontext libavutil framework. Signed-off-by: Qin.Wang --- configure

[FFmpeg-devel] [PATCH 8/8] vfilter/pp: Add VPE post processing filter

2020-05-27 Thread Zhang, Guiyong
VPE(Video Pipeline Engine) is VeriSilicon's hardware engine for multi formats video encoding and decoding. This filter uses VPI(VPE Interface) API and library for raw video frame post-processing. The input of this filter is raw video data, it supports most of the popular raw data formats like NV1

[FFmpeg-devel] [PATCH 7/8] avfilter/spliter: Add VPE spliter filter

2020-05-27 Thread Zhang, Guiyong
VPE(Video Pipeline Engine) is VeriSilicon's hardware engine for multi formats video encoding and decoding. This filter splite one input to multi output with different picture data. Signed-off-by: Qin.Wang --- configure| 1 + libavfilter/Makefile | 1 + libavfilter

[FFmpeg-devel] [PATCH 6/8] vcodec/vp9enc: Add vp9 VPE HW encoder

2020-05-27 Thread Zhang, Guiyong
VPE(Video Pipeline Engine) is VeriSilicon's hardware engine for multi formats video encoding and decoding. This encoder uses VPI(VPE Interface) API and library for vp9 encoding. Signed-off-by: Guiyong.zhang --- configure | 1 + libavcodec/Makefile | 1 + libavcodec/allcodec

[FFmpeg-devel] [PATCH 5/8] avcodec/h26xenc: Add h264/hevc VPE HW encoder

2020-05-27 Thread Zhang, Guiyong
VPE(Video Pipeline Engine) is VeriSilicon's hardware engine for multi formats video encoding and decoding. This encoder uses VPI(VPE Interface) API and library for h264 and hevc encoding. Signed-off-by: rxchen --- configure| 2 + libavcodec/Makefile | 2 + libavcodec/all

[FFmpeg-devel] [PATCH 3/8] avcodec/hevcdec: Add hevc VPE HW decoder

2020-05-27 Thread Zhang, Guiyong
VPE(Video Pipeline Engine) is VeriSilicon's hardware engine for multi formats video encoding and decoding. This decoder uses VPI(VPE Interface) API and library for hevc decoding. Signed-off-by: Qin.Wang --- configure| 1 + libavcodec/Makefile | 1 + libavcodec/allcodecs.c

[FFmpeg-devel] [PATCH 4/8] avcodec/vp9dec: Add vp9 VPE HW decoder

2020-05-27 Thread Zhang, Guiyong
VPE(Video Pipeline Engine) is VeriSilicon's hardware engine for multi formats video encoding and decoding. This decoder uses VPI(VPE Interface) API and library for vp9 decoding. Signed-off-by: Qin.Wang --- configure | 1 + libavcodec/Makefile | 1 + libavcodec/allcodecs.c |

[FFmpeg-devel] [PATCH 2/8] avcodec/h264dec: Add h264 VPE HW decoder

2020-05-27 Thread Zhang, Guiyong
VPE(Video Pipeline Engine) is VeriSilicon's hardware engine for multi formats video encoding and decoding. This decoder uses VPI(VPE Interface) API and library for h264 decoding. Signed-off-by: Qin.Wang --- configure | 1 + libavcodec/Makefile | 1 + libavcodec/allc

[FFmpeg-devel] [PATCH 1/8] avutil/hwcontext: Add VPE implementation

2020-05-27 Thread Zhang, Guiyong
VPE(Video Pipeline Engine) is VeriSilicon's hardware engine for multi formats video encoding and decoding. It is used with the VPE hwaccel codec API and library to initialize and use a VPE device which is within the hwcontext libavutil framework. These VPE codecs are used in transcoding project -

[FFmpeg-devel] 答复: aubmit Verisilicon VPE hardware codec implementation

2020-05-27 Thread Zhang, Guiyong
Sorry the way sent this patch is incorrect, so please stop reviewing this patch in this thread, I will re-submit it in another email. -邮件原件- 发件人: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] 代表 Zhang, Guiyong 发送时间: 2020年5月28日 10:12 收件人: ffmpeg-devel@ffmpeg.org 主题: [FFmpeg-devel

[FFmpeg-devel] 答复: 答复: 答复: aubmit Verisilicon VPE hardware codec implementation

2020-05-27 Thread Zhang, Guiyong
> -Original Message- > From: ffmpeg-devel On Behalf Of > Zhang, Guiyong > Sent: Thursday, May 28, 2020 4:58 AM > To: FFmpeg development discussions and patches de...@ffmpeg.org> > Subject: [FFmpeg-devel] 答复: 答复: aubmit Verisilicon VPE hardware codec > implemen

[FFmpeg-devel] 答复: 答复: aubmit Verisilicon VPE hardware codec implementation

2020-05-27 Thread Zhang, Guiyong
hardware codec implementation > -Original Message- > From: ffmpeg-devel On Behalf Of > Zhang, Guiyong > Sent: Thursday, May 28, 2020 4:38 AM > To: FFmpeg development discussions and patches de...@ffmpeg.org> > Subject: [FFmpeg-devel] 答复: aubmit Verisilic

[FFmpeg-devel] 答复: aubmit Verisilicon VPE hardware codec implementation

2020-05-27 Thread Zhang, Guiyong
年5月28日 10:32 收件人: FFmpeg development discussions and patches 主题: Re: [FFmpeg-devel] aubmit Verisilicon VPE hardware codec implementation On Thu, May 28, 2020 at 10:22 AM Soft Works wrote: > > > > -Original Message- > > From: ffmpeg-devel On Behalf Of > > Zhang, Gu

[FFmpeg-devel] 答复: aubmit Verisilicon VPE hardware codec implementation

2020-05-27 Thread Zhang, Guiyong
licon VPE hardware codec implementation > -Original Message- > From: ffmpeg-devel On Behalf Of > Zhang, Guiyong > Sent: Thursday, May 28, 2020 4:12 AM > To: ffmpeg-devel@ffmpeg.org > Subject: [FFmpeg-devel] aubmit Verisilicon VPE hardware codec > implementation >

[FFmpeg-devel] aubmit Verisilicon VPE hardware codec implementation - hw spliter

2020-05-27 Thread Zhang, Guiyong
0007-avfilter-spliter-Add-VPE-spliter-filter.patch Description: 0007-avfilter-spliter-Add-VPE-spliter-filter.patch ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above,

[FFmpeg-devel] aubmit Verisilicon VPE hardware codec implementation - hw pp

2020-05-27 Thread Zhang, Guiyong
0008-vfilter-pp-Add-VPE-post-processing-filter.patch Description: 0008-vfilter-pp-Add-VPE-post-processing-filter.patch ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link ab

[FFmpeg-devel] aubmit Verisilicon VPE hardware codec implementation - vp9dec

2020-05-27 Thread Zhang, Guiyong
0004-avcodec-vp9dec-Add-vp9-VPE-HW-decoder.patch Description: 0004-avcodec-vp9dec-Add-vp9-VPE-HW-decoder.patch ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or

[FFmpeg-devel] aubmit Verisilicon VPE hardware codec implementation - vp9enc

2020-05-27 Thread Zhang, Guiyong
0006-vcodec-vp9enc-Add-VP9-VPE-HW-encoder.patch Description: 0006-vcodec-vp9enc-Add-VP9-VPE-HW-encoder.patch ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or em

[FFmpeg-devel] aubmit Verisilicon VPE hardware codec implementation - hevcdec

2020-05-27 Thread Zhang, Guiyong
0003-avcodec-hevcdec-Add-hevc-VPE-HW-decoder.patch Description: 0003-avcodec-hevcdec-Add-hevc-VPE-HW-decoder.patch ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above,

[FFmpeg-devel] aubmit Verisilicon VPE hardware codec implementation - h264enc

2020-05-27 Thread Zhang, Guiyong
0005-avcodec-h26xenc-Add-h264-hevc-VPE-HW-encoder.patch Description: 0005-avcodec-h26xenc-Add-h264-hevc-VPE-HW-encoder.patch ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit l

[FFmpeg-devel] aubmit Verisilicon VPE hardware codec implementation

2020-05-27 Thread Zhang, Guiyong
0001-avutil-hwcontext-Add-VPE-implementation.patch Description: 0001-avutil-hwcontext-Add-VPE-implementation.patch ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above,

[FFmpeg-devel] aubmit Verisilicon VPE hardware codec implementation - h264dec

2020-05-27 Thread Zhang, Guiyong
0002-avcodec-h264dec-Add-h264-VPE-HW-decoder.patch Description: 0002-avcodec-h264dec-Add-h264-VPE-HW-decoder.patch ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above,