[FFmpeg-devel] [PATCH 2/2] hwcontext_vaapi: try VA_SURFACE_ATTRIB_MEM_TYPE_DRM_PRIME_2 firstly when importing a DMABuf

2020-06-18 Thread Haihao Xiang
User should provide the modifier when importing a DMABuf if this DMABuf has modifier. Signed-off-by: Haihao Xiang --- libavutil/hwcontext_vaapi.c | 137 +--- 1 file changed, 126 insertions(+), 11 deletions(-) diff --git a/libavutil/hwcontext_vaapi.c b/libavutil/h

[FFmpeg-devel] [PATCH 1/2] hwcontext_vaapi: the first parameter is the AVHWFramesContext for dst

2020-06-18 Thread Haihao Xiang
vaapi_map_from_drm() is the implementation of map_to when src format is AV_PIX_FMT_DRM_PRIME, and the first parameter of map_to is the AVHWFramesContext for dst Signed-off-by: Haihao Xiang --- libavutil/hwcontext_vaapi.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/l

Re: [FFmpeg-devel] [RFC PATCH] libavcodec/jpeg2000: Make corrections jpeg2000 decoder

2020-06-18 Thread Gautam Ramakrishnan
On Fri, Jun 19, 2020 at 1:34 AM Carl Eugen Hoyos wrote: > > Am Do., 18. Juni 2020 um 21:50 Uhr schrieb : > > > > From: Gautam Ramakrishnan > > > > This is with reference to my previous email on the mailing list > > with subject: "query on pixel formats". > > I wish to cleanup some errors in the d

[FFmpeg-devel] [PATCH V2] avfilter/zoompan: add in_time variable

2020-06-18 Thread exwm
Currently, the zoompan filter exposes a time variable for use in the zoom, x, and y expressions. This variable is perhaps better named out_time as it represents the timestamp in seconds of each output frame produced by zoompan. This patch does not rename the time variable to out_time as this may be

[FFmpeg-devel] [PATCH v1 9/9] FATE/pixfmt_best: add more test case

2020-06-18 Thread Fei Wang
The new test case can cover the issue mentioned in commit 97ba9c1a Signed-off-by: Fei Wang --- libavutil/tests/pixfmt_best.c | 18 ++ tests/ref/fate/pixfmt_best| 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/libavutil/tests/pixfmt_best.c b/libavutil/te

[FFmpeg-devel] [PATCH v1 8/9] FATE/pixfmt_best: fix fail by new rules in commit 97ba9c1a

2020-06-18 Thread Fei Wang
Signed-off-by: Fei Wang --- libavutil/tests/pixfmt_best.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavutil/tests/pixfmt_best.c b/libavutil/tests/pixfmt_best.c index 53f7264207..01387c7c98 100644 --- a/libavutil/tests/pixfmt_best.c +++ b/libavutil/tests/pixfmt_best.c @

[FFmpeg-devel] [PATCH v1 6/9] lavc/vaapi_hevc: support 4:2:0 12bit decode

2020-06-18 Thread Fei Wang
Signed-off-by: Fei Wang --- libavcodec/vaapi_decode.c | 3 +++ libavcodec/vaapi_hevc.c | 3 +++ 2 files changed, 6 insertions(+) diff --git a/libavcodec/vaapi_decode.c b/libavcodec/vaapi_decode.c index 5e4f62baad..1188f530c2 100644 --- a/libavcodec/vaapi_decode.c +++ b/libavcodec/vaapi_decode.

[FFmpeg-devel] [PATCH v1 5/9] lavu/hwcontext_vaapi: add vaapi_format_map support for P012

2020-06-18 Thread Fei Wang
The format will be used for VAAPI and QSV HEVC/VP9 12bit decode. Signed-off-by: Fei Wang --- libavutil/hwcontext_vaapi.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libavutil/hwcontext_vaapi.c b/libavutil/hwcontext_vaapi.c index b31cf95850..b93d8f23e8 100644 --- a/libavutil/hwcontext_

[FFmpeg-devel] [PATCH v1 4/9] lavc/hevcdec: add 4:2:0 12-bit VAAPI decode support

