My use case is a typical ffprobe+ffmpeg scenario where there are many MP4/H264
progressive materials.
I just want to avoid inserting a deinterlacing filter if it is not required.
NOTE: many MP4 files don't have a 'fiel' box. I may be missing sth, but in my
information,
this is actually a quickti
Signed-off-by: Nicolas Gaullier
---
libavformat/utils.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavformat/utils.c b/libavformat/utils.c
index b56190d2da..6d4a9bc3d6 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -884,7 +884,7 @@ static void compute_fra
This is required to get the field_order.
Signed-off-by: Nicolas Gaullier
---
libavformat/mov.c | 2 ++
tests/ref/fate/mov-zombie | 2 +-
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/libavformat/mov.c b/libavformat/mov.c
index c5583e07c7..907a0c4cee 100644
--- a/libavform
Signed-off-by: Nicolas Gaullier
---
libavcodec/h264_parser.c | 11 +
tests/ref/fate/h264-lossless | 18 +-
tests/ref/fate/h264_mp4toannexb_ticket2991 | 238 ++---
3 files changed, 139 insertions(+), 128 deletions(-)
diff --git a/libavcodec/h264_p
On Thu, Sep 09, 2021 at 10:40:06AM -0300, James Almer wrote:
> On 9/9/2021 5:46 AM, Peter Ross wrote:
> > ---
> >
> > Thanks for suggestion. I will apply in a couple days if no objections.
> >
> > libavcodec/siren.c | 32 +++-
> > 1 file changed, 31 insertions(+), 1
It seems there is an email issue for the ml and patchwork despite the use of
git send-email, certainly due to the overly long updated fate line.
So please find this patch attached (fate pass with fate_samples set).
Nicolas
0003-avformat-mov-Set-AVSTREAM_PARSE_HEADERS-flag-for-H26.patch
Descripti
On 09.09.2021 17:57, Andreas Rheinhardt wrote:
These are internal fields.
Signed-off-by: Andreas Rheinhardt
---
show_program() is only entered by three tests: mpegts-probe-pmt-merge,
mpegts-probe-program and mpegts-probe-latm. Even mpegts-probe-latm does
not print detailed information about pro
Hi Wu,
> On Aug 4, 2021, at 10:06 AM, Wu Jianhua wrote:
>
> We introduced a ff_horiz_slice_avx2/512() implemented on a new algorithm.
> In a nutshell, the new algorithm does three things, gathering data from
> 8/16 rows, blurring data, and scattering data back to the image buffer.
> Here we used
>From fb2b280e44b785b99b27c24503c61574168701b9 Mon Sep 17 00:00:00 2001
From: Hayden Myers
Date: Fri, 10 Sep 2021 14:35:28 -0400
Subject: [PATCH] libavformat/rtpdec_jpeg.c: Allow fragmentation offset to
include q header and data
Some jpeg over rtp streams include the quantization header and tabl
v3 Update:
- Reworked, revised, rebased, reorganized, refactored
- No more prototype/test-style code
- Additional subtitle filters added
- Filter documentation added
- Adjusted FATE tests
This patchset is about introducing filtering support for subtitles.
The current sub2video "hack" implementa
This is the root commit for adding subtitle filtering capabilities.
Adding the media type property to AVFrame replaces the previous
way of distinction which was based on checking width and height
to determine whether a frame is audio or video.
Signed-off-by: softworkz
---
libavutil/frame.c | 7
Signed-off-by: softworkz
---
libavcodec/ass_split.c | 12 ++--
libavcodec/ass_split.h | 2 ++
2 files changed, 12 insertions(+), 2 deletions(-)
diff --git a/libavcodec/ass_split.c b/libavcodec/ass_split.c
index 05c5453e53..e58585d3da 100644
--- a/libavcodec/ass_split.c
+++ b/libavcodec/
Moving these type to avutil - analog to e.g. samplefmt, pixfmt
Signed-off-by: softworkz
---
libavutil/Makefile | 2 +
libavutil/subfmt.c | 78
libavutil/subfmt.h | 125 +
3 files changed, 205 insertions(+)
create mode 1
Signed-off-by: softworkz
---
fftools/ffmpeg.c| 408 +---
fftools/ffmpeg.h| 12 +-
fftools/ffmpeg_filter.c | 198 +--
fftools/ffmpeg_hw.c | 2 +-
fftools/ffmpeg_opt.c| 3 +-
5 files changed, 323 insertions(+), 300 del
Moved to libavutil/subfmt, include subfmt.h from avcodec.h
Signed-off-by: softworkz
---
libavcodec/ass.c | 2 +-
libavcodec/ass.h | 6 +--
libavcodec/assdec.c | 2 +-
libavcodec/assenc.c | 4 +-
libavcodec/avcodec.c | 19 -
Introduce a single place for deriving an AVSubtitleType
from AV_CODEC_PROP_xxx
Signed-off-by: softworkz
---
libavcodec/avcodec.h | 8
libavcodec/decode.c | 5 +
libavcodec/utils.c | 11 +++
3 files changed, 20 insertions(+), 4 deletions(-)
diff --git a/libavcodec/avcod
It has never been used and going forward, there's no perspective
that it would ever be.
Signed-off-by: softworkz
---
libavcodec/avcodec.h | 8
libavcodec/options_table.h | 2 --
libavcodec/version.h | 4 ++--
3 files changed, 2 insertions(+), 12 deletions(-)
diff --git a/li
Signed-off-by: softworkz
---
libavfilter/Makefile | 1 +
libavfilter/f_interleave.c | 3 ++
libavfilter/internal.h | 1 +
libavfilter/subtitles.c| 61 ++
libavfilter/subtitles.h| 44 +++
5 files changed, 110 insertio
Signed-off-by: softworkz
---
fftools/ffplay.c | 2 +-
fftools/ffprobe.c | 23 ++-
2 files changed, 23 insertions(+), 2 deletions(-)
diff --git a/fftools/ffplay.c b/fftools/ffplay.c
index 46758b9f55..f6a4d242c3 100644
--- a/fftools/ffplay.c
+++ b/fftools/ffplay.c
@@ -2250,7
Signed-off-by: softworkz
---
libavfilter/avfilter.c | 8 +---
libavfilter/avfiltergraph.c | 5 +
libavfilter/formats.c | 14 ++
libavfilter/formats.h | 3 +++
4 files changed, 27 insertions(+), 3 deletions(-)
diff --git a/libavfilter/avfilter.c b/libavfilt
- use new function av_get_subtitle_format_from_codecdesc
- change error message
- remove obsolete 'sub_text_format' parameter
Signed-off-by: softworkz
---
libavfilter/vf_subtitles.c | 14 --
1 file changed, 8 insertions(+), 6 deletions(-)
diff --git a/libavfilter/vf_subtitles.c b/li
Signed-off-by: softworkz
---
configure| 2 +-
libavfilter/allfilters.c | 10 +++---
libavfilter/buffersink.c | 63 +++
libavfilter/buffersink.h | 15 +
libavfilter/buffersrc.c | 72
libavfilter/buff
Signed-off-by: softworkz
---
libavfilter/Makefile | 2 +
libavfilter/allfilters.c | 2 +
libavfilter/vf_overlay_graphicsubs.c | 740 +++
3 files changed, 744 insertions(+)
create mode 100644 libavfilter/vf_overlay_graphicsubs.c
diff --git
Signed-off-by: softworkz
---
configure | 2 +
libavfilter/Makefile | 2 +
libavfilter/allfilters.c | 2 +
libavfilter/avfilter.c| 18 +-
libavfilter/vf_overlay_textsubs.c | 633 ++
5 files changed, 652 in
Signed-off-by: softworkz
---
libavfilter/Makefile | 3 +
libavfilter/allfilters.c | 1 +
libavfilter/sf_textmod.c | 409 +++
3 files changed, 413 insertions(+)
create mode 100644 libavfilter/sf_textmod.c
diff --git a/libavfilter/Makefile b/libavfilter
Signed-off-by: softworkz
---
libavfilter/Makefile | 1 +
libavfilter/allfilters.c | 1 +
libavfilter/sf_stripstyles.c | 246 +++
3 files changed, 248 insertions(+)
create mode 100644 libavfilter/sf_stripstyles.c
diff --git a/libavfilter/Makefile b
Signed-off-by: softworkz
---
doc/filters.texi | 263 +++
1 file changed, 263 insertions(+)
diff --git a/doc/filters.texi b/doc/filters.texi
index 9ad6031d23..a7b80acada 100644
--- a/doc/filters.texi
+++ b/doc/filters.texi
@@ -25016,6 +25016,269 @@ tool
Signed-off-by: softworkz
---
tests/ref/fate/filter-overlay-dvdsub-2397 | 181 +++---
tests/ref/fate/sub-dvb| 162 ++-
tests/ref/fate/sub2video | 178 -
tests/ref/fate/sub2video_basic| 93 ++--
Moving these type to avutil - analog to e.g. samplefmt, pixfmt
Signed-off-by: softworkz
---
libavutil/Makefile | 2 +
libavutil/subfmt.c | 78
libavutil/subfmt.h | 125 +
3 files changed, 205 insertions(+)
create mode 1
29 matches
Mail list logo