[FFmpeg-devel] [PATCH, v2 4/4] tests/checkasm: add overflow test for hevc_add_res

2020-03-04 Thread Linjie Fu
Add overflow test for hevc_add_res when int16_t coeff = -32768, and doubled the test cases. The result of C is good, while ASM is not. To verify: make fate-checkasm-hevc_add_res ffmpeg/tests/checkasm/checkasm --test=hevc_add_res ./checkasm --test=hevc_add_res checkasm: using random seed

[FFmpeg-devel] [PATCH, v2 3/4] lavc/x86/hevc_add_res: Fix coeff overflow in ADD_RES_SSE_16_32_8

2020-03-04 Thread Linjie Fu
Fix overflow for coeff -32768 in function ADD_RES_SSE_16_32_8 with no performance drop.(SSE2/AVX/AVX2) ./checkasm --test=hevc_add_res --bench Mainline: - hevc_add_res.add_residual [OK] hevc_add_res_32x32_8_sse2: 127.5 hevc_add_res_32x32_8_avx: 127.0 hevc_add_res_32x32_8_avx2: 86.5

[FFmpeg-devel] [PATCH 1/4] lavc/x86/hevc_add_res: Fix overflow in ADD_RES_MMX_4_8

2020-03-04 Thread Linjie Fu
Fix overflow for coeff -32768 in function ADD_RES_MMX_4_8 with no performance drop. ./checkasm --test=hevc_add_res --bench Mainline: - hevc_add_res.add_residual [OK] hevc_add_res_4x4_8_mmxext: 15.5 Add overflow test case: - hevc_add_res.add_residual [FAILED] After: -

[FFmpeg-devel] [PATCH 2/4] lavc/x86/hevc_add_res: Fix overflow in ADD_RES_SSE_8_8

2020-03-04 Thread Linjie Fu
Fix overflow for coeff -32768 in function ADD_RES_SSE_8_8 with no performance drop. ./checkasm --test=hevc_add_res --bench Mainline: - hevc_add_res.add_residual [OK] hevc_add_res_8x8_8_sse2: 15.5 Add overflow test case: - hevc_add_res.add_residual [FAILED] After: -

[FFmpeg-devel] [PATCH] lavc/vaapi_encode_h265: add encoding support for 4:2:2 10 bit

2020-03-04 Thread Linjie Fu
Enables VMEPAK encoding on ICL. Signed-off-by: Linjie Fu --- Needs support [1] in media driver to get it work correctly. With [2] supported in libva, setting VA_SURFACE_ATTRIB_USAGE_HINT_RECON to the recon surface and resize them in driver would be more robust in ffmpeg level. [1]

[FFmpeg-devel] [PATCH] lavc/vaapi_encode_h265: fix conf_win_xxx_offset for 4:2:2/4:4:4 encoding

2020-03-04 Thread Linjie Fu
Based on Table 6-1, set SubWidth and SubHeightC depending on chroma format. Based on D-28 and D-29, set the correct cropped width/height. croppedWidth = pic_width_in_luma_samples − SubWidthC * ( conf_win_right_offset + conf_win_left_offset ); croppedHeight =

[FFmpeg-devel] [PATCH, RFC] lavc/vaapi_encode_h265: add support for low power mode for HEVC encode

2020-03-04 Thread Linjie Fu
Enable hevc_vaapi vdenc: - media-driver require CTU size must be set as 64x64 at low power mode - cu_qp_delta_enabled_flag should be enabled for low power mode - diff_cu_qp_delta_depth == log2_diff_max_min_luma_coding_block_size - low delay B to replace P frame - same

Re: [FFmpeg-devel] [PATCH, v2 1/4] tests/checkasm: add overflow test for hevc_add_res

2020-03-04 Thread Fu, Linjie
> -Original Message- > From: Fu, Linjie > Sent: Thursday, March 5, 2020 15:17 > To: ffmpeg-devel@ffmpeg.org > Cc: Fu, Linjie ; Xu, Guangxin > Subject: [PATCH,v2 1/4] tests/checkasm: add overflow test for hevc_add_res > > Add overflow test for hevc_add_res when int16_t coeff = -32768, >