2020-06-18 Thread Fei Wang
Signed-off-by: Fei Wang --- libavcodec/hevcdec.c | 4 1 file changed, 4 insertions(+) diff --git a/libavcodec/hevcdec.c b/libavcodec/hevcdec.c index c9e28f5826..d9c54fbc6a 100644 --- a/libavcodec/hevcdec.c +++ b/libavcodec/hevcdec.c @@ -433,6 +433,10 @@ static enum AVPixelFormat get_format(

[FFmpeg-devel] [PATCH v1 7/9] lavu/pix_fmt: consider bits per pixel in finding best pix fmt

2020-06-18 Thread Fei Wang
By using bits per pixel in finding best pix fmt will make the result more accurate. For example, the src fmt is AV_PIX_FMT_YUV420P10LE and dst fmt are AV_PIX_FMT_P012LE and AV_PIX_FMT_P010LE. In this case the two dst fmts have the same scores and padded bits and number of components and P012 will b

[FFmpeg-devel] [PATCH v1 2/9] doc/APIchanges: add new AV_PIX_FMT_P012

2020-06-18 Thread Fei Wang
Signed-off-by: Fei Wang --- doc/APIchanges | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/APIchanges b/doc/APIchanges index 1d6cc36b8c..75bca69393 100644 --- a/doc/APIchanges +++ b/doc/APIchanges @@ -15,6 +15,9 @@ libavutil: 2017-10-21 API changes, most recent first: +2020-06

[FFmpeg-devel] [PATCH v1 3/9] swscale: Add swscale input support for P012

2020-06-18 Thread Fei Wang
Signed-off-by: Fei Wang --- libswscale/input.c | 52 ++ libswscale/utils.c | 1 + 2 files changed, 53 insertions(+) diff --git a/libswscale/input.c b/libswscale/input.c index 0bd1aa7bc9..b0a7d21e60 100644 --- a/libswscale/input.c +++ b/libswscale/inpu

[FFmpeg-devel] [PATCH v1 1/9] lavu/pix_fmt: add P012 pixel format

2020-06-18 Thread Fei Wang
P012 is 12bit planner format which is similar to NV12. It using two bytes to store 12bit valid data and 4bit zero in LSB. This format will be used for hardware decode/encode in VAAPI and QSV. Signed-off-by: Fei Wang --- libavutil/pixdesc.c | 24 libavutil/pi

[FFmpeg-devel] [PATCH] avfilter/zoompan: add in_time variable

2020-06-18 Thread exwm
Currently, the zoompan filter exposes a time variable for use in the zoom, x, and y expressions. This variable is perhaps better named out_time as it represents the timestamp in seconds of each output frame produced by zoompan. This patch does not rename the time variable to out_time as this may be

Re: [FFmpeg-devel] [PATCH] avdevice/decklink_dec: fix no warning message if no input signal detected

2020-06-18 Thread Limin Wang
On Thu, Jun 18, 2020 at 07:37:50PM +0200, Marton Balint wrote: > > > On Thu, 18 Jun 2020, lance.lmw...@gmail.com wrote: > > >From: Limin Wang > > > >Signed-off-by: Limin Wang > >--- > >libavdevice/decklink_dec.cpp | 2 +- > >1 file changed, 1 insertion(+), 1 deletion(-) > > > >diff --git a/liba

Re: [FFmpeg-devel] [PATCH v3] avformat/icecast: Add option to use TLS connection

2020-06-18 Thread Marvin Scholz
Ping? Anything else needed to get this merged? On 14 Jun 2020, at 22:23, Marvin Scholz wrote: On 14 Jun 2020, at 15:42, Michael Niedermayer wrote: On Sun, Jun 14, 2020 at 12:52:44AM +0200, Marvin Scholz wrote: --- doc/protocols.texi| 3 +++ libavformat/icecast.c | 6 +- 2 files chan

Re: [FFmpeg-devel] [PATCH] avcodec/ccaption_dec: rework non-real-time mode by delaying subtitles

2020-06-18 Thread Carl Eugen Hoyos
Am Do., 18. Juni 2020 um 22:10 Uhr schrieb Paul B Mahol : > > On 6/18/20, Carl Eugen Hoyos wrote: > > Am Do., 18. Juni 2020 um 22:05 Uhr schrieb Paul B Mahol : > >> > >> So it give similar output as visual output of real-time mode. > >> > >> FATE results changes for non-realtime mode so it is upda

Re: [FFmpeg-devel] [PATCH] avcodec/ccaption_dec: rework non-real-time mode by delaying subtitles

2020-06-18 Thread Carl Eugen Hoyos
Am Do., 18. Juni 2020 um 22:10 Uhr schrieb Paul B Mahol : > > On 6/18/20, Carl Eugen Hoyos wrote: > > Am Do., 18. Juni 2020 um 22:05 Uhr schrieb Paul B Mahol : > >> > >> So it give similar output as visual output of real-time mode. > >> > >> FATE results changes for non-realtime mode so it is upda

Re: [FFmpeg-devel] [PATCH] avcodec/ccaption_dec: rework non-real-time mode by delaying subtitles

2020-06-18 Thread Paul B Mahol
On 6/18/20, Carl Eugen Hoyos wrote: > Am Do., 18. Juni 2020 um 22:05 Uhr schrieb Paul B Mahol : >> >> So it give similar output as visual output of real-time mode. >> >> FATE results changes for non-realtime mode so it is updated. > > >> diff --git a/tests/ref/fate/sub-cc b/tests/ref/fate/sub-cc >

Re: [FFmpeg-devel] [PATCH] avcodec/ccaption_dec: rework non-real-time mode by delaying subtitles

2020-06-18 Thread Carl Eugen Hoyos
Am Do., 18. Juni 2020 um 22:05 Uhr schrieb Paul B Mahol : > > So it give similar output as visual output of real-time mode. > > FATE results changes for non-realtime mode so it is updated. > diff --git a/tests/ref/fate/sub-cc b/tests/ref/fate/sub-cc > index 2b30a35be0..0528c846d4 100644 > --- a/t

[FFmpeg-devel] [PATCH] avcodec/ccaption_dec: rework non-real-time mode by delaying subtitles

2020-06-18 Thread Paul B Mahol
So it give similar output as visual output of real-time mode. FATE results changes for non-realtime mode so it is updated. Signed-off-by: Paul B Mahol --- libavcodec/ccaption_dec.c| 117 --- tests/ref/fate/sub-cc| 4 +- tests/ref/fate/sub-cc-scte20

Re: [FFmpeg-devel] [RFC PATCH] libavcodec/jpeg2000: Make corrections jpeg2000 decoder

2020-06-18 Thread Carl Eugen Hoyos
Am Do., 18. Juni 2020 um 21:50 Uhr schrieb : > > From: Gautam Ramakrishnan > > This is with reference to my previous email on the mailing list > with subject: "query on pixel formats". > I wish to cleanup some errors in the decoder code. These changes > would allow the samples p1_01.j2k and p1_07.

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

2020-06-18 Thread Paul B Mahol
Will apply shortly. ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-devel] [PATCH] avcodec/cbs_av1: Use unsigned to avoid undefined shift

