Re: [FFmpeg-devel] [PATCH v16 6/9] avcodec/evc_decoder: Provided support for EVC decoder

2023-03-06 Thread Lynne
Jan 2, 2023, 13:55 by d.kozin...@samsung.com: > - Added EVC decoder wrapper > - Changes in project configuration file and libavcodec Makefile > - Added documentation for xevd wrapper > > Signed-off-by: Dawid Kozinski > --- > configure | 4 + > doc/decoders.texi | 24 ++

Re: [FFmpeg-devel] [PATCH v16 5/9] avcodec/evc_encoder: Provided support for EVC encoder

2023-03-06 Thread Lynne
Jan 2, 2023, 13:54 by d.kozin...@samsung.com: > - Added EVC encoder wrapper > - Changes in project configuration file and libavcodec Makefile > - Added documentation for xeve wrapper > > Signed-off-by: Dawid Kozinski > --- > configure | 4 + > doc/encoders.texi | 69

Re: [FFmpeg-devel] [PATCH v16 2/9] avcodec/evc_parser: Added parser implementation for EVC format

2023-03-06 Thread Lynne
Jan 2, 2023, 13:53 by d.kozin...@samsung.com: > - Added constants definitions for EVC parser > - Provided NAL units parsing following ISO_IEC_23094-1 > - EVC parser registration > > Signed-off-by: Dawid Kozinski > --- > libavcodec/Makefile |1 + > libavcodec/evc.h| 155 + >

Re: [FFmpeg-devel] [PATCH v3 4/5] avformat/movenc: add PCM in mp4 support