[FFmpeg-devel] [PATCH 3/4] lavc/x86/hevc_add_res: Fix overflow in ADD_RES_SSE_8_8

2020-03-04 Thread Linjie Fu
Fix overflow for coeff -32768 in function ADD_RES_SSE_8_8 with no performance drop. ./checkasm --test=hevc_add_res --bench Mainline: - hevc_add_res.add_residual [OK] hevc_add_res_8x8_8_sse2: 15.5 Add overflow test case: - hevc_add_res.add_residual [FAILED] After: -

[FFmpeg-devel] [PATCH, v2 1/4] tests/checkasm: add overflow test for hevc_add_res

2020-03-04 Thread Linjie Fu
Add overflow test for hevc_add_res when int16_t coeff = -32768, and doubled the test cases. The result of C is good, while ASM is not. To verify: make fate-checkasm-hevc_add_res ffmpeg/tests/checkasm/checkasm --test=hevc_add_res ./checkasm --test=hevc_add_res checkasm: using random seed

[FFmpeg-devel] [PATCH 2/4] lavc/x86/hevc_add_res: Fix overflow in ADD_RES_MMX_4_8

2020-03-04 Thread Linjie Fu
Fix overflow for coeff -32768 in function ADD_RES_MMX_4_8 with no performance drop. ./checkasm --test=hevc_add_res --bench Mainline: - hevc_add_res.add_residual [OK] hevc_add_res_4x4_8_mmxext: 15.5 Add overflow test case: - hevc_add_res.add_residual [FAILED] After: -

Re: [FFmpeg-devel] [PATCH 3/4] vaapi_encode_h265: Query encoding block sizes and features

2020-03-04 Thread Fu, Linjie
> -Original Message- > From: ffmpeg-devel On Behalf Of > Mark Thompson > Sent: Thursday, March 5, 2020 08:25 > To: ffmpeg-devel@ffmpeg.org > Subject: [FFmpeg-devel] [PATCH 3/4] vaapi_encode_h265: Query encoding > block sizes and features > > --- > Requires

[FFmpeg-devel] [PATCH] avcodec/avcodec: Fix typos

2020-03-04 Thread Andriy Gelman
From: Andriy Gelman Signed-off-by: Andriy Gelman --- libavcodec/avcodec.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 5a0fc3405c5..8cda2422efa 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -5037,7

Re: [FFmpeg-devel] [PATCH 2/4] avformat: add demuxer for LEGO Racers' ALP format

2020-03-04 Thread Zane van Iperen
On Thu, 5 Mar 2020 02:26:38 +0100 "Andreas Rheinhardt" wrote: > Am 05.03.2020 um 01:40 schrieb Zane van Iperen: > > Signed-off-by: Zane van Iperen > > --- > > libavformat/Makefile | 1 + > > libavformat/allformats.c | 1 + > > libavformat/alp.c| 135 > >

Re: [FFmpeg-devel] [PATCH 4/4] vaapi_encode_h265: Enable 4:2:2 support

2020-03-04 Thread Fu, Linjie
> -Original Message- > From: ffmpeg-devel On Behalf Of > Mark Thompson > Sent: Thursday, March 5, 2020 08:25 > To: ffmpeg-devel@ffmpeg.org > Subject: [FFmpeg-devel] [PATCH 4/4] vaapi_encode_h265: Enable 4:2:2 > support > > --- > With ,

Re: [FFmpeg-devel] [PATCH 2/4] avformat: add demuxer for LEGO Racers' ALP format

2020-03-04 Thread Andreas Rheinhardt
Am 05.03.2020 um 01:40 schrieb Zane van Iperen: > Signed-off-by: Zane van Iperen > --- > libavformat/Makefile | 1 + > libavformat/allformats.c | 1 + > libavformat/alp.c| 135 +++ > libavformat/version.h| 4 +- > 4 files changed, 139

[FFmpeg-devel] [PATCH 2/4] vaapi_encode_h265: Explicitly set all profile constraint flags