2020-06-18 Thread Michael Niedermayer
On Thu, Jun 18, 2020 at 02:41:22PM +0200, Andreas Rheinhardt wrote: > Fixes: assertion failure > Fixes: left shift of 1 by 31 places cannot be represented in type 'int' > Fixes: > 23264/clusterfuzz-testcase-minimized-ffmpeg_BSF_AV1_METADATA_fuzzer-6308429248593920 > > Found-by: continuous fuzzing

[FFmpeg-devel] [RFC PATCH] libavcodec/jpeg2000: Make corrections jpeg2000 decoder

2020-06-18 Thread gautamramk
From: Gautam Ramakrishnan This is with reference to my previous email on the mailing list with subject: "query on pixel formats". I wish to cleanup some errors in the decoder code. These changes would allow the samples p1_01.j2k and p1_07.j2k to be decoded. However, I am facing issues with pixel

[FFmpeg-devel] [PATCH 2/2] avcodec/cbs_av1: Simplify writing uvlc elements

2020-06-18 Thread Andreas Rheinhardt
There is no reason to special-case writing a value of zero as uvlc element as the generic code is perfectly capable of doing so. Signed-off-by: Andreas Rheinhardt --- libavcodec/cbs_av1.c | 15 +-- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/libavcodec/cbs_av1.c b/

