forked from pool/ffmpeg-7
Compare commits
12 Commits
Author | SHA256 | Date | |
---|---|---|---|
058f4b41f8 | |||
|
5915c22dcc | ||
|
0d5a257491 | ||
a7d186aed2 | |||
|
9359870d00 | ||
451472ac1b | |||
|
4fdf25905f | ||
|
0973994793 | ||
|
33b0312119 | ||
|
b4e814daa8 | ||
44e58ba163 | |||
|
ff2a908032 |
@@ -0,0 +1,27 @@
|
|||||||
|
From: François Cartegnie <fcvlcdev@free.fr>
|
||||||
|
Date: Mon, 13 May 2024 11:37:27 +0000
|
||||||
|
Subject: avcodec/decode: clean-up if get_hw_frames_parameters fails
|
||||||
|
|
||||||
|
https://trac.ffmpeg.org/ticket/11013
|
||||||
|
https://code.videolan.org/videolan/vlc/-/issues/28811
|
||||||
|
|
||||||
|
Fixes the following assert:
|
||||||
|
|
||||||
|
[00007f1df83d17e0] vaapi generic error: avcodec_get_hw_frames_parameters failed: -22
|
||||||
|
Assertion p_dst->hwaccel_threadsafe || (!dst->hwaccel && !dst->internal->hwaccel_priv_data) failed at libavcodec/pthread_frame.c:349
|
||||||
|
|
||||||
|
Reproduced from VLC with VAAPI, when fallbacking from hw to sw.
|
||||||
|
|
||||||
|
--- a/libavcodec/pthread_frame.c
|
||||||
|
+++ b/libavcodec/pthread_frame.c
|
||||||
|
@@ -344,6 +344,10 @@ FF_ENABLE_DEPRECATION_WARNINGS
|
||||||
|
return err;
|
||||||
|
}
|
||||||
|
|
||||||
|
+ // hwaccel could have failed init due to some params
|
||||||
|
+ if(!dst->hwaccel && dst->internal->hwaccel_priv_data)
|
||||||
|
+ ff_hwaccel_uninit(dst);
|
||||||
|
+
|
||||||
|
// reset dst hwaccel state if needed
|
||||||
|
av_assert0(p_dst->hwaccel_threadsafe ||
|
||||||
|
(!dst->hwaccel && !dst->internal->hwaccel_priv_data));
|
@@ -1,4 +1,4 @@
|
|||||||
mtime: 1723277105
|
mtime: 1740402399
|
||||||
commit: 62e69514f7630d78d61eaba08f38722630b84b1cd4a21f572e09cb0b26d8249d
|
commit: fba0c8d5aee6456fbfe57c31817aaff4ce7ba3d31509ca778be2c36ad4b1dff5
|
||||||
url: https://src.opensuse.org/jengelh/ffmpeg-7
|
url: https://src.opensuse.org/jengelh/ffmpeg-7
|
||||||
revision: master
|
revision: master
|
||||||
|
@@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:bbbe70dceb56f3b2613ab3df8bd9310c0e9282365a8a27434d16bce808cc1663
|
oid sha256:c08a9ee6a2b95485bf422f6ab6a45a88265efba437ed791fb71cc8d906764f28
|
||||||
size 256
|
size 256
|
||||||
|
29
ffmpeg-7-CVE-2025-0518.patch
Normal file
29
ffmpeg-7-CVE-2025-0518.patch
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
From b5b6391d64807578ab872dc58fb8aa621dcfc38a Mon Sep 17 00:00:00 2001
|
||||||
|
From: Michael Niedermayer <michael@niedermayer.cc>
|
||||||
|
Date: Mon, 6 Jan 2025 22:01:39 +0100
|
||||||
|
Subject: [PATCH] avfilter/af_pan: Fix sscanf() use
|
||||||
|
|
||||||
|
Fixes: Memory Data Leak
|
||||||
|
|
||||||
|
Found-by: Simcha Kosman <simcha.kosman@cyberark.com>
|
||||||
|
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
|
||||||
|
---
|
||||||
|
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 0d20b0307b..5feb2439c7 100644
|
||||||
|
--- a/libavfilter/af_pan.c
|
||||||
|
+++ b/libavfilter/af_pan.c
|
||||||
|
@@ -196,7 +196,7 @@ static av_cold int init(AVFilterContext *ctx)
|
||||||
|
sign = 1;
|
||||||
|
while (1) {
|
||||||
|
gain = 1;
|
||||||
|
- if (sscanf(arg, "%lf%n *%n", &gain, &len, &len))
|
||||||
|
+ if (sscanf(arg, "%lf%n *%n", &gain, &len, &len) >= 1)
|
||||||
|
arg += len;
|
||||||
|
if (parse_channel_name(&arg, &in_ch_id, &named)){
|
||||||
|
av_log(ctx, AV_LOG_ERROR,
|
||||||
|
--
|
||||||
|
2.44.0
|
||||||
|
|
34
ffmpeg-7-CVE-2025-22919.patch
Normal file
34
ffmpeg-7-CVE-2025-22919.patch
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
From 1446e37d3d032e1452844778b3e6ba2c20f0c322 Mon Sep 17 00:00:00 2001
|
||||||
|
From: James Almer <jamrial@gmail.com>
|
||||||
|
Date: Mon, 30 Dec 2024 00:25:41 -0300
|
||||||
|
Subject: [PATCH] avfilter/buffersrc: check for valid sample rate
|
||||||
|
|
||||||
|
A sample rate <= 0 is invalid.
|
||||||
|
|
||||||
|
Fixes an assert in ffmpeg_enc.c that assumed a valid sample rate would be set.
|
||||||
|
Fixes ticket #11385.
|
||||||
|
|
||||||
|
Signed-off-by: James Almer <jamrial@gmail.com>
|
||||||
|
---
|
||||||
|
libavfilter/buffersrc.c | 5 +++++
|
||||||
|
1 file changed, 5 insertions(+)
|
||||||
|
|
||||||
|
diff --git a/libavfilter/buffersrc.c b/libavfilter/buffersrc.c
|
||||||
|
index bdf8b14451..c921803c67 100644
|
||||||
|
--- a/libavfilter/buffersrc.c
|
||||||
|
+++ b/libavfilter/buffersrc.c
|
||||||
|
@@ -421,6 +421,11 @@ static av_cold int init_audio(AVFilterContext *ctx)
|
||||||
|
av_channel_layout_describe(&s->ch_layout, buf, sizeof(buf));
|
||||||
|
}
|
||||||
|
|
||||||
|
+ if (s->sample_rate <= 0) {
|
||||||
|
+ av_log(ctx, AV_LOG_ERROR, "Sample rate not set\n");
|
||||||
|
+ return AVERROR(EINVAL);
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
if (!s->time_base.num)
|
||||||
|
s->time_base = (AVRational){1, s->sample_rate};
|
||||||
|
|
||||||
|
--
|
||||||
|
2.44.0
|
||||||
|
|
29
ffmpeg-7-CVE-2025-22921.patch
Normal file
29
ffmpeg-7-CVE-2025-22921.patch
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
From 7f9c7f9849a2155224711f0ff57ecdac6e4bfb57 Mon Sep 17 00:00:00 2001
|
||||||
|
From: James Almer <jamrial@gmail.com>
|
||||||
|
Date: Wed, 1 Jan 2025 23:58:39 -0300
|
||||||
|
Subject: [PATCH] avcodec/jpeg2000dec: clear array length when freeing it
|
||||||
|
|
||||||
|
Fixes NULL pointer dereferences.
|
||||||
|
Fixes ticket #11393.
|
||||||
|
|
||||||
|
Reviewed-by: Michael Niedermayer <michael@niedermayer.cc>
|
||||||
|
Signed-off-by: James Almer <jamrial@gmail.com>
|
||||||
|
---
|
||||||
|
libavcodec/jpeg2000dec.c | 1 +
|
||||||
|
1 file changed, 1 insertion(+)
|
||||||
|
|
||||||
|
diff --git a/libavcodec/jpeg2000dec.c b/libavcodec/jpeg2000dec.c
|
||||||
|
index e5e897a29f..b82d85d5ee 100644
|
||||||
|
--- a/libavcodec/jpeg2000dec.c
|
||||||
|
+++ b/libavcodec/jpeg2000dec.c
|
||||||
|
@@ -1521,6 +1521,7 @@ static int jpeg2000_decode_packet(Jpeg2000DecoderContext *s, Jpeg2000Tile *tile,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
av_freep(&cblk->lengthinc);
|
||||||
|
+ cblk->nb_lengthinc = 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// Save state of stream
|
||||||
|
--
|
||||||
|
2.44.0
|
||||||
|
|
26
ffmpeg-7-CVE-2025-25473.patch
Normal file
26
ffmpeg-7-CVE-2025-25473.patch
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
From c08d300481b8ebb846cd43a473988fdbc6793d1b Mon Sep 17 00:00:00 2001
|
||||||
|
From: James Almer <jamrial@gmail.com>
|
||||||
|
Date: Fri, 17 Jan 2025 00:05:31 -0300
|
||||||
|
Subject: [PATCH] avformat/avformat: also clear FFFormatContext packet queue
|
||||||
|
when closing a muxer
|
||||||
|
|
||||||
|
packet_buffer is used in mux.c, and if a muxing process fails at a point where
|
||||||
|
packets remained in said queue, they will leak.
|
||||||
|
|
||||||
|
Fixes ticket #11419
|
||||||
|
|
||||||
|
Signed-off-by: James Almer <jamrial@gmail.com>
|
||||||
|
---
|
||||||
|
libavformat/avformat.c | 1 +
|
||||||
|
1 file changed, 1 insertion(+)
|
||||||
|
|
||||||
|
--- a/libavformat/avformat.c
|
||||||
|
+++ b/libavformat/avformat.c
|
||||||
|
@@ -184,6 +184,7 @@
|
||||||
|
av_dict_free(&si->id3v2_meta);
|
||||||
|
av_packet_free(&si->pkt);
|
||||||
|
av_packet_free(&si->parse_pkt);
|
||||||
|
+ avpriv_packet_list_free(&si->packet_buffer);
|
||||||
|
av_freep(&s->streams);
|
||||||
|
av_freep(&s->stream_groups);
|
||||||
|
ff_flush_packet_queue(s);
|
@@ -1,113 +0,0 @@
|
|||||||
From 5b87869c09cece1583e74b6f796aa825a4765631 Mon Sep 17 00:00:00 2001
|
|
||||||
From: James Almer <jamrial@gmail.com>
|
|
||||||
Date: Wed, 31 Jul 2024 22:19:53 -0300
|
|
||||||
Subject: [PATCH] avformat/mov: fix track handling when mixing IAMF and video
|
|
||||||
tracks
|
|
||||||
|
|
||||||
Fixes crashes when muxing the two together.
|
|
||||||
|
|
||||||
Signed-off-by: James Almer <jamrial@gmail.com>
|
|
||||||
---
|
|
||||||
libavformat/movenc.c | 37 ++++++++++++++++++++++++++++---------
|
|
||||||
1 file changed, 28 insertions(+), 9 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/libavformat/movenc.c b/libavformat/movenc.c
|
|
||||||
index e40948edb8..d20d0bc064 100644
|
|
||||||
--- a/libavformat/movenc.c
|
|
||||||
+++ b/libavformat/movenc.c
|
|
||||||
@@ -7149,7 +7149,9 @@ static int mov_create_dvd_sub_decoder_specific_info(MOVTrack *track,
|
|
||||||
static int mov_init_iamf_track(AVFormatContext *s)
|
|
||||||
{
|
|
||||||
MOVMuxContext *mov = s->priv_data;
|
|
||||||
- MOVTrack *track = &mov->tracks[0]; // IAMF if present is always the first track
|
|
||||||
+ MOVTrack *track;
|
|
||||||
+ IAMFContext *iamf;
|
|
||||||
+ int first_iamf_idx = INT_MAX, last_iamf_idx = 0;
|
|
||||||
int nb_audio_elements = 0, nb_mix_presentations = 0;
|
|
||||||
int ret;
|
|
||||||
|
|
||||||
@@ -7171,24 +7173,24 @@ static int mov_init_iamf_track(AVFormatContext *s)
|
|
||||||
return AVERROR(EINVAL);
|
|
||||||
}
|
|
||||||
|
|
||||||
- track->iamf = av_mallocz(sizeof(*track->iamf));
|
|
||||||
- if (!track->iamf)
|
|
||||||
+ iamf = av_mallocz(sizeof(*iamf));
|
|
||||||
+ if (!iamf)
|
|
||||||
return AVERROR(ENOMEM);
|
|
||||||
|
|
||||||
+
|
|
||||||
for (int i = 0; i < s->nb_stream_groups; i++) {
|
|
||||||
const AVStreamGroup *stg = s->stream_groups[i];
|
|
||||||
switch(stg->type) {
|
|
||||||
case AV_STREAM_GROUP_PARAMS_IAMF_AUDIO_ELEMENT:
|
|
||||||
for (int j = 0; j < stg->nb_streams; j++) {
|
|
||||||
- track->first_iamf_idx = FFMIN(stg->streams[j]->index, track->first_iamf_idx);
|
|
||||||
- track->last_iamf_idx = FFMAX(stg->streams[j]->index, track->last_iamf_idx);
|
|
||||||
- stg->streams[j]->priv_data = track;
|
|
||||||
+ first_iamf_idx = FFMIN(stg->streams[j]->index, first_iamf_idx);
|
|
||||||
+ last_iamf_idx = FFMAX(stg->streams[j]->index, last_iamf_idx);
|
|
||||||
}
|
|
||||||
|
|
||||||
- ret = ff_iamf_add_audio_element(track->iamf, stg, s);
|
|
||||||
+ ret = ff_iamf_add_audio_element(iamf, stg, s);
|
|
||||||
break;
|
|
||||||
case AV_STREAM_GROUP_PARAMS_IAMF_MIX_PRESENTATION:
|
|
||||||
- ret = ff_iamf_add_mix_presentation(track->iamf, stg, s);
|
|
||||||
+ ret = ff_iamf_add_mix_presentation(iamf, stg, s);
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
av_assert0(0);
|
|
||||||
@@ -7197,8 +7199,20 @@ static int mov_init_iamf_track(AVFormatContext *s)
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
+ track = &mov->tracks[first_iamf_idx];
|
|
||||||
+ track->iamf = iamf;
|
|
||||||
+ track->first_iamf_idx = first_iamf_idx;
|
|
||||||
+ track->last_iamf_idx = last_iamf_idx;
|
|
||||||
track->tag = MKTAG('i','a','m','f');
|
|
||||||
|
|
||||||
+ for (int i = 0; i < s->nb_stream_groups; i++) {
|
|
||||||
+ AVStreamGroup *stg = s->stream_groups[i];
|
|
||||||
+ if (stg->type != AV_STREAM_GROUP_PARAMS_IAMF_AUDIO_ELEMENT)
|
|
||||||
+ continue;
|
|
||||||
+ for (int j = 0; j < stg->nb_streams; j++)
|
|
||||||
+ stg->streams[j]->priv_data = track;
|
|
||||||
+ }
|
|
||||||
+
|
|
||||||
ret = avio_open_dyn_buf(&track->iamf_buf);
|
|
||||||
if (ret < 0)
|
|
||||||
return ret;
|
|
||||||
@@ -7209,6 +7223,7 @@ static int mov_init_iamf_track(AVFormatContext *s)
|
|
||||||
static int mov_init(AVFormatContext *s)
|
|
||||||
{
|
|
||||||
MOVMuxContext *mov = s->priv_data;
|
|
||||||
+ int has_iamf = 0;
|
|
||||||
int i, ret;
|
|
||||||
|
|
||||||
mov->fc = s;
|
|
||||||
@@ -7359,6 +7374,7 @@ static int mov_init(AVFormatContext *s)
|
|
||||||
}
|
|
||||||
st->priv_data = st;
|
|
||||||
}
|
|
||||||
+ has_iamf = 1;
|
|
||||||
|
|
||||||
if (!mov->nb_tracks) // We support one track for the entire IAMF structure
|
|
||||||
mov->nb_tracks++;
|
|
||||||
@@ -7455,8 +7471,11 @@ static int mov_init(AVFormatContext *s)
|
|
||||||
for (int j = 0, i = 0; j < s->nb_streams; j++) {
|
|
||||||
AVStream *st = s->streams[j];
|
|
||||||
|
|
||||||
- if (st != st->priv_data)
|
|
||||||
+ if (st != st->priv_data) {
|
|
||||||
+ if (has_iamf)
|
|
||||||
+ i += has_iamf--;
|
|
||||||
continue;
|
|
||||||
+ }
|
|
||||||
st->priv_data = &mov->tracks[i++];
|
|
||||||
}
|
|
||||||
|
|
||||||
--
|
|
||||||
2.41.0
|
|
||||||
|
|
BIN
ffmpeg-7.0.2.tar.xz
(Stored with Git LFS)
BIN
ffmpeg-7.0.2.tar.xz
(Stored with Git LFS)
Binary file not shown.
@@ -1,11 +0,0 @@
|
|||||||
-----BEGIN PGP SIGNATURE-----
|
|
||||||
|
|
||||||
iQFMBAABCgA2FiEE/PmG6hXm4pOlZE8QtDIvBNZ2WNgFAmatZQYYHGZmbXBlZy1k
|
|
||||||
ZXZlbEBmZm1wZWcub3JnAAoJELQyLwTWdljYIlcIAKF1VWqnhhKkBHSxEnH8ipUH
|
|
||||||
nlJmPitKaJTwgtAtHGH8DL4XlgUwxfws9YohJ6V2fz/LjD+4rcU1BB9lMKNTaEW3
|
|
||||||
g27lIRHXC571OGgBKJFadhsbULtUu9oUOIcqS28zOl3fsok/G7NVd3ajkpiRUPhu
|
|
||||||
LRXUXNbCIwtXbIdS0yECpiRcHMj/hX6nkY3yHrmWXAts/TtmIQyaNTbnC4ervA1s
|
|
||||||
Ijc4cY/unb6OD9DpmC6DznVykyfzc2GjjCiNxRXrljp+MaZ7jBEMwjXfOIATwBwj
|
|
||||||
gCN+N6nlxc5e3gMOGcAJy93iD9HpbgVDAn6S6jnB/z5+Tyv6ZeP+sytsgOCNjlQ=
|
|
||||||
=R372
|
|
||||||
-----END PGP SIGNATURE-----
|
|
BIN
ffmpeg-7.1.tar.xz
(Stored with Git LFS)
Normal file
BIN
ffmpeg-7.1.tar.xz
(Stored with Git LFS)
Normal file
Binary file not shown.
11
ffmpeg-7.1.tar.xz.asc
Normal file
11
ffmpeg-7.1.tar.xz.asc
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
-----BEGIN PGP SIGNATURE-----
|
||||||
|
|
||||||
|
iQFMBAABCgA2FiEE/PmG6hXm4pOlZE8QtDIvBNZ2WNgFAmb549IYHGZmbXBlZy1k
|
||||||
|
ZXZlbEBmZm1wZWcub3JnAAoJELQyLwTWdljYilgH/2sKAFBy8ojPrYxVy7i+O3WO
|
||||||
|
bE5lu2yhE6gHkHnxZga5k1uuhkRhapgTiUs9foG0zmL6Qfsg7lJ2EjrieD+hSWsw
|
||||||
|
ApqHVW5SUUSrtY0kO9Z/2jQIRBH5JaMPSar6YNPTdXuSUcun784gPgwIGYwzAM/S
|
||||||
|
14tkOZpq+X4nSJ4JezJDWeIsdz8zK4gIOuo0eCPbUgZ/A7wUMdypGZ9LOqk/mCc8
|
||||||
|
RnErz36HlZzUnGrL73gxsGCQ2PXL+1oMHnt0antF90T4YNusOX9FprclH/jb+RLl
|
||||||
|
jTb8RVb/4xJKV96ScMiwy2GaozzXFjzY1X7Gq8WN5NGRlbso6WQpqt8yunD7ib4=
|
||||||
|
=A/aU
|
||||||
|
-----END PGP SIGNATURE-----
|
@@ -1,3 +1,84 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Feb 19 05:17:22 UTC 2025 - Cliff Zhao <qzhao@suse.com>
|
||||||
|
|
||||||
|
- Add ffmpeg-7-CVE-2025-22921.patch:
|
||||||
|
Backporting 7f9c7f98 from upstream, clear array length when
|
||||||
|
freeing it.
|
||||||
|
(CVE-2025-22921, bsc#1237382)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Feb 19 04:27:06 UTC 2025 - Cliff Zhao <qzhao@suse.com>
|
||||||
|
|
||||||
|
- Add ffmpeg-7-CVE-2025-25473.patch:
|
||||||
|
Backporting c08d3004 from upstream, clear FFFormatContext packet.
|
||||||
|
When packet_buffer is used in mux.c, and if a muxing process fails
|
||||||
|
at a point where packets remained in said queue.
|
||||||
|
(CVE-2025-25473, bsc#1237351)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Feb 19 03:18:02 UTC 2025 - Cliff Zhao <qzhao@suse.com>
|
||||||
|
|
||||||
|
- Add ffmpeg-7-CVE-2025-0518.patch:
|
||||||
|
Backporting b5b6391d from upstream, fixes memory data leak when
|
||||||
|
use sscanf().
|
||||||
|
(CVE-2025-0518, bsc#1236007)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Feb 19 02:58:01 UTC 2025 - Cliff Zhao <qzhao@suse.com>
|
||||||
|
|
||||||
|
- Add ffmpeg-7-CVE-2025-22919.patch:
|
||||||
|
Backporting 1446e37d from upstream, check for valid sample rate
|
||||||
|
As the sample rate <= 0 is invalid.
|
||||||
|
(CVE-2025-22919, bsc#1237371)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 15 08:18:54 UTC 2024 - Antonio Larrosa <alarrosa@suse.com>
|
||||||
|
|
||||||
|
- Adjust bconds to build the package in SLFO without xvidcore.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 2 08:20:18 UTC 2024 - Jan Engelhardt <jengelh@inai.de>
|
||||||
|
|
||||||
|
- Update to release 7.1
|
||||||
|
* ffmpeg CLI filtergraph chaining
|
||||||
|
* pad_vaapi, drawbox_vaapi filters
|
||||||
|
* vf_scale supports secondary ref input and framesync options
|
||||||
|
* vf_scale2ref deprecated
|
||||||
|
* removed DEC Alpha DSP and support code
|
||||||
|
* perlin video source
|
||||||
|
* Cropping metadata parsing and writing in Matroska and MP4/MOV
|
||||||
|
de/muxers
|
||||||
|
* YUV colorspace negotiation for codecs and filters, obsoleting
|
||||||
|
the YUVJ pixel format
|
||||||
|
* Vulkan H.264 and H.265 encoders
|
||||||
|
* stream specifiers in fftools can now match by stream
|
||||||
|
disposition
|
||||||
|
* LCEVC enhancement data exporting in H.26x and MP4/ISOBMFF
|
||||||
|
* LCEVC filter
|
||||||
|
* avcodec/mpegvideo_enc: Add check for av_packet_new_side_data (CVE-2024-12361, bsc#1237358)
|
||||||
|
* avformat/dump: print only the actual streams in a tile grid group (CVE-2025-22920, bsc#1237380)
|
||||||
|
- Delete patches/ffmpeg-7-fix-crashes.patch,
|
||||||
|
0001-libavcodec-arm-mlpdsp_armv5te-fix-label-format-to-wo.patch (merged)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Sep 30 12:34:56 UTC 2024 - olaf@aepfle.de
|
||||||
|
|
||||||
|
- Fix assertion due to missing priv_data cleanup on failed VAAPI
|
||||||
|
acceleration with 11013-avcodec-decode-clean-up-if-get_hw_frames_parameters-.patch
|
||||||
|
(ffmpeg#11013, vlc#28811)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Sep 26 10:02:20 UTC 2024 - Stefan Dirsch <sndirsch@suse.com>
|
||||||
|
|
||||||
|
- no longer build against libmfx; build also 15.5 against libvpl
|
||||||
|
(boo#1230983)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Aug 21 09:58:42 UTC 2024 - Jan Engelhardt <jengelh@inai.de>
|
||||||
|
|
||||||
|
- Add 0001-libavcodec-arm-mlpdsp_armv5te-fix-label-format-to-wo.patch
|
||||||
|
to resolve build failure on armv7 [boo#1229338]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Aug 7 07:37:24 UTC 2024 - Cliff Zhao <qzhao@suse.com>
|
Wed Aug 7 07:37:24 UTC 2024 - Cliff Zhao <qzhao@suse.com>
|
||||||
|
|
||||||
@@ -23,6 +104,9 @@ Wed Aug 7 07:37:24 UTC 2024 - Cliff Zhao <qzhao@suse.com>
|
|||||||
* avcodec/hevcdec: fix segfault on invalid film grain metadata (CVE-2024-32228, bsc#1227277)
|
* avcodec/hevcdec: fix segfault on invalid film grain metadata (CVE-2024-32228, bsc#1227277)
|
||||||
* avfilter/vf_tiltandshift: fix buffer offset for yuv422p input (CVE-2024-32229, bsc#1227295)
|
* avfilter/vf_tiltandshift: fix buffer offset for yuv422p input (CVE-2024-32229, bsc#1227295)
|
||||||
* avcodec/mpegvideo_enc: Fix 1 line and one column images (CVE-2024-32230, bsc#1227296)
|
* avcodec/mpegvideo_enc: Fix 1 line and one column images (CVE-2024-32230, bsc#1227296)
|
||||||
|
* avcodec/pnmdec: Use 64bit for input size check (CVE-2024-7055, bsc#1229026)
|
||||||
|
* fftools/ffmpeg_mux_init: Fix double-free on error (CVE-2024-35365, bsc#1235091)
|
||||||
|
* avformat/dxa: Adjust order of operations around block align (CVE-2024-36613, bsc#1235092)
|
||||||
- Drop ffmpeg-7-CVE-2024-32228.patch:
|
- Drop ffmpeg-7-CVE-2024-32228.patch:
|
||||||
The fix has been merged.
|
The fix has been merged.
|
||||||
- Drop ffmpeg-7-CVE-2024-32229.patch:
|
- Drop ffmpeg-7-CVE-2024-32229.patch:
|
||||||
|
@@ -64,7 +64,7 @@
|
|||||||
%bcond_with x265
|
%bcond_with x265
|
||||||
%bcond_with xvid
|
%bcond_with xvid
|
||||||
|
|
||||||
%if 0%{?suse_version} > 1500
|
%if 0%{?suse_version} > 1600
|
||||||
%bcond_without mysofa
|
%bcond_without mysofa
|
||||||
%bcond_without vidstab
|
%bcond_without vidstab
|
||||||
%bcond_without codec2
|
%bcond_without codec2
|
||||||
@@ -74,19 +74,29 @@
|
|||||||
%bcond_without opencore
|
%bcond_without opencore
|
||||||
%bcond_without xvid
|
%bcond_without xvid
|
||||||
%else
|
%else
|
||||||
|
%if 0%{?suse_version} > 1500
|
||||||
|
%bcond_without mysofa
|
||||||
|
%bcond_without vidstab
|
||||||
|
%bcond_without codec2
|
||||||
|
%bcond_without rubberband
|
||||||
|
%bcond_without vulkan
|
||||||
|
%bcond_without amrwb
|
||||||
|
%bcond_without opencore
|
||||||
|
%else
|
||||||
%bcond_with mysofa
|
%bcond_with mysofa
|
||||||
%bcond_with vidstab
|
%bcond_with vidstab
|
||||||
%bcond_with codec2
|
%bcond_with codec2
|
||||||
%bcond_with rubberband
|
%bcond_with rubberband
|
||||||
%bcond_with vulkan
|
%bcond_with vulkan
|
||||||
%endif
|
%endif
|
||||||
|
%endif
|
||||||
|
|
||||||
%define _name ffmpeg
|
%define _name ffmpeg
|
||||||
%define _major_version 7
|
%define _major_version 7
|
||||||
%define _major_expected 8
|
%define _major_expected 8
|
||||||
|
|
||||||
Name: ffmpeg-7
|
Name: ffmpeg-7
|
||||||
Version: 7.0.2
|
Version: 7.1
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Set of libraries for working with various multimedia formats
|
Summary: Set of libraries for working with various multimedia formats
|
||||||
License: GPL-3.0-or-later
|
License: GPL-3.0-or-later
|
||||||
@@ -109,7 +119,11 @@ Patch4: ffmpeg-4.2-dlopen-fdk_aac.patch
|
|||||||
Patch5: work-around-abi-break.patch
|
Patch5: work-around-abi-break.patch
|
||||||
Patch10: ffmpeg-chromium.patch
|
Patch10: ffmpeg-chromium.patch
|
||||||
Patch91: ffmpeg-dlopen-openh264.patch
|
Patch91: ffmpeg-dlopen-openh264.patch
|
||||||
Patch95: ffmpeg-7-fix-crashes.patch
|
Patch15: 11013-avcodec-decode-clean-up-if-get_hw_frames_parameters-.patch
|
||||||
|
Patch16: ffmpeg-7-CVE-2025-22919.patch
|
||||||
|
Patch17: ffmpeg-7-CVE-2025-0518.patch
|
||||||
|
Patch18: ffmpeg-7-CVE-2025-25473.patch
|
||||||
|
Patch19: ffmpeg-7-CVE-2025-22921.patch
|
||||||
BuildRequires: ladspa-devel
|
BuildRequires: ladspa-devel
|
||||||
BuildRequires: libgsm-devel
|
BuildRequires: libgsm-devel
|
||||||
BuildRequires: libmp3lame-devel >= 3.98.3
|
BuildRequires: libmp3lame-devel >= 3.98.3
|
||||||
@@ -229,11 +243,7 @@ BuildRequires: pkgconfig(shaderc) >= 2019.1
|
|||||||
BuildRequires: pkgconfig(vulkan) >= 1.3.255
|
BuildRequires: pkgconfig(vulkan) >= 1.3.255
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%if 0%{?suse_version} < 1550 && 0%{?sle_version} >= 150200 && 0%{?sle_version} < 150600
|
%if 0%{?suse_version} >= 1550 || 0%{?sle_version} >= 150500
|
||||||
%ifarch x86_64 %x86_64
|
|
||||||
BuildRequires: pkgconfig(libmfx)
|
|
||||||
%endif
|
|
||||||
%else
|
|
||||||
%ifarch x86_64 %x86_64
|
%ifarch x86_64 %x86_64
|
||||||
BuildRequires: pkgconfig(vpl) >= 2.6
|
BuildRequires: pkgconfig(vpl) >= 2.6
|
||||||
%endif
|
%endif
|
||||||
@@ -251,6 +261,14 @@ Requires: (libavutil59 = %version-%release or ffmpeg-7-mini-libs = %versio
|
|||||||
Requires: (libpostproc58 = %version-%release or ffmpeg-7-mini-libs = %version-%release)
|
Requires: (libpostproc58 = %version-%release or ffmpeg-7-mini-libs = %version-%release)
|
||||||
Requires: (libswresample5 = %version-%release or ffmpeg-7-mini-libs = %version-%release)
|
Requires: (libswresample5 = %version-%release or ffmpeg-7-mini-libs = %version-%release)
|
||||||
Requires: (libswscale8 = %version-%release or ffmpeg-7-mini-libs = %version-%release)
|
Requires: (libswscale8 = %version-%release or ffmpeg-7-mini-libs = %version-%release)
|
||||||
|
%if "%flavor" == "ffmpeg-7-mini"
|
||||||
|
# Patches may subtly change internal APIs, so we're sticking %%release in
|
||||||
|
# Requires lines. It also conveniently blocks openSUSE libav* being combined
|
||||||
|
# with Packman libav*, due to PM's unique %%release numbers.
|
||||||
|
# This use of %%release with %flavor however requires bcnt synchro:
|
||||||
|
#
|
||||||
|
#!BcntSyncTag: ffmpeg-7
|
||||||
|
%endif
|
||||||
|
|
||||||
%description
|
%description
|
||||||
FFmpeg is a multimedia framework, able to decode, encode,
|
FFmpeg is a multimedia framework, able to decode, encode,
|
||||||
@@ -630,11 +648,7 @@ LDFLAGS="%_lto_cflags" \
|
|||||||
%endif
|
%endif
|
||||||
%endif
|
%endif
|
||||||
--enable-lv2 \
|
--enable-lv2 \
|
||||||
%if 0%{?suse_version} < 1550 && 0%{?sle_version} >= 150200 && 0%{?sle_version} < 150600
|
%if 0%{?suse_version} >= 1550 || 0%{?sle_version} >= 150500
|
||||||
%ifarch x86_64 %x86_64
|
|
||||||
--enable-libmfx \
|
|
||||||
%endif
|
|
||||||
%else
|
|
||||||
%ifarch x86_64 %x86_64
|
%ifarch x86_64 %x86_64
|
||||||
--enable-libvpl \
|
--enable-libvpl \
|
||||||
%endif
|
%endif
|
||||||
@@ -806,7 +820,7 @@ done
|
|||||||
%else
|
%else
|
||||||
%define _name ffmpeg
|
%define _name ffmpeg
|
||||||
Name: ffmpeg-7-mini
|
Name: ffmpeg-7-mini
|
||||||
Version: 7.0.2
|
Version: 7.1
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Set of libraries for working with various multimedia formats
|
Summary: Set of libraries for working with various multimedia formats
|
||||||
License: GPL-3.0-or-later
|
License: GPL-3.0-or-later
|
||||||
@@ -822,7 +836,7 @@ Patch4: ffmpeg-4.2-dlopen-fdk_aac.patch
|
|||||||
Patch5: work-around-abi-break.patch
|
Patch5: work-around-abi-break.patch
|
||||||
Patch10: ffmpeg-chromium.patch
|
Patch10: ffmpeg-chromium.patch
|
||||||
Patch91: ffmpeg-dlopen-openh264.patch
|
Patch91: ffmpeg-dlopen-openh264.patch
|
||||||
Patch95: ffmpeg-7-fix-crashes.patch
|
Patch15: 11013-avcodec-decode-clean-up-if-get_hw_frames_parameters-.patch
|
||||||
BuildRequires: c_compiler
|
BuildRequires: c_compiler
|
||||||
Requires: this-is-only-for-build-envs
|
Requires: this-is-only-for-build-envs
|
||||||
|
|
||||||
|
@@ -11,11 +11,11 @@ Add av_stream_get_first_dts for Chromium
|
|||||||
libavformat/utils.c | 7 +++++++
|
libavformat/utils.c | 7 +++++++
|
||||||
2 files changed, 11 insertions(+)
|
2 files changed, 11 insertions(+)
|
||||||
|
|
||||||
Index: ffmpeg-7.0/libavformat/avformat.h
|
Index: ffmpeg-7.1/libavformat/avformat.h
|
||||||
===================================================================
|
===================================================================
|
||||||
--- ffmpeg-7.0.orig/libavformat/avformat.h
|
--- ffmpeg-7.1.orig/libavformat/avformat.h
|
||||||
+++ ffmpeg-7.0/libavformat/avformat.h
|
+++ ffmpeg-7.1/libavformat/avformat.h
|
||||||
@@ -1170,6 +1170,10 @@ typedef struct AVStreamGroup {
|
@@ -1202,6 +1202,10 @@ typedef struct AVStreamGroup {
|
||||||
|
|
||||||
struct AVCodecParserContext *av_stream_get_parser(const AVStream *s);
|
struct AVCodecParserContext *av_stream_get_parser(const AVStream *s);
|
||||||
|
|
||||||
@@ -26,13 +26,13 @@ Index: ffmpeg-7.0/libavformat/avformat.h
|
|||||||
#define AV_PROGRAM_RUNNING 1
|
#define AV_PROGRAM_RUNNING 1
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Index: ffmpeg-7.0/libavformat/utils.c
|
Index: ffmpeg-7.1/libavformat/utils.c
|
||||||
===================================================================
|
===================================================================
|
||||||
--- ffmpeg-7.0.orig/libavformat/utils.c
|
--- ffmpeg-7.1.orig/libavformat/utils.c
|
||||||
+++ ffmpeg-7.0/libavformat/utils.c
|
+++ ffmpeg-7.1/libavformat/utils.c
|
||||||
@@ -56,6 +56,13 @@ int ff_unlock_avformat(void)
|
@@ -44,6 +44,13 @@
|
||||||
return ff_mutex_unlock(&avformat_mutex) ? -1 : 0;
|
* various utility functions for use within FFmpeg
|
||||||
}
|
*/
|
||||||
|
|
||||||
+// Chromium: We use the internal field first_dts vvv
|
+// Chromium: We use the internal field first_dts vvv
|
||||||
+int64_t av_stream_get_first_dts(const AVStream *st)
|
+int64_t av_stream_get_first_dts(const AVStream *st)
|
||||||
|
@@ -23,19 +23,19 @@ Signed-off-by: Neal Gompa <ngompa@fedoraproject.org>
|
|||||||
create mode 100644 libavcodec/libopenh264_dlopen.c
|
create mode 100644 libavcodec/libopenh264_dlopen.c
|
||||||
create mode 100644 libavcodec/libopenh264_dlopen.h
|
create mode 100644 libavcodec/libopenh264_dlopen.h
|
||||||
|
|
||||||
Index: ffmpeg-7.0/configure
|
Index: ffmpeg-7.1/configure
|
||||||
===================================================================
|
===================================================================
|
||||||
--- ffmpeg-7.0.orig/configure
|
--- ffmpeg-7.1.orig/configure
|
||||||
+++ ffmpeg-7.0/configure
|
+++ ffmpeg-7.1/configure
|
||||||
@@ -252,6 +252,7 @@ External library support:
|
@@ -255,6 +255,7 @@ External library support:
|
||||||
--enable-libopencore-amrwb enable AMR-WB decoding via libopencore-amrwb [no]
|
--enable-libopencore-amrwb enable AMR-WB decoding via libopencore-amrwb [no]
|
||||||
--enable-libopencv enable video filtering via libopencv [no]
|
--enable-libopencv enable video filtering via libopencv [no]
|
||||||
--enable-libopenh264 enable H.264 encoding via OpenH264 [no]
|
--enable-libopenh264 enable H.264 encoding via OpenH264 [no]
|
||||||
+ --enable-libopenh264-dlopen enable H.264 encoding via dlopen()'ed OpenH264 [no]
|
+ --enable-libopenh264-dlopen enable H.264 encoding via dlopen()'ed OpenH264 [no]
|
||||||
--enable-libopenjpeg enable JPEG 2000 de/encoding via OpenJPEG [no]
|
--enable-libopenjpeg enable JPEG 2000 encoding via OpenJPEG [no]
|
||||||
--enable-libopenmpt enable decoding tracked files via libopenmpt [no]
|
--enable-libopenmpt enable decoding tracked files via libopenmpt [no]
|
||||||
--enable-libopenvino enable OpenVINO as a DNN module backend
|
--enable-libopenvino enable OpenVINO as a DNN module backend
|
||||||
@@ -1933,6 +1934,7 @@ EXTERNAL_LIBRARY_LIST="
|
@@ -1939,6 +1940,7 @@ EXTERNAL_LIBRARY_LIST="
|
||||||
libmysofa
|
libmysofa
|
||||||
libopencv
|
libopencv
|
||||||
libopenh264
|
libopenh264
|
||||||
@@ -43,7 +43,7 @@ Index: ffmpeg-7.0/configure
|
|||||||
libopenjpeg
|
libopenjpeg
|
||||||
libopenmpt
|
libopenmpt
|
||||||
libopenvino
|
libopenvino
|
||||||
@@ -6921,6 +6923,7 @@ enabled libopencv && { check_hea
|
@@ -6966,6 +6968,7 @@ enabled libopencv && { check_hea
|
||||||
require libopencv opencv2/core/core_c.h cvCreateImageHeader -lopencv_core -lopencv_imgproc; } ||
|
require libopencv opencv2/core/core_c.h cvCreateImageHeader -lopencv_core -lopencv_imgproc; } ||
|
||||||
require_pkg_config libopencv opencv opencv/cxcore.h cvCreateImageHeader; }
|
require_pkg_config libopencv opencv opencv/cxcore.h cvCreateImageHeader; }
|
||||||
enabled libopenh264 && require_pkg_config libopenh264 "openh264 >= 1.3.0" wels/codec_api.h WelsGetCodecVersion
|
enabled libopenh264 && require_pkg_config libopenh264 "openh264 >= 1.3.0" wels/codec_api.h WelsGetCodecVersion
|
||||||
@@ -51,11 +51,11 @@ Index: ffmpeg-7.0/configure
|
|||||||
enabled libopenjpeg && { check_pkg_config libopenjpeg "libopenjp2 >= 2.1.0" openjpeg.h opj_version ||
|
enabled libopenjpeg && { check_pkg_config libopenjpeg "libopenjp2 >= 2.1.0" openjpeg.h opj_version ||
|
||||||
{ require_pkg_config libopenjpeg "libopenjp2 >= 2.1.0" openjpeg.h opj_version -DOPJ_STATIC && add_cppflags -DOPJ_STATIC; } }
|
{ require_pkg_config libopenjpeg "libopenjp2 >= 2.1.0" openjpeg.h opj_version -DOPJ_STATIC && add_cppflags -DOPJ_STATIC; } }
|
||||||
enabled libopenmpt && require_pkg_config libopenmpt "libopenmpt >= 0.2.6557" libopenmpt/libopenmpt.h openmpt_module_create -lstdc++ && append libopenmpt_extralibs "-lstdc++"
|
enabled libopenmpt && require_pkg_config libopenmpt "libopenmpt >= 0.2.6557" libopenmpt/libopenmpt.h openmpt_module_create -lstdc++ && append libopenmpt_extralibs "-lstdc++"
|
||||||
Index: ffmpeg-7.0/libavcodec/Makefile
|
Index: ffmpeg-7.1/libavcodec/Makefile
|
||||||
===================================================================
|
===================================================================
|
||||||
--- ffmpeg-7.0.orig/libavcodec/Makefile
|
--- ffmpeg-7.1.orig/libavcodec/Makefile
|
||||||
+++ ffmpeg-7.0/libavcodec/Makefile
|
+++ ffmpeg-7.1/libavcodec/Makefile
|
||||||
@@ -1128,6 +1128,7 @@ OBJS-$(CONFIG_LIBMP3LAME_ENCODER)
|
@@ -1138,6 +1138,7 @@ OBJS-$(CONFIG_LIBMP3LAME_ENCODER)
|
||||||
OBJS-$(CONFIG_LIBOPENCORE_AMRNB_DECODER) += libopencore-amr.o
|
OBJS-$(CONFIG_LIBOPENCORE_AMRNB_DECODER) += libopencore-amr.o
|
||||||
OBJS-$(CONFIG_LIBOPENCORE_AMRNB_ENCODER) += libopencore-amr.o
|
OBJS-$(CONFIG_LIBOPENCORE_AMRNB_ENCODER) += libopencore-amr.o
|
||||||
OBJS-$(CONFIG_LIBOPENCORE_AMRWB_DECODER) += libopencore-amr.o
|
OBJS-$(CONFIG_LIBOPENCORE_AMRWB_DECODER) += libopencore-amr.o
|
||||||
@@ -63,10 +63,10 @@ Index: ffmpeg-7.0/libavcodec/Makefile
|
|||||||
OBJS-$(CONFIG_LIBOPENH264_DECODER) += libopenh264dec.o libopenh264.o
|
OBJS-$(CONFIG_LIBOPENH264_DECODER) += libopenh264dec.o libopenh264.o
|
||||||
OBJS-$(CONFIG_LIBOPENH264_ENCODER) += libopenh264enc.o libopenh264.o
|
OBJS-$(CONFIG_LIBOPENH264_ENCODER) += libopenh264enc.o libopenh264.o
|
||||||
OBJS-$(CONFIG_LIBOPENJPEG_ENCODER) += libopenjpegenc.o
|
OBJS-$(CONFIG_LIBOPENJPEG_ENCODER) += libopenjpegenc.o
|
||||||
Index: ffmpeg-7.0/libavcodec/libopenh264.c
|
Index: ffmpeg-7.1/libavcodec/libopenh264.c
|
||||||
===================================================================
|
===================================================================
|
||||||
--- ffmpeg-7.0.orig/libavcodec/libopenh264.c
|
--- ffmpeg-7.1.orig/libavcodec/libopenh264.c
|
||||||
+++ ffmpeg-7.0/libavcodec/libopenh264.c
|
+++ ffmpeg-7.1/libavcodec/libopenh264.c
|
||||||
@@ -20,8 +20,13 @@
|
@@ -20,8 +20,13 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -81,10 +81,10 @@ Index: ffmpeg-7.0/libavcodec/libopenh264.c
|
|||||||
|
|
||||||
#include "libavutil/error.h"
|
#include "libavutil/error.h"
|
||||||
#include "libavutil/log.h"
|
#include "libavutil/log.h"
|
||||||
Index: ffmpeg-7.0/libavcodec/libopenh264_dlopen.c
|
Index: ffmpeg-7.1/libavcodec/libopenh264_dlopen.c
|
||||||
===================================================================
|
===================================================================
|
||||||
--- /dev/null
|
--- /dev/null
|
||||||
+++ ffmpeg-7.0/libavcodec/libopenh264_dlopen.c
|
+++ ffmpeg-7.1/libavcodec/libopenh264_dlopen.c
|
||||||
@@ -0,0 +1,147 @@
|
@@ -0,0 +1,147 @@
|
||||||
+/*
|
+/*
|
||||||
+ * OpenH264 dlopen code
|
+ * OpenH264 dlopen code
|
||||||
@@ -233,10 +233,10 @@ Index: ffmpeg-7.0/libavcodec/libopenh264_dlopen.c
|
|||||||
+
|
+
|
||||||
+ return 0;
|
+ return 0;
|
||||||
+}
|
+}
|
||||||
Index: ffmpeg-7.0/libavcodec/libopenh264_dlopen.h
|
Index: ffmpeg-7.1/libavcodec/libopenh264_dlopen.h
|
||||||
===================================================================
|
===================================================================
|
||||||
--- /dev/null
|
--- /dev/null
|
||||||
+++ ffmpeg-7.0/libavcodec/libopenh264_dlopen.h
|
+++ ffmpeg-7.1/libavcodec/libopenh264_dlopen.h
|
||||||
@@ -0,0 +1,58 @@
|
@@ -0,0 +1,58 @@
|
||||||
+/*
|
+/*
|
||||||
+ * OpenH264 dlopen code
|
+ * OpenH264 dlopen code
|
||||||
@@ -296,10 +296,10 @@ Index: ffmpeg-7.0/libavcodec/libopenh264_dlopen.h
|
|||||||
+#endif /* CONFIG_LIBOPENH264_DLOPEN */
|
+#endif /* CONFIG_LIBOPENH264_DLOPEN */
|
||||||
+
|
+
|
||||||
+#endif /* HAVE_LIBOPENH264_DLOPEN_H */
|
+#endif /* HAVE_LIBOPENH264_DLOPEN_H */
|
||||||
Index: ffmpeg-7.0/libavcodec/libopenh264dec.c
|
Index: ffmpeg-7.1/libavcodec/libopenh264dec.c
|
||||||
===================================================================
|
===================================================================
|
||||||
--- ffmpeg-7.0.orig/libavcodec/libopenh264dec.c
|
--- ffmpeg-7.1.orig/libavcodec/libopenh264dec.c
|
||||||
+++ ffmpeg-7.0/libavcodec/libopenh264dec.c
|
+++ ffmpeg-7.1/libavcodec/libopenh264dec.c
|
||||||
@@ -19,8 +19,12 @@
|
@@ -19,8 +19,12 @@
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
*/
|
*/
|
||||||
@@ -324,10 +324,10 @@ Index: ffmpeg-7.0/libavcodec/libopenh264dec.c
|
|||||||
if (WelsCreateDecoder(&s->decoder)) {
|
if (WelsCreateDecoder(&s->decoder)) {
|
||||||
av_log(avctx, AV_LOG_ERROR, "Unable to create decoder\n");
|
av_log(avctx, AV_LOG_ERROR, "Unable to create decoder\n");
|
||||||
return AVERROR_UNKNOWN;
|
return AVERROR_UNKNOWN;
|
||||||
Index: ffmpeg-7.0/libavcodec/libopenh264enc.c
|
Index: ffmpeg-7.1/libavcodec/libopenh264enc.c
|
||||||
===================================================================
|
===================================================================
|
||||||
--- ffmpeg-7.0.orig/libavcodec/libopenh264enc.c
|
--- ffmpeg-7.1.orig/libavcodec/libopenh264enc.c
|
||||||
+++ ffmpeg-7.0/libavcodec/libopenh264enc.c
|
+++ ffmpeg-7.1/libavcodec/libopenh264enc.c
|
||||||
@@ -19,8 +19,12 @@
|
@@ -19,8 +19,12 @@
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
*/
|
*/
|
||||||
|
@@ -37,10 +37,10 @@ releases.
|
|||||||
ffbuild/library.mak | 2 +-
|
ffbuild/library.mak | 2 +-
|
||||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||||
|
|
||||||
Index: ffmpeg-5.1/ffbuild/library.mak
|
Index: ffmpeg-7.1/ffbuild/library.mak
|
||||||
===================================================================
|
===================================================================
|
||||||
--- ffmpeg-5.1.orig/ffbuild/library.mak
|
--- ffmpeg-7.1.orig/ffbuild/library.mak
|
||||||
+++ ffmpeg-5.1/ffbuild/library.mak
|
+++ ffmpeg-7.1/ffbuild/library.mak
|
||||||
@@ -59,7 +59,7 @@ $(SUBDIR)lib$(FULLNAME).pc: $(SUBDIR)ver
|
@@ -59,7 +59,7 @@ $(SUBDIR)lib$(FULLNAME).pc: $(SUBDIR)ver
|
||||||
$$(M) $$(SRC_PATH)/ffbuild/pkgconfig_generate.sh $(NAME) "$(DESC)"
|
$$(M) $$(SRC_PATH)/ffbuild/pkgconfig_generate.sh $(NAME) "$(DESC)"
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user