[FFmpeg-devel] ping, ping, just 5 lines

2022-04-18 Thread MCC CS
The patch "avcodec/audiotoolboxdec: fix missing decoder out properties" hasn't been reviewed. Could anyone with some time, please, review this patch? Audiotoolbox decoder on macOS desperately needs this to be useful. ___ ffmpeg-devel mailing list ffmpeg

Re: [FFmpeg-devel] [PATCH v4] examples/decode_video: flush parser to fix missing frame

2022-04-18 Thread zhilizhao(赵志立)
> On Apr 11, 2022, at 5:12 PM, zhilizhao(赵志立) wrote: > > Ping. The same kind of issue like `doc/examples/transcode_aac: Don't ignore > last encoded frame. > > https://patchwork.ffmpeg.org/project/ffmpeg/patch/8fd28808-07f8-9458-b032-8792c67a3...@gmail.com/ Will apply this weekend unless ther

[FFmpeg-devel] [PATCH] Add unmet target level warning to libaom encoding.

2022-04-18 Thread Bohan Li
When target levels are set, this patch checks whether they are satisfied by libaom. If not, a warning is shown. Otherwise the output levels are also logged. This patch applies basically the same approach used for libvpx. Signed-off-by: Bohan Li --- libavcodec/libaomenc.c | 64 ++

Re: [FFmpeg-devel] [PATCH] avformat/mov: Add support for still image AVIF parsing

2022-04-18 Thread Vignesh Venkatasubramanian
On Mon, Mar 28, 2022 at 12:11 PM Vignesh Venkatasubramanian wrote: > > Add support for parsing AVIF still images. This patches supports > AVIF still images that have exactly 1 item (i.e.) no alpha channel. > Essentially, we will have to parse the "iloc" box and populate > the mov index. > > With t

Re: [FFmpeg-devel] [PATCH 1/1] librtmp: use AVBPrint instead of char *

2022-04-18 Thread Marton Balint
On Sat, 16 Apr 2022, Martin Storsjö wrote: On Fri, 15 Apr 2022, Tristan Matthews wrote: This avoids having to do one pass to calculate the full length to allocate followed by a second pass to actually append values. --- libavformat/librtmp.c | 124 +++-

Re: [FFmpeg-devel] [PATCH v2] avformat/mpegts: set data broadcast streams as such

2022-04-18 Thread Marton Balint
On Thu, 14 Apr 2022, Jan Ekström wrote: On Mon, Apr 11, 2022 at 1:50 PM Jan Ekström wrote: From: Jan Ekström Additionally, they should not be probed, as this is essentially various types of binary data. Signed-off-by: Jan Ekström --- Ping. Basically this checks if we have an unknown

[FFmpeg-devel] [PATCH] avfilter/vf_subtitles: add an option to choose sub stream by language

2022-04-18 Thread James Darnley
--- doc/filters.texi | 5 + libavfilter/vf_subtitles.c | 23 --- 2 files changed, 25 insertions(+), 3 deletions(-) diff --git a/doc/filters.texi b/doc/filters.texi index a161754233..cfbc807f16 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -21160,6 +211

[FFmpeg-devel] [PATCH] avformat/mov: skip call ff_codec_get_id if possible

2022-04-18 Thread Zhao Zhili
ff_codec_get_id loops over ff_codec_movvideo_tags (which is a large array) two times. The result is unused most of the cases. --- libavformat/mov.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/libavformat/mov.c b/libavformat/mov.c index 6c847de164..bdc8c84bae 100644 --- a

Re: [FFmpeg-devel] [PATCH 2/2] avdevice/dshow: silence warnings about unused variable

2022-04-18 Thread Roger Pack
On Wed, Apr 13, 2022 at 10:15 AM James Almer wrote: > > Use av_unused instead of wrapping the declaration under the DSHOWDEBUG check > in case future changes make use of it. > > Signed-off-by: James Almer > --- > libavdevice/dshow.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > dif

Re: [FFmpeg-devel] [PATCH 1/2] avdevice/dshow: remove unused variables

2022-04-18 Thread Roger Pack
LGTM. On Wed, Apr 13, 2022 at 10:15 AM James Almer wrote: > > Remnant from f125c504d8fece6420bb97767f9e72414c26312a > > Signed-off-by: James Almer > --- > libavdevice/dshow.c | 8 > 1 file changed, 8 deletions(-) > > diff --git a/libavdevice/dshow.c b/libavdevice/dshow.c > index 1e6962