Re: [FFmpeg-devel] [RFC] libavutil split out

2024-10-30 Thread Zhao Zhili
> On Oct 31, 2024, at 08:13, Timo Rothenpieler wrote: > > On 31.10.2024 01:08, Michael Niedermayer wrote: >> Hi >> Theres a problem with libavutil, or maybe more than one >> a library implementing a codec that tries do use libavutil and itself is >> used by libavcodec. Creates a (build) dependa

[FFmpeg-devel] [RFC] libavutil split out

2024-10-30 Thread Michael Niedermayer
Hi Theres a problem with libavutil, or maybe more than one a library implementing a codec that tries do use libavutil and itself is used by libavcodec. Creates a (build) dependancy like this libavutil -> libmycodec -> libavcodec Thats ok if libavutil is a seperate source but if libavutil and liba

Re: [FFmpeg-devel] [RFC] libavutil split out

2024-10-30 Thread Timo Rothenpieler
On 31.10.2024 01:08, Michael Niedermayer wrote: Hi Theres a problem with libavutil, or maybe more than one a library implementing a codec that tries do use libavutil and itself is used by libavcodec. Creates a (build) dependancy like this libavutil -> libmycodec -> libavcodec Thats ok if libavu

Re: [FFmpeg-devel] [PATCH V2] Patch to add interlaced HEVC decoding to HEVCDEC

2024-10-30 Thread Jose Santiago
You are probably correct. But I dont know how to do that.   ___ 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 "

[FFmpeg-devel] [PATCH V3] Patch to add interlaced HEVC decoding to HEVCDEC

2024-10-30 Thread Jose Santiago
From d55b49766d5e0256685c4874568db002d3dd7889 Mon Sep 17 00:00:00 2001 From: Jose Santiago Date: Wed, 30 Oct 2024 12:28:35 -0500 Subject: [PATCH] [PATCH V3] Patch to add interlaced HEVC decoding to HEVCDEC --- libavcodec/hevc/hevcdec.c |  24 ++- libavcodec/hevc/hevcdec.h |  13 ++ libavcode

[FFmpeg-devel] [PATCH V2] Patch to add interlaced HEVC decoding to HEVCDEC

2024-10-30 Thread Jose Santiago
From 8631a56a78a8c0d4190b8eb50f52071b0a2ef14f Mon Sep 17 00:00:00 2001 From: Jose Santiago Date: Wed, 30 Oct 2024 10:35:42 -0500 Subject: [PATCH] uncommited --- libavcodec/hevc/hevcdec.c |  24 ++- libavcodec/hevc/hevcdec.h |  13 ++ libavcodec/hevc/refs.c| 412 +++

Re: [FFmpeg-devel] [PATCH V2] Patch to add interlaced HEVC decoding to HEVCDEC

