Welcome to Doom9's Forum, THE in-place to be for everyone interested in DVD conversion. Before you start posting please read the forum rules. By posting to this forum you agree to abide by the rules. Domains: forum.doom9.org / forum.doom9.net / forum.doom9.se |
|
|
#1 | Link |
|
Derek Prestegard IRL
![]() Join Date: Nov 2003
Location: Los Angeles
Posts: 6,017
|
segfault using x262 with asm
So I've got some renewed interest in MPEG-2 encoding and I thought I'd give x262 a whirl.
I'm using the latest code from http://git.videolan.org/git/x262.git and building in a simple Dockerfile per below: Code:
FROM buildpack-deps:focal as builder
ARG MAKEFLAGS="-j4"
RUN apt-get update && apt-get install -y --no-install-recommends \
yasm \
&& rm -rf /var/lib/apt/lists/*
RUN git clone http://git.videolan.org/git/x262.git && \
cd x262 && \
./configure --enable static --enable-pic && \
make && \
make install
Looks like the package manager in buildpack-deps:focal pulls in YASM 1.3.0 and gcc 9.3.0 which seems to work fine for x264 (I use this same base image to build that)
__________________
These are all my personal statements, not those of my employer :) Last edited by Blue_MiSfit; 31st August 2021 at 04:39. |
|
|
|
| Thread Tools | |
| Display Modes | |
|
|