2013년 7월 4일 목요일

mingw ffmpeg x264 연동 빌드 - mingw ffmpeg with x264 build configuration

* x264 를 먼저 빌드후 ffmpeg 빌드할때 아래와 같이 x264 경로를 명시해준다.

< x264 빌드 >
./configure --enable-win32thread --extra-cflags="-fno-stack-check -fno-stack-protector -mno-stack-arg-probe"

< ffmpeg 빌드 >
./configure --enable-memalign-hack --extra-cflags="-fno-stack-check -fno-stack-protector -mno-stack-arg-probe" --enable-libx264 --enable-gpl --extra-cflags=-I../x264-snapshot-20120208-2245 --extra-ldflags=-L../x264-snapshot-20120208-2245

댓글 2개:

  1. -enable-memalign-hack 옵션에는 어떤 기능이 있나요? 어떤이는 비추천하더군요

    답글삭제
    답글
    1. --enable-memalign-hack 옵션은 성능향상을 위해 malloc시 특정 사이즈로 맞춰주기 위한 옵션으로 윈도우용 빌드시에만 사용되는 옵션입니다

      삭제