# HG changeset patch # User compn # Date 1210558187 0 # Node ID 4be576db89df9f07f73a2f5b03bbc95ba937fd05 # Parent 605722f2c1b6172e2adf15cbb30c9b8550a0fdba add ffptx , works on ptx samples diff -r 605722f2c1b6 -r 4be576db89df etc/codecs.conf --- a/etc/codecs.conf Sun May 11 20:17:21 2008 +0000 +++ b/etc/codecs.conf Mon May 12 02:09:47 2008 +0000 @@ -218,6 +218,14 @@ driver mpng out BGR32,BGR24,BGR8,Y800 +videocodec ffptx + info "FFmpeg V.Flash PTX decoder" + status working + fourcc "ptx " + driver ffmpeg + dll ptx + out BGR32,BGR24,BGR8,Y800,RGB32,RGB24,RGB8 + videocodec fftga info "FFmpeg TGA decoder" status untested diff -r 605722f2c1b6 -r 4be576db89df libmpdemux/demux_mf.c --- a/libmpdemux/demux_mf.c Sun May 11 20:17:21 2008 +0000 +++ b/libmpdemux/demux_mf.c Mon May 12 02:09:47 2008 +0000 @@ -67,6 +67,7 @@ { "jpg", mmioFOURCC('I', 'J', 'P', 'G') }, { "pcx", mmioFOURCC('p', 'c', 'x', ' ') }, { "png", mmioFOURCC('M', 'P', 'N', 'G') }, + { "ptx", mmioFOURCC('p', 't', 'x', ' ') }, { "tga", mmioFOURCC('M', 'T', 'G', 'A') }, { "tif", mmioFOURCC('t', 'i', 'f', 'f') }, { "sgi", mmioFOURCC('S', 'G', 'I', '1') },