diff options
author | siretart <siretart@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2010-06-09 07:26:54 +0000 |
---|---|---|
committer | Uoti Urpala <uau@glyph.nonexistent.invalid> | 2010-11-02 04:07:27 +0200 |
commit | 082b6f86d377f92040c9fb9252b3f935992181c9 (patch) | |
tree | 28883308dc258ed4045dc6d5c7c8dd664a386623 /DOCS | |
parent | 8de983fe7f447d5b5a567dc9947184d19f1b6095 (diff) |
vf_rgb2bgr: remove the filter
Its functionality has been superseeded by sws by quite some time, and
the "swap" functionality is now provided by vf_format.
see http://comments.gmane.org/gmane.comp.video.mplayer.devel/55804 for
a full discussion.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31350 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'DOCS')
-rw-r--r-- | DOCS/man/en/mplayer.1 | 10 | ||||
-rw-r--r-- | DOCS/tech/libmpcodecs.txt | 2 |
2 files changed, 1 insertions, 11 deletions
diff --git a/DOCS/man/en/mplayer.1 b/DOCS/man/en/mplayer.1 index 647fe68164..f25d5de094 100644 --- a/DOCS/man/en/mplayer.1 +++ b/DOCS/man/en/mplayer.1 @@ -6097,16 +6097,6 @@ Deprecated in favor of the software scaler. Clamps YUV color values to the CCIR 601 range without doing real conversion. . .TP -.B rgb2bgr[=swap] -RGB 24/32 <\-> BGR 24/32 colorspace conversion. -.PD 0 -.RSs -.IPs "swap\ " -Also perform R <\-> B swapping. -.RE -.PD 1 -. -.TP .B palette RGB/BGR 8 \-> 15/16/24/32bpp colorspace conversion using palette. . diff --git a/DOCS/tech/libmpcodecs.txt b/DOCS/tech/libmpcodecs.txt index b7378e8f2c..b79df93d78 100644 --- a/DOCS/tech/libmpcodecs.txt +++ b/DOCS/tech/libmpcodecs.txt @@ -229,7 +229,7 @@ static int query_format(struct vf_instance *vf, unsigned int fmt) } For the more complex case, when you have an N -> M colorspace mapping matrix, -see vf_scale or vf_rgb2bgr for examples. +see vf_scale or vf_format for examples. int (*config)(struct vf_instance *vf, |