# HG changeset patch # User rtognimp # Date 1112911448 0 # Node ID 17ccd26b78cf39adb3b87e136ffc496be5509699 # Parent f1dd354576a41faaeb560206772095dfafa6a374 LOCO support via lavc diff -r f1dd354576a4 -r 17ccd26b78cf etc/codecs.conf --- a/etc/codecs.conf Thu Apr 07 21:39:59 2005 +0000 +++ b/etc/codecs.conf Thu Apr 07 22:04:08 2005 +0000 @@ -138,6 +138,15 @@ dll "aasc" out BGR24 +videocodec ffloco + info "LOCO video decoder" + status working + fourcc LOCO + driver ffmpeg + dll "loco" + out 422P,YV12,BGR32 query + out BGR24 flip,query + videocodec ffqtrle info "QuickTime Animation (RLE)" status working diff -r f1dd354576a4 -r 17ccd26b78cf libmpcodecs/vd_ffmpeg.c --- a/libmpcodecs/vd_ffmpeg.c Thu Apr 07 21:39:59 2005 +0000 +++ b/libmpcodecs/vd_ffmpeg.c Thu Apr 07 22:04:08 2005 +0000 @@ -335,7 +335,8 @@ sh->format == mmioFOURCC('M','P','4','V') || sh->format == mmioFOURCC('F','L','I','C') || sh->format == mmioFOURCC('S','N','O','W') || - sh->format == mmioFOURCC('a','v','c','1') + sh->format == mmioFOURCC('a','v','c','1') || + sh->format == mmioFOURCC('L','O','C','O') )) { avctx->extradata_size = sh->bih->biSize-sizeof(BITMAPINFOHEADER);