aboutsummaryrefslogtreecommitdiffstats
path: root/main/libde265/use-new-ffmpeg-enum-names.patch
blob: 3a2facc44049b75f61b07e6aa6c70f9b42db8cb6 (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
From e5b8e2e703d608777afadc54955bd396e4211da0 Mon Sep 17 00:00:00 2001
From: Dirk Farin <farin@struktur.de>
Date: Thu, 19 Apr 2018 13:15:18 +0200
Subject: [PATCH] use new FFMPEG enum names

Patch-Source: https://build.opensuse.org/package/view_file/home:jirutka/libde265/libde265-use_new_FFMPEG_enum_names.patch
---
 sherlock265/VideoDecoder.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sherlock265/VideoDecoder.cc b/sherlock265/VideoDecoder.cc
index 119f6152..b829e1c7 100644
--- a/sherlock265/VideoDecoder.cc
+++ b/sherlock265/VideoDecoder.cc
@@ -237,7 +237,7 @@ void VideoDecoder::convert_frame_swscale(const de265_image* img, QImage & qimg)
     }
     width = img->get_width();
     height = img->get_height();
-    sws = sws_getContext(width, height, PIX_FMT_YUV420P, width, height, PIX_FMT_BGRA, SWS_FAST_BILINEAR, NULL, NULL, NULL);
+    sws = sws_getContext(width, height, AV_PIX_FMT_YUV420P, width, height, AV_PIX_FMT_BGRA, SWS_FAST_BILINEAR, NULL, NULL, NULL);
   }
 
   int stride[3];