summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/vf.c
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-10-22 17:46:12 +0000
committerUoti Urpala <uau@glyph.nonexistent.invalid>2010-11-02 07:48:40 +0200
commitc69e262a626e6c18c0f53d46734c30aac5f11e91 (patch)
tree1919de7423fd621224bc6ab18d4239fcdd66d5d2 /libmpcodecs/vf.c
parent64ab2402e2e08cdd4f710b2278b1d67cfc74cbe6 (diff)
downloadmpv-c69e262a626e6c18c0f53d46734c30aac5f11e91.tar.bz2
mpv-c69e262a626e6c18c0f53d46734c30aac5f11e91.tar.xz
vf_stereo3d: Add stereo3d filter
Further review very welcome, but it is time (and good enough) to add this. Patch by Gordon Schmidt [gordon.schmidt s2000.tu-chemnitz de] with changes by Endre Kollár [taxy443 gmail com]. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32527 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpcodecs/vf.c')
-rw-r--r--libmpcodecs/vf.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libmpcodecs/vf.c b/libmpcodecs/vf.c
index b3e635dbaf..269c8d5a3e 100644
--- a/libmpcodecs/vf.c
+++ b/libmpcodecs/vf.c
@@ -117,6 +117,7 @@ extern const vf_info_t vf_info_blackframe;
extern const vf_info_t vf_info_geq;
extern const vf_info_t vf_info_ow;
extern const vf_info_t vf_info_fixpts;
+extern const vf_info_t vf_info_stereo3d;
// list of available filters:
static const vf_info_t* const filter_list[]={
@@ -207,6 +208,7 @@ static const vf_info_t* const filter_list[]={
&vf_info_blackframe,
&vf_info_ow,
&vf_info_fixpts,
+ &vf_info_stereo3d,
NULL
};