[PATCH 1/2][Ticket #2321] Build error with latest FFmpeg
Josh Finch <[email protected]>
| Newsgroups | gmane.comp.video.mplayer.devel |
|---|---|
| Message-ID | <BY2PR0601MB1719C6687CEE53D59CF5D959D4000@BY2PR0601MB1719.namprd06.prod.outlook.com> |
FFmpeg made a slight change to their configure, at least on MSYS2/Mingw-w64 causes a build error at link time and I was able to fix it. The first patch fixes the errors pertaining to HEVC in ticket #2321. Index: configure =================================================================== --- configure (revision 37930) +++ configure (working copy) @@ -8699,6 +8699,7 @@ CONFIG_H264PARSE = yes CONFIG_H264PRED= yes CONFIG_H264QPEL= yes +CONFIG_HEVCPARSE = yes CONFIG_HPELDSP = yes CONFIG_IIRFILTER = yes CONFIG_IVIDSP = yes @@ -9379,6 +9380,7 @@ #define CONFIG_H264DSP 1 #define CONFIG_H264PRED 1 #define CONFIG_H264QPEL 1 +#define CONFIG_HEVCPARSE 1 #define CONFIG_HUFFMAN 1 #define CONFIG_IDCTDSP 1 #define CONFIG_IVIDSP 1 _______________________________________________ MPlayer-dev-eng mailing list [email protected] https://lists.mplayerhq.hu/mailman/listinfo/mplayer-dev-eng
Patch1-Ticket2321-HEVC_PARSER.patch
(application/octet-stream, 553 B)
Index: configure =================================================================== --- configure (revision 37930) +++ configure (working copy) @@ -8699,6 +8699,7 @@ CONFIG_H264PARSE = yes CONFIG_H264PRED= yes CONFIG_H264QPEL= yes +CONFIG_HEVCPARSE = yes CONFIG_HPELDSP = yes CONFIG_IIRFILTER = yes CONFIG_IVIDSP = yes @@ -9379,6 +9380,7 @@ #define CONFIG_H264DSP 1 #define CONFIG_H264PRED 1 #define CONFIG_H264QPEL 1 +#define CONFIG_HEVCPARSE 1 #define CONFIG_HUFFMAN 1 #define CONFIG_IDCTDSP 1 #define CONFIG_IVIDSP 1