summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--etc/codecs.conf7
-rw-r--r--libmpdemux/mp_taglists.c1
2 files changed, 8 insertions, 0 deletions
diff --git a/etc/codecs.conf b/etc/codecs.conf
index 9b49433456..29abbd1d52 100644
--- a/etc/codecs.conf
+++ b/etc/codecs.conf
@@ -2834,6 +2834,13 @@ videocodec ffc93
dll c93
out BGR8
+videocodec eatgv
+ info "FFmpeg Electronic Arts TGV"
+ status working
+ fourcc fVGT
+ driver ffmpeg
+ dll eatgv
+ out BGR8
; raw formats: (now RGB formats are autodetected)
diff --git a/libmpdemux/mp_taglists.c b/libmpdemux/mp_taglists.c
index 155c4fae9b..9dbcb9e983 100644
--- a/libmpdemux/mp_taglists.c
+++ b/libmpdemux/mp_taglists.c
@@ -88,6 +88,7 @@ static const AVCodecTag mp_bmp_tags[] = {
{ CODEC_ID_DNXHD, MKTAG('A', 'V', 'd', 'n')},
{ CODEC_ID_DSICINVIDEO, MKTAG('D', 'C', 'I', 'V')},
{ CODEC_ID_DXA, MKTAG('D', 'X', 'A', '1')},
+ { CODEC_ID_EATGV, MKTAG('f', 'V', 'G', 'T')},
{ 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')},