[FFmpeg-devel] [PATCH v2 1/2] avcodec/cbs_av1: Fix writing uvlc numbers >= INT_MAX

2020-06-18 Thread Andreas Rheinhardt
Fixes: assertion failure Fixes: left shift of 1 by 31 places cannot be represented in type 'int' Fixes: 23264/clusterfuzz-testcase-minimized-ffmpeg_BSF_AV1_METADATA_fuzzer-6308429248593920 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed

Re: [FFmpeg-devel] [PATCH] avdevice/decklink_dec: fix no warning message if no input signal detected

2020-06-18 Thread Marton Balint
On Thu, 18 Jun 2020, lance.lmw...@gmail.com wrote: From: Limin Wang Signed-off-by: Limin Wang --- libavdevice/decklink_dec.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavdevice/decklink_dec.cpp b/libavdevice/decklink_dec.cpp index 82106aa..90569dc 100644 --- a/l

Re: [FFmpeg-devel] [PATCH] Speedhq: Decode field 2 correctly

2020-06-18 Thread Carl Eugen Hoyos
Am Do., 18. Juni 2020 um 18:44 Uhr schrieb Jean-Baptiste Kempf : > > On Thu, Jun 18, 2020, at 18:40, Carl Eugen Hoyos wrote: > > Am Do., 18. Juni 2020 um 18:28 Uhr schrieb Jean-Baptiste Kempf > > : > > > > > > Sorry for the late answer. > > > > > > There are no actual files, but this is used in the

Re: [FFmpeg-devel] [PATCH] Speedhq: Decode field 2 correctly

2020-06-18 Thread Jean-Baptiste Kempf
On Thu, Jun 18, 2020, at 18:40, Carl Eugen Hoyos wrote: > Am Do., 18. Juni 2020 um 18:28 Uhr schrieb Jean-Baptiste Kempf > : > > > > Sorry for the late answer. > > > > There are no actual files, but this is used in the NDI streams. > > There is a new library for that here: > > https://code.videolan

Re: [FFmpeg-devel] [PATCH] Speedhq: Decode field 2 correctly

2020-06-18 Thread Carl Eugen Hoyos
Am Do., 18. Juni 2020 um 18:28 Uhr schrieb Jean-Baptiste Kempf : > > Sorry for the late answer. > > There are no actual files, but this is used in the NDI streams. > There is a new library for that here: > https://code.videolan.org/jbk/libndi/ and this is how I found out about that. Given that thi

Re: [FFmpeg-devel] [PATCH] Speedhq: Decode field 2 correctly

2020-06-18 Thread Jean-Baptiste Kempf
Sorry for the late answer. There are no actual files, but this is used in the NDI streams. There is a new library for that here: https://code.videolan.org/jbk/libndi/ and this is how I found out about that. On Thu, May 14, 2020, at 21:28, Paul B Mahol wrote: > Do you have actual file this fixes?

Re: [FFmpeg-devel] [PATCH] avdevice/decklink_dec: extracting and outputing klv from vanc

2020-06-18 Thread Zivkovic, Milos
Hello, > Please in the future send patches as in-line rather than attachments. git send-email wasn't working for this email. I attached the patch only after asking on #ffmpeg-devel IRC channel if it was okay. Is simply pasting the patch contents enough? > This is referencing the incorrect specif

[FFmpeg-devel] [PATCH] avdevice/decklink_dec: fix no warning message if no input signal detected

2020-06-18 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavdevice/decklink_dec.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavdevice/decklink_dec.cpp b/libavdevice/decklink_dec.cpp index 82106aa..90569dc 100644 --- a/libavdevice/decklink_dec.cpp +++ b/libavdevice/decklink

