comparison libmpcodecs/vf.c @ 7966:a03235a5f395

new video filter: unsharp - does image (l/c/l+c) sharping/bluring by Rmi Guyomarch <rguyom@pobox.com>
author arpi
date Tue, 29 Oct 2002 22:37:11 +0000
parents b8acdbfd0882
children 64f468cbedcd
comparison
equal deleted inserted replaced
7965:af50b41f0af8 7966:a03235a5f395
43 extern vf_info_t vf_info_eq2; 43 extern vf_info_t vf_info_eq2;
44 extern vf_info_t vf_info_halfpack; 44 extern vf_info_t vf_info_halfpack;
45 extern vf_info_t vf_info_dint; 45 extern vf_info_t vf_info_dint;
46 extern vf_info_t vf_info_1bpp; 46 extern vf_info_t vf_info_1bpp;
47 extern vf_info_t vf_info_2xsai; 47 extern vf_info_t vf_info_2xsai;
48 extern vf_info_t vf_info_unsharp;
48 49
49 char** vo_plugin_args=(char**) NULL; 50 char** vo_plugin_args=(char**) NULL;
50 51
51 // list of available filters: 52 // list of available filters:
52 static vf_info_t* filter_list[]={ 53 static vf_info_t* filter_list[]={
81 &vf_info_eq2, 82 &vf_info_eq2,
82 &vf_info_halfpack, 83 &vf_info_halfpack,
83 &vf_info_dint, 84 &vf_info_dint,
84 &vf_info_1bpp, 85 &vf_info_1bpp,
85 &vf_info_2xsai, 86 &vf_info_2xsai,
87 &vf_info_unsharp,
86 NULL 88 NULL
87 }; 89 };
88 90
89 //============================================================================ 91 //============================================================================
90 // mpi stuff: 92 // mpi stuff: