1
mirror of https://github.com/mpv-player/mpv synced 2024-08-28 05:46:13 +02:00

LOCO support via lavc

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@15065 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
rtognimp 2005-04-07 22:04:08 +00:00
parent f6208f39dd
commit 8a4994ac98
2 changed files with 11 additions and 1 deletions

View File

@ -138,6 +138,15 @@ videocodec ffaasc
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

View File

@ -335,7 +335,8 @@ static int init(sh_video_t *sh){
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);