Mercurial > mplayer.hg
changeset 32682:0cf4c6f3d56b
add some notes about BE/LE colorspaces and fix a small typo
author | compn |
---|---|
date | Thu, 06 Jan 2011 21:05:34 +0000 |
parents | 8174931b0483 |
children | 5533ffce9c6b |
files | DOCS/tech/codecs.conf.txt |
diffstat | 1 files changed, 5 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/DOCS/tech/codecs.conf.txt Thu Jan 06 15:15:05 2011 +0000 +++ b/DOCS/tech/codecs.conf.txt Thu Jan 06 21:05:34 2011 +0000 @@ -189,7 +189,11 @@ 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 --------------