# HG changeset patch # User rtognimp # Date 1119817692 0 # Node ID 500f49f31630beae70eb41298ba8c8b72074419b # Parent 0651bf2803918c707b6e8a51369ea1a518b66230 FFmpeg theora decoder support It works only with libavformat demuxer diff -r 0651bf280391 -r 500f49f31630 etc/codecs.conf --- a/etc/codecs.conf Sun Jun 26 17:44:07 2005 +0000 +++ b/etc/codecs.conf Sun Jun 26 20:28:12 2005 +0000 @@ -1264,7 +1264,8 @@ videocodec fftheora info "FFmpeg Theora" status untested - fourcc theo,Thra + fourcc theo + fourcc Thra theo format 0xFFFC driver ffmpeg dll "theora" diff -r 0651bf280391 -r 500f49f31630 libmpcodecs/vd_ffmpeg.c --- a/libmpcodecs/vd_ffmpeg.c Sun Jun 26 17:44:07 2005 +0000 +++ b/libmpcodecs/vd_ffmpeg.c Sun Jun 26 20:28:12 2005 +0000 @@ -336,7 +336,8 @@ sh->format == mmioFOURCC('F','L','I','C') || sh->format == mmioFOURCC('S','N','O','W') || sh->format == mmioFOURCC('a','v','c','1') || - sh->format == mmioFOURCC('L','O','C','O') + sh->format == mmioFOURCC('L','O','C','O') || + sh->format == mmioFOURCC('t','h','e','o') )) { avctx->extradata_size = sh->bih->biSize-sizeof(BITMAPINFOHEADER);