From 440d7d25755bc850b7ee58e88e2bd8d6c18baea7 Mon Sep 17 00:00:00 2001 From: compn Date: Wed, 13 Feb 2008 21:36:27 +0000 Subject: add ffpcx decoder, works on my samples. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25993 b3059339-0415-0410-9bf9-f77b7e298cf2 --- etc/codecs.conf | 8 ++++++++ libmpdemux/demux_mf.c | 1 + 2 files changed, 9 insertions(+) diff --git a/etc/codecs.conf b/etc/codecs.conf index 935ce525c5..9a2caeb3a0 100644 --- a/etc/codecs.conf +++ b/etc/codecs.conf @@ -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 diff --git a/libmpdemux/demux_mf.c b/libmpdemux/demux_mf.c index 7a03ba76b5..f460395a9a 100644 --- a/libmpdemux/demux_mf.c +++ b/libmpdemux/demux_mf.c @@ -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') }, -- cgit v1.2.3