[MPlayer-cvslog] r31350 - in trunk: Changelog DOCS/man/en/mplayer.1 DOCS/tech/libmpcodecs.txt Makefile libmpcodecs/vf.c libmpcodecs/vf_rgb2bgr.c
siretart
subversion at mplayerhq.hu
Wed Jun 9 09:26:54 CEST 2010
Author: siretart
Date: Wed Jun 9 09:26:54 2010
New Revision: 31350
Log:
remove libmpcodecs/vf_rgb2bgr.c
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.
Deleted:
trunk/libmpcodecs/vf_rgb2bgr.c
Modified:
trunk/Changelog
trunk/DOCS/tech/libmpcodecs.txt
trunk/Makefile
trunk/libmpcodecs/vf.c
Changes in other areas also in this revision:
Modified:
trunk/DOCS/man/en/mplayer.1
Modified: trunk/Changelog
==============================================================================
--- trunk/Changelog Tue Jun 8 22:11:01 2010 (r31349)
+++ trunk/Changelog Wed Jun 9 09:26:54 2010 (r31350)
@@ -30,6 +30,7 @@ MPlayer (1.0)
Filters:
* remove vf_yuy2, functionality is replaced by -vf format=yuv2
+ * remove vf_rgb2bgr, functionality is replaced by sws and vf_format
Drivers:
* -vo yuv4mpeg:interlaced no longer does its own interlaced RGB->YUV
Modified: trunk/DOCS/tech/libmpcodecs.txt
==============================================================================
--- trunk/DOCS/tech/libmpcodecs.txt Tue Jun 8 22:11:01 2010 (r31349)
+++ trunk/DOCS/tech/libmpcodecs.txt Wed Jun 9 09:26:54 2010 (r31350)
@@ -229,7 +229,7 @@ static int query_format(struct vf_instan
}
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,
Modified: trunk/Makefile
==============================================================================
--- trunk/Makefile Tue Jun 8 22:11:01 2010 (r31349)
+++ trunk/Makefile Wed Jun 9 09:26:54 2010 (r31350)
@@ -445,7 +445,6 @@ SRCS_COMMON = asxparser.c \
libmpcodecs/vf_pullup.c \
libmpcodecs/vf_rectangle.c \
libmpcodecs/vf_remove_logo.c \
- libmpcodecs/vf_rgb2bgr.c \
libmpcodecs/vf_rgbtest.c \
libmpcodecs/vf_rotate.c \
libmpcodecs/vf_sab.c \
Modified: trunk/libmpcodecs/vf.c
==============================================================================
--- trunk/libmpcodecs/vf.c Tue Jun 8 22:11:01 2010 (r31349)
+++ trunk/libmpcodecs/vf.c Wed Jun 9 09:26:54 2010 (r31350)
@@ -52,7 +52,6 @@ extern const vf_info_t vf_info_scale;
extern const vf_info_t vf_info_format;
extern const vf_info_t vf_info_noformat;
extern const vf_info_t vf_info_flip;
-extern const vf_info_t vf_info_rgb2bgr;
extern const vf_info_t vf_info_rotate;
extern const vf_info_t vf_info_mirror;
extern const vf_info_t vf_info_palette;
@@ -137,7 +136,6 @@ static const vf_info_t* const filter_lis
&vf_info_format,
&vf_info_noformat,
&vf_info_flip,
- &vf_info_rgb2bgr,
&vf_info_rotate,
&vf_info_mirror,
&vf_info_palette,
More information about the MPlayer-cvslog
mailing list