Please read this before reporting a bug:
https://wiki.archlinux.org/title/Bug_reporting_guidelines
Do NOT report bugs when a package is just outdated, or it is in the AUR. Use the 'flag out of date' link on the package page, or the Mailing List.
REPEAT: Do NOT report bugs for outdated packages!
https://wiki.archlinux.org/title/Bug_reporting_guidelines
Do NOT report bugs when a package is just outdated, or it is in the AUR. Use the 'flag out of date' link on the package page, or the Mailing List.
REPEAT: Do NOT report bugs for outdated packages!
FS#42015 - [ffmpeg] cleanup flags in PKGBUILD
Attached to Project:
Arch Linux
Opened by ux (ubitux) - Thursday, 18 September 2014, 18:40 GMT
Last edited by Bartłomiej Piotrowski (Barthalion) - Friday, 19 September 2014, 15:33 GMT
Opened by ux (ubitux) - Thursday, 18 September 2014, 18:40 GMT
Last edited by Bartłomiej Piotrowski (Barthalion) - Friday, 19 September 2014, 15:33 GMT
|
Details• FFmpeg has hundreds of codecs, there is -and there never was- any reason to explicit the atrac3[p] decoders since it is not an external library. These 2 lines can be dropped:
--enable-decoder=atrac3 \ --enable-decoder=atrac3p \ • Archlinux probably doesn't care about DirectX Video Acceleration. The following line can be dropped: --enable-dxva2 \ • Enabling explicit Position-independent code is not useful. FFmpeg does that by default when it matters, typically when --enable-shared is set. The following line can be dropped: --enable-pic \ • libpostproc is enabled by default since a very long time, the following line can be dropped: --enable-postproc \ By the way, FFmpeg 2.4 has been released, so you will probably want to add --enable-fribidi so the drawtext filter can be used to write correctly Arabic text. |
This task depends upon
Closed by Bartłomiej Piotrowski (Barthalion)
Friday, 19 September 2014, 15:33 GMT
Reason for closing: Fixed
Additional comments about closing: ffmpeg 1:2.4-2
Friday, 19 September 2014, 15:33 GMT
Reason for closing: Fixed
Additional comments about closing: ffmpeg 1:2.4-2
https://projects.archlinux.org/svntogit/packages.git/commit/trunk?h=packages/ffmpeg&id=f917515cce4a19096faa4f33d92b735a6f6d6fb1
I guess, only --enable-pic and --enable-libfribidi potentially stand now.