diff options
author | Khem Raj <raj.khem@gmail.com> | 2017-09-21 10:42:15 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-09-25 14:14:17 +0100 |
commit | 4862e21fa2e673ac62db4f8a5c5b1acbecb3a9ec (patch) | |
tree | 7a54827967751aa58bffde5f8afda7e938fe8538 /meta/recipes-multimedia/gstreamer/gstreamer1.0-libav | |
parent | 6ef40f4d1ed1586dba37ac8e33834c5cf1ea5dc0 (diff) | |
download | poky-4862e21fa2e673ac62db4f8a5c5b1acbecb3a9ec.tar.gz |
gstreamer1.0-libav: Fix build on mips
(From OE-Core rev: c70812de7d9e35e9fc01a1b4b142a5261913fb03)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/gstreamer/gstreamer1.0-libav')
-rw-r--r-- | meta/recipes-multimedia/gstreamer/gstreamer1.0-libav/0001-hevcpred_msa.c-Fix-build-by-Including-libavcodec-hev.patch | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-libav/0001-hevcpred_msa.c-Fix-build-by-Including-libavcodec-hev.patch b/meta/recipes-multimedia/gstreamer/gstreamer1.0-libav/0001-hevcpred_msa.c-Fix-build-by-Including-libavcodec-hev.patch new file mode 100644 index 0000000000..afbfc84db5 --- /dev/null +++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-libav/0001-hevcpred_msa.c-Fix-build-by-Including-libavcodec-hev.patch | |||
@@ -0,0 +1,33 @@ | |||
1 | From b5226c096a0b7049874858e94a59d43e10ba3fd2 Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Thu, 21 Sep 2017 10:22:56 -0700 | ||
4 | Subject: [PATCH] hevcpred_msa.c: Fix build by Including libavcodec/hevcdec.h | ||
5 | |||
6 | src/libavcodec/mips/hevcpred_msa.c:1913:32: error: unknown type name 'HEVCContext'; did you mean 'HEVCPredContext'? | ||
7 | void ff_intra_pred_8_16x16_msa(HEVCContext *s, int x0, int y0, int c_idx) | ||
8 | ^~~~~~~~~~~ | ||
9 | HEVCPredContext | ||
10 | |||
11 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
12 | --- | ||
13 | Upstream-Status: Pending | ||
14 | |||
15 | gst-libs/ext/libav/libavcodec/mips/hevcpred_msa.c | 2 +- | ||
16 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
17 | |||
18 | diff --git a/gst-libs/ext/libav/libavcodec/mips/hevcpred_msa.c b/gst-libs/ext/libav/libavcodec/mips/hevcpred_msa.c | ||
19 | index 6a3b281..963c64c 100644 | ||
20 | --- a/gst-libs/ext/libav/libavcodec/mips/hevcpred_msa.c | ||
21 | +++ b/gst-libs/ext/libav/libavcodec/mips/hevcpred_msa.c | ||
22 | @@ -18,7 +18,7 @@ | ||
23 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | ||
24 | */ | ||
25 | |||
26 | -#include "libavcodec/hevc.h" | ||
27 | +#include "libavcodec/hevcdec.h" | ||
28 | #include "libavutil/mips/generic_macros_msa.h" | ||
29 | #include "hevcpred_mips.h" | ||
30 | |||
31 | -- | ||
32 | 2.14.1 | ||
33 | |||