[FFmpeg-devel] [VOTE] General Assembly extra members

2020-06-18 Thread Jean-Baptiste Kempf
Hello fellow geeks, If you are eligible to vote in the General Assembly of FFmpeg developers, you should have received an email to vote. This first vote is about adding new members to the general assembly. These are people do not meet the technical criteria set out in the meetings but were iden

[FFmpeg-devel] [PATCH 1/2] libavfilter/vf_colorconstancy.c : Cleanup code for new filter

2020-06-18 Thread Yatendra Singh
Signed-off-by: Yatendra Singh --- libavfilter/vf_colorconstancy.c | 47 ++--- 1 file changed, 14 insertions(+), 33 deletions(-) diff --git a/libavfilter/vf_colorconstancy.c b/libavfilter/vf_colorconstancy.c index eae62204b5..d36400bd35 100644 --- a/libavfilter/vf_colo

Re: [FFmpeg-devel] [PATCH 1/2 v4] avcodec/encode: restructure the core encoding code

2020-06-18 Thread James Almer
On 5/26/2020 9:08 AM, Michael Niedermayer wrote: > On Mon, May 25, 2020 at 01:59:16PM -0300, James Almer wrote: >> This commit follows the same logic as 061a0c14bb, but for the encode API: The >> new public encoding API will no longer be a wrapper around the old deprecated >> one, and the internal

Re: [FFmpeg-devel] [PATCH 3/4] avcodec/cbs_av1: Fixes: check if the value of cbs_av1_write_uvlc() is supported

2020-06-18 Thread Andreas Rheinhardt
Michael Niedermayer: > Fixes: assertion failure > Fixes: left shift of 1 by 31 places cannot be represented in type 'int' > Fixes: > 23264/clusterfuzz-testcase-minimized-ffmpeg_BSF_AV1_METADATA_fuzzer-6308429248593920 > > Found-by: continuous fuzzing process > https://github.com/google/oss-fuzz/

[FFmpeg-devel] [PATCH 2/2] libavfilter/vf_colorconstancy.c : Adding weighted greyedge

2020-06-18 Thread Yatendra Singh
Signed-off-by: Yatendra Singh --- doc/filters.texi| 36 ++ libavfilter/Makefile| 1 + libavfilter/allfilters.c| 1 + libavfilter/vf_colorconstancy.c | 215 4 files changed, 253 insertions(+) diff --git a/doc/filters.te

Re: [FFmpeg-devel] [PATCH v4 2/3] avfilter/vf_overlay: add yuv420p10 and yuv422p10 10bit format support

2020-06-18 Thread lance . lmwang
On Thu, Jun 18, 2020 at 01:34:52PM +0200, Paul B Mahol wrote: > Is auto option still working with these formats? No, overlay auto are using alpha format, it's always failed to work for auto. So it's better to force the output. > > On 6/5/20, lance.lmw...@gmail.com wrote: > > From: Limin Wang

Re: [FFmpeg-devel] [PATCH] avcodec/cbs_av1: Use unsigned to avoid undefined shift

2020-06-18 Thread James Almer
On 6/18/2020 9:41 AM, Andreas Rheinhardt wrote: > Fixes: assertion failure > Fixes: left shift of 1 by 31 places cannot be represented in type 'int' > Fixes: > 23264/clusterfuzz-testcase-minimized-ffmpeg_BSF_AV1_METADATA_fuzzer-6308429248593920 > > Found-by: continuous fuzzing process > https://

[FFmpeg-devel] [PATCH] avcodec/cbs_av1: Use unsigned to avoid undefined shift

2020-06-18 Thread Andreas Rheinhardt
Fixes: assertion failure Fixes: left shift of 1 by 31 places cannot be represented in type 'int' Fixes: 23264/clusterfuzz-testcase-minimized-ffmpeg_BSF_AV1_METADATA_fuzzer-6308429248593920 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed

[FFmpeg-devel] [PATCH 2/4] avutil/avsscanf: Add () to avoid integer overflow in scanexp()