2020-03-04 Thread Mark Thompson
max_14bit_constraint_flag should be set if the bit depth is not greater than 14 (currently always true). one_picture_only_flag should not be set because we don't support the still picture profiles. --- libavcodec/vaapi_encode_h265.c | 2 ++ 1 file changed, 2 insertions(+) diff --git

[FFmpeg-devel] [PATCH 0/4] High Voltage Software ALP demuxer + decoder.

2020-03-04 Thread Zane van Iperen
Adds support for the .TUN and .PCM files used by some High Voltage Software games. Zane van Iperen (4): avcodec: add decoder for High Voltage Software's ALP ADPCM avformat: add demuxer for LEGO Racers' ALP format changelog: add adpcm_ima_alp decoder and alp demuxer doc: add adpcm_ima_alp

[FFmpeg-devel] [PATCH 1/4] avcodec: add decoder for High Voltage Software's ALP ADPCM

2020-03-04 Thread Zane van Iperen
Signed-off-by: Zane van Iperen --- libavcodec/Makefile | 1 + libavcodec/adpcm.c | 36 libavcodec/allcodecs.c | 1 + libavcodec/avcodec.h| 1 + libavcodec/codec_desc.c | 7 +++ libavcodec/version.h| 4 ++-- 6 files changed, 48

[FFmpeg-devel] ClipGrab Function Request / Suggestion