2024-10-30 Thread Hendrik Leppkes
On Wed, Oct 30, 2024 at 4:52 PM Jose Santiago wrote: > +static int interlaced_frame_from_fields(AVFrame *dst, > +const AVFrame *field1, > +const AVFrame *field2) > +{ > +int i, ret = 0; > + > +av_frame_unref(ds

[FFmpeg-devel] [PATCH] swscale/output: add full chroma interpolation support for x2rgb10

2024-10-30 Thread James Almer
Signed-off-by: James Almer --- libswscale/output.c | 25 + libswscale/utils.c | 4 +++- tests/ref/fate/filter-pixfmts-scale | 4 ++-- 3 files changed, 30 insertions(+), 3 deletions(-) diff --git a/libswscale/output.c b/libswscale/output.

Re: [FFmpeg-devel] [PATCH] avcodec/decode: clean-up if get_hw_frames_parameters fails

2024-10-30 Thread Thomas Guillem via ffmpeg-devel
Happy monthly anniversary to my not very interesting patch. FYI, OpenSuse applied it for their ffmpeg build... On Mon, Oct 14, 2024, at 10:54, Thomas Guillem via ffmpeg-devel wrote: > Ping. > > On Mon, Oct 7, 2024, at 17:43, Thomas Guillem via ffmpeg-devel wrote: >> Fixes the following assert: >

[FFmpeg-devel] [PATCH 1/4] avcodec/mediacodecdec: Add operating_rate option

2024-10-30 Thread Zhao Zhili
From: Zhao Zhili The codec wants to know whether the usecase is realtime playback or full-speed transcoding, or playback at a higher speed. The codec runs faster when operating_rate higher than framerate. --- libavcodec/mediacodecdec.c | 8 1 file changed, 8 insertions(+) diff --git a/

Re: [FFmpeg-devel] [PATCH] avcodec/decode: clean-up if get_hw_frames_parameters fails

2024-10-30 Thread Zhao Zhili
> On Oct 30, 2024, at 21:19, Thomas Guillem via ffmpeg-devel > wrote: > > Happy monthly anniversary to my not very interesting patch. > > FYI, OpenSuse applied it for their ffmpeg build... LGTM and applied, thanks. > > On Mon, Oct 14, 2024, at 10:54, Thomas Guillem via ffmpeg-devel wrote:

Re: [FFmpeg-devel] [PATCH] avcodec/decode: clean-up if get_hw_frames_parameters fails

2024-10-30 Thread Thomas Guillem via ffmpeg-devel
Thanks ! On Wed, Oct 30, 2024, at 14:34, Zhao Zhili wrote: >> On Oct 30, 2024, at 21:19, Thomas Guillem via ffmpeg-devel >> wrote: >> >> Happy monthly anniversary to my not very interesting patch. >> >> FYI, OpenSuse applied it for their ffmpeg build... > > LGTM and applied, thanks. > >> >> O

Re: [FFmpeg-devel] [PATCH 00/15] Spotify patchset

2024-10-30 Thread Tomas Härdin
tis 2024-10-29 klockan 15:43 +0100 skrev Tomas Härdin: > Hi > > This is a set of patches that Spotify wants upstreamed, based on > n6.0.1. I have rebased all of them except except "[PATCH 03/18] > fftools/ffmpeg: Always exit_program(1) for I/O-errors" Update on this part: AVERROR(EIO) is already

[FFmpeg-devel] [PATCH 1/2] vsrc_testsrc: add support for x2rgb10le to rgbtestsrc

2024-10-30 Thread James Almer
Signed-off-by: James Almer --- libavfilter/vsrc_testsrc.c | 11 +++ 1 file changed, 11 insertions(+) diff --git a/libavfilter/vsrc_testsrc.c b/libavfilter/vsrc_testsrc.c index e3e076e878..1342f63d25 100644 --- a/libavfilter/vsrc_testsrc.c +++ b/libavfilter/vsrc_testsrc.c @@ -996,6 +996,7

[FFmpeg-devel] [PATCH 2/2] fate/filter-video: add more rgbtestsrc tests

2024-10-30 Thread James Almer
Signed-off-by: James Almer --- tests/fate/filter-video.mak| 12 tests/ref/fate/filter-rgbtestsrc-gbrp | 10 ++ tests/ref/fate/filter-rgbtestsrc-gbrp10| 10 ++ tests/ref/fate/filter-rgbtestsrc-rgba | 10 ++ tests/ref/fate/filter-rg

Re: [FFmpeg-devel] [PATCH 11/15] avformat/flacdec:Return correct error-codes on read-failure

2024-10-30 Thread Tomas Härdin
tis 2024-10-29 klockan 18:42 +0100 skrev Michael Niedermayer: > On Tue, Oct 29, 2024 at 03:50:05PM +0100, Tomas Härdin wrote: > > Reasonable enough. Might want a sample > > > > Spotify comments > > > > Unexpected EOF is treated as invalid data > > > > /Tomas > > >  flacdec.c |