graphics/gegl: unbreak with ffmpeg 4.0
./ff-load.c:312:36: error: use of undeclared identifier 'CODEC_CAP_TRUNCATED' if (p->codec->capabilities & CODEC_CAP_TRUNCATED) ^ ./ff-load.c:313:26: error: use of undeclared identifier 'CODEC_FLAG_TRUNCATED' p->enc->flags |= CODEC_FLAG_TRUNCATED; PR: 227726
This commit is contained in:
parent
369898f633
commit
41b40a846c
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=468203
1 changed files with 9 additions and 3 deletions
|
@ -1,5 +1,6 @@
|
|||
https://git.gnome.org/browse/gegl/commit/?id=97067622352e
|
||||
https://git.gnome.org/browse/gegl/commit/?id=6d50c42e2c9a
|
||||
https://git.gnome.org/browse/gegl/commit/?id=67f14cbbc5d1
|
||||
|
||||
--- operations/external/ff-load.c.orig 2012-04-01 11:17:57 UTC
|
||||
+++ operations/external/ff-load.c
|
||||
|
@ -39,9 +40,14 @@ https://git.gnome.org/browse/gegl/commit/?id=6d50c42e2c9a
|
|||
if (err < 0)
|
||||
{
|
||||
g_warning ("ff-load: error finding stream info for %s", o->path);
|
||||
@@ -312,7 +312,7 @@ prepare (GeglOperation *operation)
|
||||
if (p->codec->capabilities & CODEC_CAP_TRUNCATED)
|
||||
p->enc->flags |= CODEC_FLAG_TRUNCATED;
|
||||
@@ -309,10 +309,10 @@ prepare (GeglOperation *operation)
|
||||
g_warning ("codec not found");
|
||||
}
|
||||
|
||||
- if (p->codec->capabilities & CODEC_CAP_TRUNCATED)
|
||||
- p->enc->flags |= CODEC_FLAG_TRUNCATED;
|
||||
+ if (p->codec->capabilities & AV_CODEC_CAP_TRUNCATED)
|
||||
+ p->enc->flags |= AV_CODEC_FLAG_TRUNCATED;
|
||||
|
||||
- if (avcodec_open (p->enc, p->codec) < 0)
|
||||
+ if (avcodec_open2 (p->enc, p->codec, NULL) < 0)
|
||||
|
|
Loading…
Reference in a new issue