2020-03-04 Thread Tom Schmidt
I use a satellite service, HighesNet, to access the Internet. I can use 50GB from 2am to 8am for almost free (won't affect my data usage total). It would really be nice if ClipGrab could download a video at a certain day and time so that my data usage isn't negatively impacted thereby saving me

[FFmpeg-devel] [PATCH 4/4] doc: add adpcm_ima_alp

2020-03-04 Thread Zane van Iperen
Signed-off-by: Zane van Iperen --- doc/general.texi | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/general.texi b/doc/general.texi index dbdc348598..87eaad7791 100644 --- a/doc/general.texi +++ b/doc/general.texi @@ -1100,6 +1100,7 @@ following image formats are supported: @item ADPCM

[FFmpeg-devel] [PATCH 2/4] avformat: add demuxer for LEGO Racers' ALP format

2020-03-04 Thread Zane van Iperen
Signed-off-by: Zane van Iperen --- libavformat/Makefile | 1 + libavformat/allformats.c | 1 + libavformat/alp.c| 135 +++ libavformat/version.h| 4 +- 4 files changed, 139 insertions(+), 2 deletions(-) create mode 100644

[FFmpeg-devel] [PATCH 3/4] changelog: add adpcm_ima_alp decoder and alp demuxer

2020-03-04 Thread Zane van Iperen
Signed-off-by: Zane van Iperen --- Changelog | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Changelog b/Changelog index cb310a3abc..0503069daa 100644 --- a/Changelog +++ b/Changelog @@ -43,7 +43,8 @@ version : - Rayman 2 ADPCM decoder - Rayman 2 APM demuxer - cas video

[FFmpeg-devel] [PATCH 1/4] vaapi_encode: Move block size calculation after entrypoint selection

2020-03-04 Thread Mark Thompson
The block size can be dependent on the profile and entrypoint selected. It defaults to 16x16, with codecs able to override this choice with their own function. --- libavcodec/vaapi_encode.c | 14 ++ libavcodec/vaapi_encode.h | 6 ++ libavcodec/vaapi_encode_h265.c |

[FFmpeg-devel] [PATCH 4/4] vaapi_encode_h265: Enable 4:2:2 support

2020-03-04 Thread Mark Thompson
--- With , intra-only 4:2:2 encode works on Ice Lake with something like: -vf 'format=yuyv422,hwupload' -c:v hevc_vaapi -g 1 out.mp4 There is still something wrong with inter frames. libavcodec/vaapi_encode_h265.c | 4 1 file changed, 4

[FFmpeg-devel] [PATCH 3/4] vaapi_encode_h265: Query encoding block sizes and features

2020-03-04 Thread Mark Thompson
--- Requires . That isn't upstream, so this will need to wait for that and then get at least a fix to the version numbering before applying. libavcodec/vaapi_encode_h265.c | 91 +++--- 1 file changed, 74 insertions(+), 17

[FFmpeg-devel] [PATCH] avformat/rtp: Pass sources and block filter addresses via sdp file for rtp

2020-03-04 Thread phunkyfish
--- libavformat/rtsp.c | 48 ++ 1 file changed, 40 insertions(+), 8 deletions(-) diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index cd6fc32a29..f6d66526b0 100644 --- a/libavformat/rtsp.c +++ b/libavformat/rtsp.c @@ -2447,8 +2447,8 @@ static int

Re: [FFmpeg-devel] [PATCH 2/3] avformat: add raw AC-4 demuxer

2020-03-04 Thread Andreas Rheinhardt
Am 05.03.2020 um 00:05 schrieb James Almer: On 3/4/2020 7:51 PM, Paul B Mahol wrote: On 3/4/20, James Almer wrote: On 3/4/2020 7:26 PM, Paul B Mahol wrote: Signed-off-by: Paul B Mahol --- libavformat/Makefile | 1 + libavformat/ac4dec.c | 104

Re: [FFmpeg-devel] [RFC][WIP][PATCH 1/3] avcodec: add AC-4 decoder

2020-03-04 Thread Lou Logan
On Wed, Mar 4, 2020, at 1:26 PM, Paul B Mahol wrote: > diff --git a/libavcodec/Makefile b/libavcodec/Makefile > +OBJS-$(CONFIG_AC4_DECODER) += ac4dec.o Missing kbdwin.o. ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org

Re: [FFmpeg-devel] [PATCH 2/3] avformat: add raw AC-4 demuxer

2020-03-04 Thread James Almer
On 3/4/2020 7:51 PM, Paul B Mahol wrote: > On 3/4/20, James Almer wrote: >> On 3/4/2020 7:26 PM, Paul B Mahol wrote: >>> Signed-off-by: Paul B Mahol >>> --- >>> libavformat/Makefile | 1 + >>> libavformat/ac4dec.c | 104 +++ >>>

Re: [FFmpeg-devel] [PATCH 2/3] avformat: add raw AC-4 demuxer

2020-03-04 Thread Paul B Mahol
On 3/4/20, James Almer wrote: > On 3/4/2020 7:26 PM, Paul B Mahol wrote: >> Signed-off-by: Paul B Mahol >> --- >> libavformat/Makefile | 1 + >> libavformat/ac4dec.c | 104 +++ >> libavformat/allformats.c | 1 + >> 3 files changed, 106

Re: [FFmpeg-devel] [PATCH 2/3] avformat: add raw AC-4 demuxer

2020-03-04 Thread James Almer
On 3/4/2020 7:26 PM, Paul B Mahol wrote: > Signed-off-by: Paul B Mahol > --- > libavformat/Makefile | 1 + > libavformat/ac4dec.c | 104 +++ > libavformat/allformats.c | 1 + > 3 files changed, 106 insertions(+) > create mode 100644

[FFmpeg-devel] [PATCH 2/3] avformat: add raw AC-4 demuxer

2020-03-04 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- libavformat/Makefile | 1 + libavformat/ac4dec.c | 104 +++ libavformat/allformats.c | 1 + 3 files changed, 106 insertions(+) create mode 100644 libavformat/ac4dec.c diff --git a/libavformat/Makefile

[FFmpeg-devel] [PATCH] avformat/avformat: Make AVProbeData extendible with the next major bump

2020-03-04 Thread Michael Niedermayer
Signed-off-by: Michael Niedermayer --- libavformat/avformat.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libavformat/avformat.h b/libavformat/avformat.h index 9b9b634ec3..bd99d4e4f2 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -448,6 +448,9 @@ typedef struct

[FFmpeg-devel] [PATCH 3/3] mpegts hack

2020-03-04 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- libavformat/mpegts.c | 11 +-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c index 7f56bacb2c..782f13fe4f 100644 --- a/libavformat/mpegts.c +++ b/libavformat/mpegts.c @@ -955,8 +955,8 @@ static

Re: [FFmpeg-devel] [PATCH] avcodec/siren: Check several indexes

2020-03-04 Thread Michael Niedermayer
On Wed, Mar 04, 2020 at 04:59:10PM +0100, Paul B Mahol wrote: > lgtm will apply thx [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB In fact, the RIAA has been known to suggest that students drop out of college or go to community college in order to be able to

Re: [FFmpeg-devel] [PATCH 1/4] tests/checkasm: add overflow test for hevc_add_res

2020-03-04 Thread Michael Niedermayer
On Wed, Mar 04, 2020 at 04:13:43AM +, Fu, Linjie wrote: > > -Original Message- > > From: ffmpeg-devel On Behalf Of > > Michael Niedermayer > > Sent: Wednesday, March 4, 2020 02:41 > > To: FFmpeg development discussions and patches > de...@ffmpeg.org> > > Subject: Re: [FFmpeg-devel]

Re: [FFmpeg-devel] [RFC] 2 Alternative approaches for AVFrame QP Tables

2020-03-04 Thread Michael Niedermayer
On Wed, Mar 04, 2020 at 12:55:31PM +0100, Anton Khirnov wrote: > Quoting Michael Niedermayer (2020-02-29 13:21:52) > > > > [PATCH 1/4] Remove all uses of AVFrame QP tables and related fields > > [PATCH 2/4] avutil/frame: Rename QP related fields so unintentional > > > > These 2 are common in

Re: [FFmpeg-devel] [PATCH 2/4] avformat/mxf: get rid of samples per frame array usage

2020-03-04 Thread Michael Niedermayer
On Tue, Mar 03, 2020 at 07:54:55PM +0100, Tomas Härdin wrote: > mån 2020-03-02 klockan 21:35 +0100 skrev Marton Balint: > > > > On Mon, 2 Mar 2020, Tomas Härdin wrote: > > > > > fre 2020-02-28 klockan 01:37 +0100 skrev Marton Balint: > > > > Signed-off-by: Marton Balint > > > > --- > > > >

Re: [FFmpeg-devel] [PATCH] avformat/ac3dec: detect fairplay encryption

2020-03-04 Thread Carl Eugen Hoyos
Am Mi., 4. März 2020 um 18:57 Uhr schrieb James Almer : > > On 3/4/2020 1:56 PM, Carl Eugen Hoyos wrote: > > Am Mi., 4. März 2020 um 17:53 Uhr schrieb Sebastian Hubbard > > : > >> > >> I knew this was an ABI change and probably wasn't going to be > >> acceptable, but I decided to share it for

Re: [FFmpeg-devel] [PATCH] avformat/ac3dec: detect fairplay encryption

2020-03-04 Thread James Almer
On 3/4/2020 1:56 PM, Carl Eugen Hoyos wrote: > Am Mi., 4. März 2020 um 17:53 Uhr schrieb Sebastian Hubbard > : >> >> I knew this was an ABI change and probably wasn't going to be >> acceptable, but I decided to share it for consideration anyway. >> There's special code in av_probe_input_format3 to

Re: [FFmpeg-devel] [PATCH] avformat/ac3dec: detect fairplay encryption

2020-03-04 Thread Hendrik Leppkes
On Wed, Mar 4, 2020 at 5:57 PM Carl Eugen Hoyos wrote: > > Am Mi., 4. März 2020 um 17:53 Uhr schrieb Sebastian Hubbard > : > > > > I knew this was an ABI change and probably wasn't going to be > > acceptable, but I decided to share it for consideration anyway. > > There's special code in

Re: [FFmpeg-devel] [PATCH] avformat/ac3dec: detect fairplay encryption

2020-03-04 Thread Carl Eugen Hoyos
Am Mi., 4. März 2020 um 17:53 Uhr schrieb Sebastian Hubbard : > > I knew this was an ABI change and probably wasn't going to be > acceptable, but I decided to share it for consideration anyway. > There's special code in av_probe_input_format3 to skip over id3 tags > for the purposes of format

Re: [FFmpeg-devel] [PATCH] avformat/ac3dec: detect fairplay encryption

2020-03-04 Thread Sebastian Hubbard
I knew this was an ABI change and probably wasn't going to be acceptable, but I decided to share it for consideration anyway. There's special code in av_probe_input_format3 to skip over id3 tags for the purposes of format detection, but Apple uses id3 tags to signal information for HLS audio only

Re: [FFmpeg-devel] [PATCH 4/4] avformat/mxfenc: add some missing content package rates

2020-03-04 Thread Carl Eugen Hoyos
Am Mi., 4. März 2020 um 17:29 Uhr schrieb Tomas Härdin : > > ons 2020-03-04 klockan 11:31 +0100 skrev Carl Eugen Hoyos: > > Am Di., 3. März 2020 um 02:18 Uhr schrieb Marton Balint : > > > > > 2) support all frame rates and write 0 (undefined) as the package rate > > > for frame rates which cannot

Re: [FFmpeg-devel] [PATCH] configure: Remove bitrig support

2020-03-04 Thread Carl Eugen Hoyos
Am Mi., 26. Feb. 2020 um 20:18 Uhr schrieb Brad Smith : > configure: Remove bitrig support > > Bitrig was an OpenBSD derivative that has been dead for awhile now. Why is the fact that it isn't actively developed a reason to remove the entry from FFmpeg's configure? Carl Eugen

Re: [FFmpeg-devel] [PATCH 4/4] avformat/mxfenc: add some missing content package rates

2020-03-04 Thread Tomas Härdin
ons 2020-03-04 klockan 11:31 +0100 skrev Carl Eugen Hoyos: > Am Di., 3. März 2020 um 02:18 Uhr schrieb Marton Balint : > > > 2) support all frame rates and write 0 (undefined) as the package rate > > for frame rates which cannot be exactly represented > > Why not? > > Allow me to repeat:

