codecs.conf, mp_taglists: add FFmpeg Bitmap Brothers JV decoder

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@33125 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
cehoyos 2011-03-27 07:16:38 +00:00 committed by Uoti Urpala
parent a37b71dc32
commit 673a2c7597
2 changed files with 11 additions and 0 deletions

View File

@ -3119,6 +3119,14 @@ videocodec fffraps
dll "fraps"
out BGR24,YV12,I420
videocodec ffjv
info "FFmpeg Bitmap Brothers JV"
status working
fourcc FFJV ; internal MPlayer FourCC
driver ffmpeg
dll "jv"
out BGR8
videocodec fftiertexseq
info "FFmpeg Tiertex SEQ"
status working

View File

@ -107,6 +107,9 @@ static const struct mp_AVCodecTag mp_bmp_tags[] = {
{ CODEC_ID_FLIC, MKTAG('F', 'L', 'I', 'C')},
{ CODEC_ID_IDCIN, MKTAG('I', 'D', 'C', 'I')},
{ CODEC_ID_INTERPLAY_VIDEO, MKTAG('I', 'N', 'P', 'V')},
#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(52, 114, 0)
{ CODEC_ID_JV, MKTAG('F', 'F', 'J', 'V')},
#endif
{ CODEC_ID_MDEC, MKTAG('M', 'D', 'E', 'C')},
{ CODEC_ID_MOTIONPIXELS, MKTAG('M', 'V', 'I', '1')},
{ CODEC_ID_NUV, MKTAG('N', 'U', 'V', '1')},