diff options
Diffstat (limited to 'media-libs/gegl/files')
-rw-r--r-- | media-libs/gegl/files/gegl-0.2.0-ffmpeg-4-0-compat.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/media-libs/gegl/files/gegl-0.2.0-ffmpeg-4-0-compat.patch b/media-libs/gegl/files/gegl-0.2.0-ffmpeg-4-0-compat.patch new file mode 100644 index 000000000000..6b8e9792c026 --- /dev/null +++ b/media-libs/gegl/files/gegl-0.2.0-ffmpeg-4-0-compat.patch @@ -0,0 +1,13 @@ +--- ./operations/external/ff-load.c.org 2018-12-18 09:22:34.467409854 +0100 ++++ ./operations/external/ff-load.c 2018-12-18 09:22:50.921379092 +0100 +@@ -309,8 +309,8 @@ + 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_open2 (p->enc, p->codec, NULL) < 0) + { |