Re: [FFmpeg-devel] [PATCH] avcodec/siren: Check several indexes

2020-03-04 Thread Paul B Mahol
lgtm On 3/1/20, Michael Niedermayer wrote: > Fixes: Multiple out of array accesses > Fixes: > 20817/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_SIREN_fuzzer-5754041227542528.fuzz > > Found-by: continuous fuzzing process > https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg >

Re: [FFmpeg-devel] [PATCH] configure: Remove bitrig support

2020-03-04 Thread Brad Smith
On Wed, Feb 26, 2020 at 02:18:30PM -0500, Brad Smith wrote: > configure: Remove bitrig support > > Bitrig was an OpenBSD derivative that has been dead for awhile now. > > Signed-off-by: Brad Smith > --- > configure | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git

Re: [FFmpeg-devel] [PATCH 1/1] Patch for adding Documentation of ff_http_match_no_proxy

2020-03-04 Thread Sourabh Sharma
On Tue, Mar 3, 2020 at 3:47 AM Michael Niedermayer wrote: > On Mon, Mar 02, 2020 at 08:32:10PM +0530, Sourabh Sharma wrote: > > Patch for adding Documentation of ff_http_match_no_proxy > > Function ff_http_match_no_proxy check for host of proxy address matches > with > > the hostname or not. >