2020-06-18 Thread Michael Niedermayer
Fixes: signed integer overflow: 2147483610 + 52 cannot be represented in type 'int' Fixes: 23260/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_PBM_fuzzer-5187871274434560 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Micha

[FFmpeg-devel] [PATCH 1/4] avcodec/mv30: Fix integer overflows in idct2_1d()

2020-06-18 Thread Michael Niedermayer
Fixes: signed integer overflow: 6500736 * 473 cannot be represented in type 'int' Fixes: 23259/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_MV30_fuzzer-5179394271477760 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michae

[FFmpeg-devel] [PATCH 4/4] avcodec/tdsc: Only reallocate deflatebuffer if its size changed

2020-06-18 Thread Michael Niedermayer
Fixes: Timeout (47sec -> 35msec) Fixes: 23375/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_TDSC_fuzzer-5633949497032704 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer --- libavcodec/tdsc.c | 13 +++

[FFmpeg-devel] [PATCH 3/4] avcodec/cbs_av1: Fixes: check if the value of cbs_av1_write_uvlc() is supported

2020-06-18 Thread Michael Niedermayer
Fixes: assertion failure Fixes: left shift of 1 by 31 places cannot be represented in type 'int' Fixes: 23264/clusterfuzz-testcase-minimized-ffmpeg_BSF_AV1_METADATA_fuzzer-6308429248593920 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-

Re: [FFmpeg-devel] [PATCH v4 2/3] avfilter/vf_overlay: add yuv420p10 and yuv422p10 10bit format support

2020-06-18 Thread Paul B Mahol
Is auto option still working with these formats? On 6/5/20, lance.lmw...@gmail.com wrote: > From: Limin Wang > > Signed-off-by: Limin Wang > --- > doc/filters.texi | 6 > libavfilter/vf_overlay.c | 79 > > libavfilter/vf_overlay.h

Re: [FFmpeg-devel] [PATCH] avformat/isom: enable extended language for mov