2023-03-06 Thread zhilizhao(赵志立)
> On Mar 6, 2023, at 20:28, Tomas Härdin wrote: > >> +static int mov_write_chnl_tag(AVFormatContext *s, AVIOContext *pb, >> MOVTrack *track) >> +{ >> +int64_t pos = avio_tell(pb); >> +int config = 0; >> +int ret; >> +uint8_t *speaker_pos = NULL; >> +const AVChannelLayout *la

Re: [FFmpeg-devel] [PATCH v3 3/5] avformat/mov: parse ISO-14496-12 ChannelLayout

2023-03-06 Thread zhilizhao(赵志立)
> On Mar 6, 2023, at 20:26, Tomas Härdin wrote: > >> +int ff_mov_get_channel_config_from_layout(const AVChannelLayout >> *layout, int *config) >> +{ >> +// Set default value which means any setup in 23001-8 >> +*config = 0; >> +for (int i = 0; i < FF_ARRAY_ELEMS(iso_channel_configur

Re: [FFmpeg-devel] [PATCH] avformat/matroska: Add support for A_ATRAC/AT1

2023-03-06 Thread asivery
It's been added recently. Here's the definition: https://github.com/ietf-wg-cellar/matroska-specification/blob/master/codec_specs.md#a_atracat1 --- Original Message --- On Monday, March 6th, 2023 at 7:39 PM, Paul B Mahol wrote: > On 3/6/23, asivery asiv...@protonmail.com wrote: > > >

Re: [FFmpeg-devel] [PATCH] avformat/matroska: Add support for A_ATRAC/AT1

2023-03-06 Thread Paul B Mahol
On 3/6/23, asivery wrote: > Signed-off-by: asivery > --- > libavformat/matroska.c | 1 + > libavformat/matroskadec.c | 2 ++ > 2 files changed, 3 insertions(+) > where is this defined? > diff --git a/libavformat/matroska.c b/libavformat/matroska.c > index 90d94b65bf..37305a523c 100644 > --- a/li

Re: [FFmpeg-devel] [PATCH] mips: fix build fail on MIPS R6

2023-03-06 Thread Michael Niedermayer
On Mon, Mar 06, 2023 at 05:44:55PM +0800, Junxian Zhu wrote: > Hello, Michael, can you help to review this pacth? It made ffmpeg compilable > on mips r6 platform. iam not mips maintainer, i have no mips hw anymore, i know very little about the different mips variants Iam sure there are people who

Re: [FFmpeg-devel] avformat/mxfenc: fix stored/sampled/displayed width/height

2023-03-06 Thread Nicolas Gaullier
>>> The width is one thing; for whatever reason, there is a divergence between >>> DV100 on one hand and AVCI/XDCAMHD35 on the other. In my understanding, in >>> current practices, DV obey s337 (stored width includes scaling) but >>> >xdcam&avci does not, so current code is fine >but maybe this

[FFmpeg-devel] [PATCH] avcodec/av1dec: parse and export Metadata OBUs

2023-03-06 Thread James Almer
This includes Mastering Display, Content light level, and some ITU-T T35 metadata like closed captions and HDR10+. Signed-off-by: James Almer --- libavcodec/av1dec.c | 163 libavcodec/av1dec.h | 8 +++ 2 files changed, 171 insertions(+) diff --git

Re: [FFmpeg-devel] [PATCH V6 1/3] lavfi/dnn: Mark native backend as unsupported

2023-03-06 Thread Fu, Ting
> -Original Message- > From: ffmpeg-devel On Behalf Of Ting > Fu > Sent: Monday, March 6, 2023 09:56 PM > To: ffmpeg-devel@ffmpeg.org > Subject: [FFmpeg-devel] [PATCH V6 1/3] lavfi/dnn: Mark native backend as > unsupported > > Native is deprecated value for backed_type option. Modify r

[FFmpeg-devel] [PATCH V6 2/3] lavfi/dnn: Modified DNN native backend related tools and docs.

2023-03-06 Thread Ting Fu
Deleted the native backend related files in 'tools' dir. Modify its' docs and codes mentioned in such docs. Signed-off-by: Ting Fu --- doc/filters.texi| 39 +- libavfilter/vf_derain.c | 2 +- libavfilter/vf_dnn_processing.c | 2 +- libavfilter

[FFmpeg-devel] [PATCH V6 1/3] lavfi/dnn: Mark native backend as unsupported

2023-03-06 Thread Ting Fu
Native is deprecated value for backed_type option. Modify related error message. Signed-off-by: Ting Fu --- libavfilter/dnn/dnn_interface.c | 10 +- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/libavfilter/dnn/dnn_interface.c b/libavfilter/dnn/dnn_interface.c index 554a36

Re: [FFmpeg-devel] Making progress re: jpeg2000dec patchsets

2023-03-06 Thread Tomas Härdin
Sorry for replying a bit late to this. Anyway: > Hi Caleb, Tomas et al., > > I have been experimenting with combining the HTJ2K patchset [1] and > the J2K test patchset [2]: > > (a) neither valgrind nor the fuzzer seem to complain Excellent. > (b) there are code style/cosmetic issues > (c) t

Re: [FFmpeg-devel] [PATCH v3 4/5] avformat/movenc: add PCM in mp4 support

2023-03-06 Thread Tomas Härdin
> +static int mov_write_chnl_tag(AVFormatContext *s, AVIOContext *pb, > MOVTrack *track) > +{ > +    int64_t pos = avio_tell(pb); > +    int config = 0; > +    int ret; > +    uint8_t *speaker_pos = NULL; > +    const AVChannelLayout *layout = &track->par->ch_layout; > + > +    ret = ff_mov_get_cha

Re: [FFmpeg-devel] [PATCH v3 3/5] avformat/mov: parse ISO-14496-12 ChannelLayout

2023-03-06 Thread Tomas Härdin
> +int ff_mov_get_channel_config_from_layout(const AVChannelLayout > *layout, int *config) > +{ > +    // Set default value which means any setup in 23001-8 > +    *config = 0; > +    for (int i = 0; i < FF_ARRAY_ELEMS(iso_channel_configuration); > i++) { > +    if (!av_channel_layout_compare(l

Re: [FFmpeg-devel] [PATCH v14 9/9] avcodec/evc: Changes in Changelog and MAINTAINERS files

2023-03-06 Thread Dawid Kozinski/Multimedia (PLT) /SRPOL/Staff Engineer/Samsung Electronics
> -Original Message- > From: ffmpeg-devel On Behalf Of Lynne > Sent: wtorek, 14 lutego 2023 19:01 > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] [PATCH v14 9/9] avcodec/evc: Changes in > Changelog and MAINTAINERS files > > Feb 14, 2023, 13:10 by d.kozin

Re: [FFmpeg-devel] [PATCH] mips: fix build fail on MIPS R6

2023-03-06 Thread Junxian Zhu
Hello, Michael, can you help to review this pacth? It made ffmpeg compilable on mips r6 platform. ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-de

[FFmpeg-devel] [PATCH v3] avcodec/mathops: Optimize generic mid_pred function

2023-03-06 Thread Junxian Zhu
From: Junxian Zhu Rewrite mid_pred function in generic mathops.h, reduce branch jump to improve performance. And because nowadays new version compiler can compile enough short asmbbely code as handwritting in these function, so remove specified optimized mips inline asmbbely mathops.h. Signed

Re: [FFmpeg-devel] [PATCH] lavu/vulkan: fix handle type for 32-bit targets

2023-03-06 Thread Martin Storsjö
On Thu, 2 Mar 2023, Kacper Michajłow wrote: Fixes compilation with clang which errors out on Wint-conversion. Signed-off-by: Kacper Michajłow --- libavutil/hwcontext_vulkan.c | 2 +- libavutil/vulkan.h | 4 2 files changed, 5 insertions(+), 1 deletion(-) Minor context; it's only

Re: [FFmpeg-devel] [PATCH] vulkan: Fix win/i386 calling convention and pointer/int conversion error

2023-03-06 Thread Martin Storsjö
On Sun, 5 Mar 2023, Martin Storsjö wrote: This fixes the following two errors when compiling with a modern version of Clang for Windows/i386: src/libavutil/hwcontext_vulkan.c:738:32: error: incompatible function pointer types initializing 'PFN_vkDebugUtilsMessengerCallbackEXT' (aka 'unsigned i