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
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
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
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
> -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
> +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
> +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
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
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
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
> -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
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
>>> 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
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
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
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:
>
> >
> 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
> 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
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 +
>
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
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 ++
21 matches
Mail list logo