-
-
Notifications
You must be signed in to change notification settings - Fork 171
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fedora 36 ffmpeg build issues #3458
Comments
totaam
added a commit
that referenced
this issue
Feb 11, 2022
For trying to build ffmpeg without the problematic codecs: --- a/packaging/rpm/ffmpeg-xpra.spec
+++ b/packaging/rpm/ffmpeg-xpra.spec
@@ -90,7 +90,9 @@ PKG_CONFIG_PATH=%{_libdir}/xpra/pkgconfig ./configure \
--enable-gpl \
--enable-protocol=file \
--enable-decoder=h264 \
+%if 0%{?fedora}<36
--enable-decoder=hevc \
+%endif
--enable-decoder=vp8 \
--enable-decoder=vp9 \
--enable-decoder=mpeg4 \
@@ -105,7 +107,9 @@ PKG_CONFIG_PATH=%{_libdir}/xpra/pkgconfig ./configure \
--enable-encoder=aac \
%if 0%{?libva}
--enable-encoder=h264_vaapi \
+%if 0%{?fedora}<36
--enable-encoder=hevc_vaapi \
+%endif
--enable-encoder=mpeg2_vaapi \
--enable-encoder=vp8_vaapi \
--enable-encoder=vp9_vaapi \
@@ -115,13 +119,17 @@ PKG_CONFIG_PATH=%{_libdir}/xpra/pkgconfig ./configure \
--enable-muxer=matroska \
--enable-muxer=ogg \
--enable-demuxer=h264 \
+%if 0%{?fedora}<36
--enable-demuxer=hevc \
+%endif
--enable-demuxer=m4v \
--enable-demuxer=matroska \
--enable-demuxer=ogg \
%if 0%{?libva}
--enable-hwaccel=h264_vaapi \
+%if 0%{?fedora}<36
--enable-hwaccel=hevc_vaapi \
+%endif
--enable-hwaccel=mpeg2_vaapi \
--enable-hwaccel=vp8_vaapi \
--enable-hwaccel=vp9_vaapi \ |
There's another problem: the container seems to crash-exit silently during compilation of the xpra package (exact same issue on two different build machines):
Let's hope they iron out those issues pretty quickly. |
totaam
added a commit
that referenced
this issue
Feb 11, 2022
totaam
added a commit
that referenced
this issue
Mar 30, 2022
Oh my! |
totaam
added a commit
that referenced
this issue
Jun 10, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
First problem is that
ffmpeg
does not build:And disabling
-Wstringop-overread
still fails but onhevc
codecs this time and disabling those also fails at link time because of some LTO issues...The text was updated successfully, but these errors were encountered: