From 6d44a4dfd1487611dd8ff3da4a6566e64c17106a Mon Sep 17 00:00:00 2001 From: wm4 Date: Wed, 23 Oct 2013 19:06:42 +0200 Subject: 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. --- video/filter/vf_unsharp.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'video/filter/vf_unsharp.c') diff --git a/video/filter/vf_unsharp.c b/video/filter/vf_unsharp.c index 728def61b4..cd65687780 100644 --- a/video/filter/vf_unsharp.c +++ b/video/filter/vf_unsharp.c @@ -285,12 +285,9 @@ static int vf_open( vf_instance_t *vf, char *args ) { } const vf_info_t vf_info_unsharp = { - "unsharp mask & gaussian blur", - "unsharp", - "Remi Guyomarch", - "", - vf_open, - NULL + .description = "unsharp mask & gaussian blur", + .name = "unsharp", + .open = vf_open, }; //===========================================================================// -- cgit v1.2.3