summaryrefslogtreecommitdiffstats
path: root/DOCS
diff options
context:
space:
mode:
authorcompn <compn@b3059339-0415-0410-9bf9-f77b7e298cf2>2011-01-06 21:05:34 +0000
committerUoti Urpala <uau@glyph.nonexistent.invalid>2011-01-31 16:03:10 +0200
commitd1d8892fdfe9a669fe1723319f68133dddea9981 (patch)
tree3f0c9cbfda72c5479c181bc2f4e739f726648fca /DOCS
parent5937ee8a5be792de7c831714759a9125c354d590 (diff)
downloadmpv-d1d8892fdfe9a669fe1723319f68133dddea9981.tar.bz2
mpv-d1d8892fdfe9a669fe1723319f68133dddea9981.tar.xz
DOCS/tech/codecs.conf.txt: add notes about BE/LE colorspaces
Add some notes about BE/LE colorspaces and fix a small typo. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32769 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'DOCS')
-rw-r--r--DOCS/tech/codecs.conf.txt6
1 files changed, 5 insertions, 1 deletions
diff --git a/DOCS/tech/codecs.conf.txt b/DOCS/tech/codecs.conf.txt
index 9f1eefa9e2..75f480933f 100644
--- a/DOCS/tech/codecs.conf.txt
+++ b/DOCS/tech/codecs.conf.txt
@@ -189,7 +189,11 @@ file.
The "out" colorspace can be found in the codec source file in the PIX_FMT
struct. Note that some codecs may have several pix_fmt structs.
The pix_fmt can be converted to the codecs.conf "out" format by reading
-the fmt_conversion.c file.
+the fmt-conversion.c file.
+
+If there are BE and LE versions of a pix_fmt, ignore them and use the short
+native format instead. e.g. 422P16_LE becomes out 422P16. also to note that
+underscores cause parse errors, so 422P16_LE becomes out 422P16LE.
libmpdemux/mp_taglists.c
--------------