BizHawk/ppsspp/ffmpeg
goyuken 39f82cbca9 psphawk 2013-06-25 00:14:35 +00:00
..
Windows psphawk 2013-06-25 00:14:35 +00:00
WindowsInclude psphawk 2013-06-25 00:14:35 +00:00
android psphawk 2013-06-25 00:14:35 +00:00
blackberry/armv7/include psphawk 2013-06-25 00:14:35 +00:00
compat psphawk 2013-06-25 00:14:35 +00:00
doc psphawk 2013-06-25 00:14:35 +00:00
ios/universal/include psphawk 2013-06-25 00:14:35 +00:00
libavcodec psphawk 2013-06-25 00:14:35 +00:00
libavdevice psphawk 2013-06-25 00:14:35 +00:00
libavfilter psphawk 2013-06-25 00:14:35 +00:00
libavformat psphawk 2013-06-25 00:14:35 +00:00
libavresample psphawk 2013-06-25 00:14:35 +00:00
libavutil psphawk 2013-06-25 00:14:35 +00:00
libpostproc psphawk 2013-06-25 00:14:35 +00:00
libswresample psphawk 2013-06-25 00:14:35 +00:00
libswscale psphawk 2013-06-25 00:14:35 +00:00
linux/x86_64/include psphawk 2013-06-25 00:14:35 +00:00
macosx/x86_64/include psphawk 2013-06-25 00:14:35 +00:00
presets psphawk 2013-06-25 00:14:35 +00:00
symbian/armv6 psphawk 2013-06-25 00:14:35 +00:00
tests psphawk 2013-06-25 00:14:35 +00:00
tools psphawk 2013-06-25 00:14:35 +00:00
.gitignore psphawk 2013-06-25 00:14:35 +00:00
COPYING.GPLv2 psphawk 2013-06-25 00:14:35 +00:00
COPYING.GPLv3 psphawk 2013-06-25 00:14:35 +00:00
COPYING.LGPLv2.1 psphawk 2013-06-25 00:14:35 +00:00
COPYING.LGPLv3 psphawk 2013-06-25 00:14:35 +00:00
CREDITS psphawk 2013-06-25 00:14:35 +00:00
Changelog psphawk 2013-06-25 00:14:35 +00:00
INSTALL psphawk 2013-06-25 00:14:35 +00:00
LICENSE psphawk 2013-06-25 00:14:35 +00:00
MAINTAINERS psphawk 2013-06-25 00:14:35 +00:00
Makefile psphawk 2013-06-25 00:14:35 +00:00
README psphawk 2013-06-25 00:14:35 +00:00
README.md psphawk 2013-06-25 00:14:35 +00:00
RELEASE psphawk 2013-06-25 00:14:35 +00:00
android-build.sh psphawk 2013-06-25 00:14:35 +00:00
arch.mak psphawk 2013-06-25 00:14:35 +00:00
blackberry-build.sh psphawk 2013-06-25 00:14:35 +00:00
cmdutils.c psphawk 2013-06-25 00:14:35 +00:00
cmdutils.h psphawk 2013-06-25 00:14:35 +00:00
cmdutils_common_opts.h psphawk 2013-06-25 00:14:35 +00:00
common.mak psphawk 2013-06-25 00:14:35 +00:00
configure psphawk 2013-06-25 00:14:35 +00:00
ffmpeg.c psphawk 2013-06-25 00:14:35 +00:00
ffmpeg.h psphawk 2013-06-25 00:14:35 +00:00
ffmpeg_filter.c psphawk 2013-06-25 00:14:35 +00:00
ffmpeg_opt.c psphawk 2013-06-25 00:14:35 +00:00
ffplay.c psphawk 2013-06-25 00:14:35 +00:00
ffprobe.c psphawk 2013-06-25 00:14:35 +00:00
ffserver.c psphawk 2013-06-25 00:14:35 +00:00
ios-build.sh psphawk 2013-06-25 00:14:35 +00:00
library.mak psphawk 2013-06-25 00:14:35 +00:00
linux_x86-64.sh psphawk 2013-06-25 00:14:35 +00:00
mac_x86-64.sh psphawk 2013-06-25 00:14:35 +00:00
symbian-build.sh psphawk 2013-06-25 00:14:35 +00:00
symbian-install.bat psphawk 2013-06-25 00:14:35 +00:00
version.sh psphawk 2013-06-25 00:14:35 +00:00
windows_x64-build.sh psphawk 2013-06-25 00:14:35 +00:00
windows_x86-build.sh psphawk 2013-06-25 00:14:35 +00:00

README.md

ppsspp-ffmpeg

A private copy of FFMPEG used in PPSSPP.

Building

If on Mac, iOS, or Linux, just run the corresponding build script (if it's written...)

If on Windows and building for Windows, use these instructions:

https://ffmpeg.org/platform.html#Microsoft-Visual-C_002b_002b

Then except instead of ./configure, just run ./windows_x86-build.sh.

If on Windows and building for Android, just run ./android-build.sh . Like for the Windows build, you may need real msys environment for that, and you may need to adjust some paths in android-build.sh.

Errors

If you get *** missing separator. Stop, it's a line ending problem. You can fix this by running the following commands (WARNING: this will delete all your changes.)

git config core.autocrlf false
git rm --cached -r .
git reset --hard

This won't affect anything other than this repo, though. See also [ffmpeg ticket #1209] (https://ffmpeg.org/trac/ffmpeg/ticket/1209).