Re: [FFmpeg-devel] Regarding GSoC 2020 project proposal

2020-03-04 Thread Thilo Borgmann
Hi, Am 04.03.20 um 13:56 schrieb YATENDRA SINGH: > Thank you for explaining the procedure. > I have posted my own project proposal on the page you had instructed me to. > Looking forward to the feedback. I moved that to the "Your own project idea" section. I also added a 'proposed by:' field to

Re: [FFmpeg-devel] Regarding GSoC 2020 project proposal

2020-03-04 Thread YATENDRA SINGH
Thank you for explaining the procedure. I have posted my own project proposal on the page you had instructed me to. Looking forward to the feedback. Regards, Yatendra Singh. On Tue, Mar 3, 2020 at 10:19 PM Pedro Arthur wrote: > Hi > > Em ter., 3 de mar. de 2020 às 09:24, YATENDRA SINGH >

Re: [FFmpeg-devel] REMOTE JOB POST: FFMPEG EXPERT

2020-03-04 Thread sumaklos rembert
Good morning j...@itanimul.li, I usually don't bother responding to unhappy or negative people.but. Yep, I posted a week ago and still need to fill my job. I hardly think 2 emails trying to help someone who may be in need of a need gig equals spam. Skip over the post if you aren't

Re: [FFmpeg-devel] REMOTE JOB POST: FFMPEG EXPERT

