add ffpcx decoder, works on my samples.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25993 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
compn 2008-02-13 21:36:27 +00:00
parent 2fdfd41cb5
commit 440d7d2575
2 changed files with 9 additions and 0 deletions

View File

@ -177,6 +177,14 @@ videocodec fftiff
dll tiff
out BGR32,BGR24,BGR8,Y800,RGB32,RGB24,RGB8
videocodec ffpcx
info "FFmpeg PCX decoder"
status working
fourcc "pcx "
driver ffmpeg
dll pcx
out BGR32,BGR24,BGR8,Y800,RGB32,RGB24,RGB8
videocodec ffpng
info "FFmpeg PNG decoder"
status working

View File

@ -65,6 +65,7 @@ static const struct {
{ "bmp", mmioFOURCC('b', 'm', 'p', ' ') },
{ "jpeg", mmioFOURCC('I', 'J', 'P', 'G') },
{ "jpg", mmioFOURCC('I', 'J', 'P', 'G') },
{ "pcx", mmioFOURCC('p', 'c', 'x', ' ') },
{ "png", mmioFOURCC('M', 'P', 'N', 'G') },
{ "tga", mmioFOURCC('M', 'T', 'G', 'A') },
{ "tif", mmioFOURCC('t', 'i', 'f', 'f') },