diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2019-02-16 17:56:49 +0100 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2019-02-16 17:58:26 +0100 |
commit | 4822427c9ad333fb5b4432ffaf202b027ae239ad (patch) | |
tree | 537655504114fc03caa18df2396dee9ec33cbaac /testing/libde265/use-new-ffmpeg-enum-names.patch | |
parent | cbbc982b376fc41a1ff9c63c32eaee23cdd0ba46 (diff) | |
download | aports-4822427c9ad333fb5b4432ffaf202b027ae239ad.tar.bz2 aports-4822427c9ad333fb5b4432ffaf202b027ae239ad.tar.xz |
testing/libde265: new aport
Diffstat (limited to 'testing/libde265/use-new-ffmpeg-enum-names.patch')
-rw-r--r-- | testing/libde265/use-new-ffmpeg-enum-names.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/testing/libde265/use-new-ffmpeg-enum-names.patch b/testing/libde265/use-new-ffmpeg-enum-names.patch new file mode 100644 index 0000000000..3a2facc440 --- /dev/null +++ b/testing/libde265/use-new-ffmpeg-enum-names.patch @@ -0,0 +1,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]; + + |