summaryrefslogtreecommitdiffstats
path: root/video/filter/vf_down3dright.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-10-23 19:06:42 +0200
committerwm4 <wm4@nowhere>2013-10-23 19:30:01 +0200
commit6d44a4dfd1487611dd8ff3da4a6566e64c17106a (patch)
tree1ae7c30d50cb64668dacb78f8354185440978a9c /video/filter/vf_down3dright.c
parentc8930e80a850a9459157023db57ae723f7a82432 (diff)
downloadmpv-6d44a4dfd1487611dd8ff3da4a6566e64c17106a.tar.bz2
mpv-6d44a4dfd1487611dd8ff3da4a6566e64c17106a.tar.xz
video/filter: remove useless vf_info fields
This time I didn't bother to move the contents of the author field to the file headers. "git log" is your friend.
Diffstat (limited to 'video/filter/vf_down3dright.c')
-rw-r--r--video/filter/vf_down3dright.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/video/filter/vf_down3dright.c b/video/filter/vf_down3dright.c
index 7cb75b14dd..14deeda94e 100644
--- a/video/filter/vf_down3dright.c
+++ b/video/filter/vf_down3dright.c
@@ -150,10 +150,7 @@ static int vf_open(vf_instance_t *vf, char *args)
}
const vf_info_t vf_info_down3dright = {
- "convert stereo movie from top-bottom to left-right field",
- "down3dright",
- "Zdenek Kabelac",
- "",
- vf_open,
- NULL
+ .description = "convert stereo movie from top-bottom to left-right field",
+ .name = "down3dright",
+ .open = vf_open,
};