summaryrefslogtreecommitdiffstats
path: root/codec-cfg.c
diff options
context:
space:
mode:
authorcehoyos <cehoyos@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-08-11 17:54:11 +0000
committercehoyos <cehoyos@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-08-11 17:54:11 +0000
commita2dd68d6b40edfe877e3d70cdfc15074b8de69d7 (patch)
treea62b310330645f86a9647d0a756320c882129148 /codec-cfg.c
parent95bd58e068082b4830693cbade7abf34d3fdbed7 (diff)
downloadmpv-a2dd68d6b40edfe877e3d70cdfc15074b8de69d7.tar.bz2
mpv-a2dd68d6b40edfe877e3d70cdfc15074b8de69d7.tar.xz
Allow out-formats for IMGFMT_RGB48* in codecs.conf.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29488 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'codec-cfg.c')
-rw-r--r--codec-cfg.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/codec-cfg.c b/codec-cfg.c
index bb604aa19b..6ae8486027 100644
--- a/codec-cfg.c
+++ b/codec-cfg.c
@@ -165,6 +165,8 @@ static int add_to_format(char *s, char *alias,unsigned int *fourcc, unsigned int
{"RGB16", IMGFMT_RGB|16},
{"RGB24", IMGFMT_RGB|24},
{"RGB32", IMGFMT_RGB|32},
+ {"RG48LE", IMGFMT_RGB|48},
+ {"RG48BE", IMGFMT_RGB|49},
{"BGR4", IMGFMT_BGR|4},
{"BGR8", IMGFMT_BGR|8},
{"BGR15", IMGFMT_BGR|15},