2020-06-18 Thread Derek Buitenhuis
On 12/06/2020 00:35, Yongle Lin wrote: > Allow extended language codes using ISO designation for text tracks in mov > format when strictness is set to experimental > --- > This patch includes a support for mov format to extend language codes using > ISO designation for text > tracks(https://deve

Re: [FFmpeg-devel] [PATCH] add ability to bypass custom video pts generation and use capture filter provided pts

2020-06-18 Thread Dmitry Sinitsyn
Hello, Could anyone review my patch? -- Dmitry Sinitsyn ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "un

Re: [FFmpeg-devel] [PATCH 2/3] lavf/hls: Add missed side data/disposition

2020-06-18 Thread myp...@gmail.com
On Thu, Jun 18, 2020 at 5:26 PM wrote: > > On Thu, Jun 18, 2020 at 11:52:58AM +0800, myp...@gmail.com wrote: > > On Thu, Jun 4, 2020 at 10:39 PM Jun Zhao wrote: > > > > > > From: vacingfang > > > > > PLease fix the typo in the comment message. > > | |

Re: [FFmpeg-devel] [PATCH 2/3] lavf/hls: Add missed side data/disposition

2020-06-18 Thread lance . lmwang
On Thu, Jun 18, 2020 at 11:52:58AM +0800, myp...@gmail.com wrote: > On Thu, Jun 4, 2020 at 10:39 PM Jun Zhao wrote: > > > > From: vacingfang > > PLease fix the typo in the comment message. | | | > > hls demuxer get the strem info form

[FFmpeg-devel] [PATCH 6/6] dnn-layer-math-unary-test: add unit test for atan

2020-06-18 Thread Ting Fu
Signed-off-by: Ting Fu --- tests/dnn/dnn-layer-mathunary-test.c | 4 1 file changed, 4 insertions(+) diff --git a/tests/dnn/dnn-layer-mathunary-test.c b/tests/dnn/dnn-layer-mathunary-test.c index 540ea4cef5..bf77c44bbe 100644 --- a/tests/dnn/dnn-layer-mathunary-test.c +++ b/tests/dnn/dnn-l

[FFmpeg-devel] [PATCH 3/6] dnn_backend_native_layer_mathunary: add acos support

2020-06-18 Thread Ting Fu
It can be tested with the model generated with below python script: import tensorflow as tf import numpy as np import imageio in_img = imageio.imread('input.jpeg') in_img = in_img.astype(np.float32)/255.0 in_data = in_img[np.newaxis, :] x = tf.placeholder(tf.float32, shape=[1, None, None, 3], na

[FFmpeg-devel] [PATCH 5/6] dnn_backend_native_layer_mathunary: add atan support

2020-06-18 Thread Ting Fu
It can be tested with the model generated with below python script: import tensorflow as tf import numpy as np import imageio in_img = imageio.imread('input.jpeg') in_img = in_img.astype(np.float32)/255.0 in_data = in_img[np.newaxis, :] x = tf.placeholder(tf.float32, shape=[1, None, None, 3], na

[FFmpeg-devel] [PATCH 4/6] dnn-layer-math-unary-test: add unit test for acos

2020-06-18 Thread Ting Fu
Signed-off-by: Ting Fu --- tests/dnn/dnn-layer-mathunary-test.c | 4 1 file changed, 4 insertions(+) diff --git a/tests/dnn/dnn-layer-mathunary-test.c b/tests/dnn/dnn-layer-mathunary-test.c index ac26f7445f..540ea4cef5 100644 --- a/tests/dnn/dnn-layer-mathunary-test.c +++ b/tests/dnn/dnn-l

[FFmpeg-devel] [PATCH 1/6] dnn_backend_native_layer_mathunary: add asin support

2020-06-18 Thread Ting Fu
It can be tested with the model generated with below python script: import tensorflow as tf import numpy as np import imageio in_img = imageio.imread('input.jpeg') in_img = in_img.astype(np.float32)/255.0 in_data = in_img[np.newaxis, :] x = tf.placeholder(tf.float32, shape=[1, None, None, 3], na

[FFmpeg-devel] [PATCH 2/6] dnn-layer-math-unary-test: add unit test for asin

2020-06-18 Thread Ting Fu
Signed-off-by: Ting Fu --- tests/dnn/dnn-layer-mathunary-test.c | 4 1 file changed, 4 insertions(+) diff --git a/tests/dnn/dnn-layer-mathunary-test.c b/tests/dnn/dnn-layer-mathunary-test.c index 9a7e07c98c..ac26f7445f 100644 --- a/tests/dnn/dnn-layer-mathunary-test.c +++ b/tests/dnn/dnn-l

Re: [FFmpeg-devel] [PATCH 1/3] lavc/avcodec: Add caps for the support of variable dimension encoding

2020-06-18 Thread Fu, Linjie
> From: ffmpeg-devel On Behalf Of > Lynne > Sent: Thursday, June 18, 2020 16:04 > To: FFmpeg development discussions and patches de...@ffmpeg.org> > Subject: Re: [FFmpeg-devel] [PATCH 1/3] lavc/avcodec: Add caps for the > support of variable dimension encoding > > Jun 18, 2020, 04:02 by linjie..

Re: [FFmpeg-devel] [PATCH 2/3] lavf/hls: Add missed side data/disposition

2020-06-18 Thread Steven Liu
> 在 2020年6月4日,22:12,Jun Zhao 写道: > > From: vacingfang > > hls demuxer get the strem info form sub-stream, but missed sida > data/disposition part, e,g, missed the DOVI sida data when the > stream is Dolby Vision streams. > > Signed-off-by: vacingfang > --- > libavformat/hls.c | 14 +

Re: [FFmpeg-devel] [PATCH 1/3] lavc/avcodec: Add caps for the support of variable dimension encoding

2020-06-18 Thread Lynne
Jun 18, 2020, 04:02 by linjie...@intel.com: >> From: ffmpeg-devel On Behalf Of Fu, >> Linjie >> Sent: Tuesday, June 9, 2020 17:02 >> To: FFmpeg development discussions and patches > de...@ffmpeg.org> >> Subject: Re: [FFmpeg-devel] [PATCH 1/3] lavc/avcodec: Add caps for the >> support of variable