Hello,
On Fri, 17 Feb 2023, at 04:43, Lynne wrote:
> This small patchset mostly rewrites Vulkan to enable using multiplane images,
This is not small. We're talking about thousands of lines of code;
And this changes numerous h264 and hevc headers, and adds callback to the make
AVHWAccel.
And th
>> @@ -56,6 +56,12 @@ static int s337m_get_offset_and_codec(void *avc,
>> avpriv_report_missing_feature(avc, "Data type %#x in
>> SMPTE 337M", data_type & 0x1F);
>> return AVERROR_PATCHWELCOME;
>> }
>> + if (container_word_bits &&
>> + !(container_word_bits ==
On Fri, Feb 17, 2023 at 10:09 AM Jean-Baptiste Kempf wrote:
>
> Hello,
>
> On Fri, 17 Feb 2023, at 04:43, Lynne wrote:
> > This small patchset mostly rewrites Vulkan to enable using multiplane
> > images,
>
> This is not small. We're talking about thousands of lines of code;
>
> And this changes
> The logic here is a bit hairy and I don't have time atm to digest it, but is
> it entirely contained in S337m or would one need to read other specs too?
>
>/Tomas
ff_s337m_probe is very similar to s337m_probe: what mainly differs is the input
parameters.
The one little thing I added is the S33
>> +#if CONFIG_S337M_DEMUXER
>> + {"non_pcm_mode", "Chooses what to do with s337m",
>> OFFSET(non_pcm_mode), AV_OPT_TYPE_INT, {.i64 = 1}, 0, 1, DEC,
>> "non_pcm_mode"},
>> + {"copy" , "Pass s337m through unchanged", 0,
>> AV_OPT_TYPE_CONST, {.i64 = 0}, 0, 1, DEC, "non_pcm_mode"},
>> +
Feb 17, 2023, 10:45 by h.lepp...@gmail.com:
> On Fri, Feb 17, 2023 at 10:09 AM Jean-Baptiste Kempf
> wrote:
>
>>
>> Hello,
>>
>> On Fri, 17 Feb 2023, at 04:43, Lynne wrote:
>> > This small patchset mostly rewrites Vulkan to enable using multiplane
>> > images,
>>
>> This is not small. We're tal
Quoting Marth64 (2023-02-12 01:31:41)
> diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
> index 755e543fac..2d3a7a4625 100644
> --- a/libavcodec/avcodec.h
> +++ b/libavcodec/avcodec.h
> @@ -1616,12 +1616,18 @@ typedef struct AVCodecContext {
> #define FF_PROFILE_DNXHR_HQX 4
> #define
On Fri, 17 Feb 2023 at 09:09, Jean-Baptiste Kempf wrote:
> Hello,
>
> On Fri, 17 Feb 2023, at 04:43, Lynne wrote:
> > This small patchset mostly rewrites Vulkan to enable using multiplane
> images,
>
> This is not small. We're talking about thousands of lines of code;
>
> And this changes numerou
Quoting Prakash (2023-02-17 01:16:04)
> Moved the timestamp to the front (before loglevel but after the prefix if
> present, so the timestamp has the same color as log line based on log
> level). Updated the patch and attached again.
>
>
> From 04857a7bf0d4cf24a479e795a55a61ab2e2f618e Mon Sep 17
Feb 17, 2023, 12:08 by an...@khirnov.net:
> Quoting Prakash (2023-02-17 01:16:04)
>
>> Moved the timestamp to the front (before loglevel but after the prefix if
>> present, so the timestamp has the same color as log line based on log
>> level). Updated the patch and attached again.
>>
>>
>> From
Feb 17, 2023, 12:05 by kier...@obe.tv:
> On Fri, 17 Feb 2023 at 09:09, Jean-Baptiste Kempf wrote:
>
>> Hello,
>>
>> On Fri, 17 Feb 2023, at 04:43, Lynne wrote:
>> > This small patchset mostly rewrites Vulkan to enable using multiplane
>> images,
>>
>> This is not small. We're talking about thousa
I can do the doc update, just not sure how to do the version. Is there an
example? (Or is this not something I can do). Thank you!
On Fri, Feb 17, 2023 at 04:59 Anton Khirnov wrote:
> Quoting Marth64 (2023-02-12 01:31:41)
> > diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
> > index 755
On Fri, Feb 17, 2023 at 12:52:21PM +0100, Lynne wrote:
> Feb 17, 2023, 12:05 by kier...@obe.tv:
>
> > On Fri, 17 Feb 2023 at 09:09, Jean-Baptiste Kempf wrote:
> >
> >> Hello,
> >>
> >> On Fri, 17 Feb 2023, at 04:43, Lynne wrote:
> >> > This small patchset mostly rewrites Vulkan to enable using mu
Feb 17, 2023, 16:45 by mich...@niedermayer.cc:
> On Fri, Feb 17, 2023 at 12:52:21PM +0100, Lynne wrote:
>
>> Feb 17, 2023, 12:05 by kier...@obe.tv:
>>
>> > On Fri, 17 Feb 2023 at 09:09, Jean-Baptiste Kempf
>> > wrote:
>> >
>> >> Hello,
>> >>
>> >> On Fri, 17 Feb 2023, at 04:43, Lynne wrote:
>> >
This reverts commit 26cb36f35746fe6ef53688b119852bfa6d555f62.
All filters and all codecs (except wmavoice) have been ported for the
lavu/tx API.
The noise should be minimal.
Patch attached.
>From 5459ae39a729c69939de65392373d4f9cdf47246 Mon Sep 17 00:00:00 2001
From: Lynne
Date: Fri, 17 Feb 20
av_program_add_stream_index() added in 526efa10534
may fail to carry out its purpose but the lack of
a return value stops callers from catching any error.
Fixed in new function.
---
As suggested by Andreas in
https://ffmpeg.org/pipermail/ffmpeg-devel/2023-February/306645.html
doc/APIchanges
Helper to transfer programs from one muxing context to another.
---
doc/APIchanges | 3 ++
libavformat/avformat.c | 66 ++
libavformat/avformat.h | 22 ++
libavformat/version.h | 3 +-
4 files changed, 93 insertions(+), 1 deletion(-)
---
libavformat/hlsenc.c | 8
1 file changed, 8 insertions(+)
diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c
index e1f96feda3..cf2b36da01 100644
--- a/libavformat/hlsenc.c
+++ b/libavformat/hlsenc.c
@@ -911,6 +911,14 @@ FF_ENABLE_DEPRECATION_WARNINGS
st->id = vs->strea
---
libavformat/segment.c | 8
1 file changed, 8 insertions(+)
diff --git a/libavformat/segment.c b/libavformat/segment.c
index 2a82f39f31..5017fb628d 100644
--- a/libavformat/segment.c
+++ b/libavformat/segment.c
@@ -186,6 +186,14 @@ FF_ENABLE_DEPRECATION_WARNINGS
}
}
+
---
libavformat/tee.c | 8
1 file changed, 8 insertions(+)
diff --git a/libavformat/tee.c b/libavformat/tee.c
index cb555f52fd..a917cb0244 100644
--- a/libavformat/tee.c
+++ b/libavformat/tee.c
@@ -295,6 +295,14 @@ FF_ENABLE_DEPRECATION_WARNINGS
}
}
+for (i = 0; i < a
On 2/17/2023 1:54 PM, Lynne wrote:
This reverts commit 26cb36f35746fe6ef53688b119852bfa6d555f62.
All filters and all codecs (except wmavoice) have been ported for the
lavu/tx API.
The noise should be minimal.
It isn't. I'm getting more than two thousand lines of warnings after
applying this
I think that if Trac ticket priority is to be used, it should first be
working. Currently, if you try to vote on a ticket, a `500 Internal
Server Error` occurs in the background.
I don't think that popularity of a ticket always indicates priority or
urgency. Security bugs are a good example... N
Michael Niedermayer:
> Hi
>
> Trac allows users to vote for tickets, should we bump tickets priority
> to important once they surpass some threshold of votes ?
> Should there be a difference betweem defects and enhancements ?
>
We are a project of volunteers, not a company where your boss can de
Feb 17, 2023, 18:08 by jamr...@gmail.com:
> On 2/17/2023 1:54 PM, Lynne wrote:
>
>> This reverts commit 26cb36f35746fe6ef53688b119852bfa6d555f62.
>>
>> All filters and all codecs (except wmavoice) have been ported for the
>> lavu/tx API.
>>
>> The noise should be minimal.
>>
>
> It isn't. I'm gett
Logging timestamps is a basic functionality any logging
framework/infrastructure should support.
If I am using ffmpeg as a binary then I would need this functionality built
in.
Agree that the code in log.c can definitely be simplified but didn't want
to make any changes with potential for breaking
Signed-off-by: Marth64
---
Update doc/APIchanges and update libavcodec minor version
doc/APIchanges | 4
libavcodec/ac3dec.c| 4
libavcodec/ac3dec.h| 1 +
libavcodec/avcodec.h | 18 --
libavcodec/codec_desc.c| 2 ++
libavcodec/d
Signed-off-by: James Almer
---
doc/resampler.texi | 14 ++
1 file changed, 2 insertions(+), 12 deletions(-)
diff --git a/doc/resampler.texi b/doc/resampler.texi
index 5ed3f4377a..d55654e7bc 100644
--- a/doc/resampler.texi
+++ b/doc/resampler.texi
@@ -11,16 +11,6 @@ programmatic use.
Replaces the "used channel count" option, which is now deprecated.
Signed-off-by: James Almer
---
doc/resampler.texi | 4 +--
libswresample/options.c | 6 ++--
libswresample/rematrix.c| 2 +-
libswresample/swresample.c | 56 ++-
Fixes ticket #10180
Signed-off-by: James Almer
---
libavfilter/af_pan.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavfilter/af_pan.c b/libavfilter/af_pan.c
index 067f646805..4672648d46 100644
--- a/libavfilter/af_pan.c
+++ b/libavfilter/af_pan.c
@@ -313,7 +313,7 @@ st
set LGTM
___
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".
On Fri, 17 Feb 2023, Gyan Doshi wrote:
---
libavformat/hlsenc.c | 8
1 file changed, 8 insertions(+)
diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c
index e1f96feda3..cf2b36da01 100644
--- a/libavformat/hlsenc.c
+++ b/libavformat/hlsenc.c
@@ -911,6 +911,14 @@ FF_ENABLE_DEPRE
Hi
On Fri, Feb 17, 2023 at 12:25:07PM -0600, Brad Isbell wrote:
> I think that if Trac ticket priority is to be used, it should first be
> working. Currently, if you try to vote on a ticket, a `500 Internal
> Server Error` occurs in the background.
it seemed to work when i tryied but it seems tr
On 2/17/2023 4:46 PM, Marth64 wrote:
Signed-off-by: Marth64
---
Update doc/APIchanges and update libavcodec minor version
doc/APIchanges | 4
libavcodec/ac3dec.c| 4
libavcodec/ac3dec.h| 1 +
libavcodec/avcodec.h | 18 --
liba
Yes will take care of it, np
On Fri, Feb 17, 2023 at 4:42 PM James Almer wrote:
> On 2/17/2023 4:46 PM, Marth64 wrote:
> > Signed-off-by: Marth64
> > ---
> > Update doc/APIchanges and update libavcodec minor version
> >
> > doc/APIchanges | 4
> > libavcodec/ac3dec.c
On Fri, Feb 17, 2023 at 11:29:04PM +0100, Michael Niedermayer wrote:
> Hi
>
> On Fri, Feb 17, 2023 at 12:25:07PM -0600, Brad Isbell wrote:
> > I think that if Trac ticket priority is to be used, it should first be
> > working. Currently, if you try to vote on a ticket, a `500 Internal
> > Server
Hi
It appears that a bunch of static files for our trac where missed during
previous
updates. I re-deployed them so we should have the latest files now
(this is css / js stuff mostly)
I didnt notice any change in looks, but if something broke today then this is
where to
look first
i kept the ol
On Fri, Feb 17, 2023 at 7:45 PM Lynne wrote:
>
> Feb 17, 2023, 18:08 by jamr...@gmail.com:
>
> > On 2/17/2023 1:54 PM, Lynne wrote:
> >
> >> This reverts commit 26cb36f35746fe6ef53688b119852bfa6d555f62.
> >>
> >> All filters and all codecs (except wmavoice) have been ported for the
> >> lavu/tx AP
Signed-off-by: Marth64
---
libavcodec/ac3dec.c | 3 +++
libavcodec/ac3dec.h | 1 +
libavcodec/avcodec.h| 2 ++
libavcodec/codec_desc.c | 1 +
libavcodec/eac3dec.c| 11 ++-
libavcodec/profiles.c | 5 +
libavcodec/profiles.h | 1 +
7 files changed, 23 insertion
Signed-off-by: Marth64
---
libavcodec/avcodec.h| 2 ++
libavcodec/codec_desc.c | 1 +
libavcodec/mlpdec.c | 11 +++
libavcodec/profiles.c | 5 +
libavcodec/profiles.h | 1 +
5 files changed, 20 insertions(+)
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
ind
Signed-off-by: Marth64
---
libavcodec/avcodec.h | 15 +--
libavcodec/dca_syncwords.h | 3 +++
libavcodec/dca_xll.c | 26 +-
libavcodec/dca_xll.h | 3 +++
libavcodec/profiles.c | 14 --
5 files changed, 48 insertions(+), 13 d
Signed-off-by: Marth64
---
doc/APIchanges | 6 ++
libavcodec/version.h | 2 +-
2 files changed, 7 insertions(+), 1 deletion(-)
diff --git a/doc/APIchanges b/doc/APIchanges
index 29161e30bf..35ff906662 100644
--- a/doc/APIchanges
+++ b/doc/APIchanges
@@ -2,6 +2,12 @@ The last version in
av_program_add_stream_index() added in 526efa10534
may fail to carry out its purpose but the lack of
a return value stops callers from catching any error.
Fixed in new function.
---
As suggested by Andreas in
https://ffmpeg.org/pipermail/ffmpeg-devel/2023-February/306645.html
doc/APIchanges
Helper to transfer programs from one muxing context to another.
---
doc/APIchanges | 3 ++
libavformat/avformat.c | 66 ++
libavformat/avformat.h | 22 ++
libavformat/version.h | 3 +-
4 files changed, 93 insertions(+), 1 deletion(-)
---
libavformat/hlsenc.c | 8
1 file changed, 8 insertions(+)
diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c
index e1f96feda3..74db447085 100644
--- a/libavformat/hlsenc.c
+++ b/libavformat/hlsenc.c
@@ -911,6 +911,14 @@ FF_ENABLE_DEPRECATION_WARNINGS
st->id = vs->strea
---
libavformat/segment.c | 8
1 file changed, 8 insertions(+)
diff --git a/libavformat/segment.c b/libavformat/segment.c
index 2a82f39f31..d7f3fb5deb 100644
--- a/libavformat/segment.c
+++ b/libavformat/segment.c
@@ -186,6 +186,14 @@ FF_ENABLE_DEPRECATION_WARNINGS
}
}
+
---
libavformat/tee.c | 8
1 file changed, 8 insertions(+)
diff --git a/libavformat/tee.c b/libavformat/tee.c
index cb555f52fd..e81f9ba706 100644
--- a/libavformat/tee.c
+++ b/libavformat/tee.c
@@ -295,6 +295,14 @@ FF_ENABLE_DEPRECATION_WARNINGS
}
}
+for (i = 0; i < a
On 2023-02-18 03:31 am, Marton Balint wrote:
On Fri, 17 Feb 2023, Gyan Doshi wrote:
---
libavformat/hlsenc.c | 8
1 file changed, 8 insertions(+)
diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c
index e1f96feda3..cf2b36da01 100644
--- a/libavformat/hlsenc.c
+++ b/libavforma
47 matches
Mail list logo