summaryrefslogtreecommitdiff
blob: 6998a02e75f5676f121f038609a47fca7ab887cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
From 6e9ac140385d28210afdd2ed2bf9b0533ca0aac1 Mon Sep 17 00:00:00 2001
From: fafryd <dz1125.bug.tracker@gmail.com>
Date: Sat, 5 Mar 2016 22:11:39 +0100
Subject: [PATCH] use av_frame_alloc instead of avcodec_alloc_frame

---
 operations/external/ff-load.c          | 2 +-
 operations/workshop/external/ff-save.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/operations/external/ff-load.c b/operations/external/ff-load.c
index 442ec5f..0b9d8e8 100644
--- a/operations/external/ff-load.c
+++ b/operations/external/ff-load.c
@@ -321,7 +321,7 @@ prepare (GeglOperation *operation)
       p->width = p->enc->width;
       p->height = p->enc->height;
       p->frames = 10000000;
-      p->lavc_frame = avcodec_alloc_frame ();
+      p->lavc_frame = av_frame_alloc ();
 
       if (p->fourcc)
         g_free (p->fourcc);
diff --git a/operations/workshop/external/ff-save.c b/operations/workshop/external/ff-save.c
index 0f3105d..84d68c5 100644
--- a/operations/workshop/external/ff-save.c
+++ b/operations/workshop/external/ff-save.c
@@ -537,7 +537,7 @@ alloc_picture (int pix_fmt, int width, int height)
   uint8_t  *picture_buf;
   int       size;
 
-  picture = avcodec_alloc_frame ();
+  picture = av_frame_alloc ();
   if (!picture)
     return NULL;
   size = avpicture_get_size (pix_fmt, width, height);
-- 
2.7.2