2020-03-04 Thread Josh de Kock
On Tue, Mar 3, 2020, at 12:55 PM, sumaklos rembert wrote: > We are hiring a remote FFMPEG engineer > > [...] You already posted this a week ago, there is no need to spam the list with the same job multiple times. -- Josh ___ ffmpeg-devel mailing list

Re: [FFmpeg-devel] [RFC] 2 Alternative approaches for AVFrame QP Tables

2020-03-04 Thread Anton Khirnov
Quoting Michael Niedermayer (2020-02-29 13:21:52) > > [PATCH 1/4] Remove all uses of AVFrame QP tables and related fields > [PATCH 2/4] avutil/frame: Rename QP related fields so unintentional > > These 2 are common in both options, they break API but not ABI so > should not be applied before the

Re: [FFmpeg-devel] [PATCH] avformat/ac3dec: detect fairplay encryption

2020-03-04 Thread Anton Khirnov
Quoting Sebastian Hubbard (2020-02-20 22:43:53) > Added id3v2_buf and id3v2_buf_size fields to AVProbeData. When an id3v2 > tag is found at the start of probed content, id3v2_buf is filled with > a pointer to the start of the tag bytes, and id3v2_buf_size with the > number of bytes in the tag. >

Re: [FFmpeg-devel] [PATCH 4/4] avformat/mxfenc: add some missing content package rates

2020-03-04 Thread Carl Eugen Hoyos
Am Di., 3. März 2020 um 02:18 Uhr schrieb Marton Balint : > 2) support all frame rates and write 0 (undefined) as the package rate > for frame rates which cannot be exactly represented Why not? Allow me to repeat: Professional archivists recommend using mxf. How do they store digitized content

Re: [FFmpeg-devel] [PATCH 08/17] avformat/webm_chunk: Use appropriate initializer for AV_OPT_TYPE_STRING

2020-03-04 Thread Moritz Barsnick
On Mon, Mar 02, 2020 at 05:44:36 +0100, Andreas Rheinhardt wrote: > -{ "header", "filename of the header where the initialization data will > be written", OFFSET(header_filename), AV_OPT_TYPE_STRING, { 0 }, 0, 0, > AV_OPT_FLAG_ENCODING_PARAM }, > +{ "header", "filename of the header

Re: [FFmpeg-devel] [PATCH 2/2] libavcodec/libaomenc.c: Add super-resolution options to libaom wrapper

2020-03-04 Thread Moritz Barsnick
On Wed, Mar 04, 2020 at 05:59:03 +0800, Wang Cao wrote: > Signed-off-by: Wang Cao > --- > doc/encoders.texi | 39 +++ > libavcodec/libaomenc.c | 38 ++ Again, I suggest bumping MICRO once more. > +@item

Re: [FFmpeg-devel] [PATCH 1/2] libavcodec/libaomenc.c: Add a libaom command-line opton 'tune'

2020-03-04 Thread Moritz Barsnick
Hi Wang, On Wed, Mar 04, 2020 at 05:59:02 +0800, Wang Cao wrote: > Subject: libavcodec/libaomenc.c: Add a libaom command-line opton 'tune' ^ typo -> option > doc/encoders.texi | 11 +++ > libavcodec/libaomenc.c | 7

Re: [FFmpeg-devel] [PATCH 2/4] avformat/mxf: get rid of samples per frame array usage

2020-03-04 Thread Marton Balint
On Tue, 3 Mar 2020, Baptiste Coudurier wrote: On Mar 3, 2020, at 11:37 AM, Tomas Härdin wrote: tis 2020-03-03 klockan 11:22 -0800 skrev Baptiste Coudurier: Hey guys, On Mar 3, 2020, at 10:54 AM, Tomas Härdin wrote: mån 2020-03-02 klockan 21:35 +0100 skrev Marton Balint: On Mon, 2 Mar