# HG changeset patch # User compn # Date 1202938587 0 # Node ID 354ad909efcfb7799b1e0ded96c85aa8b8bb4c9b # Parent 5804605d43419a6ab7230b5cfee64a0fc6c7eb6e add ffpcx decoder, works on my samples. diff -r 5804605d4341 -r 354ad909efcf etc/codecs.conf --- a/etc/codecs.conf Wed Feb 13 19:21:39 2008 +0000 +++ b/etc/codecs.conf Wed Feb 13 21:36:27 2008 +0000 @@ -177,6 +177,14 @@ 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 -r 5804605d4341 -r 354ad909efcf libmpdemux/demux_mf.c --- a/libmpdemux/demux_mf.c Wed Feb 13 19:21:39 2008 +0000 +++ b/libmpdemux/demux_mf.c Wed Feb 13 21:36:27 2008 +0000 @@ -65,6 +65,7 @@ { "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') },