comparison libmpcodecs/vf.c @ 9467:9fae4150ec43

experimental de-telecine filter. not documented or configurable yet, but defaults seem to work ok. may change drastically over the next few weeks. please test it an report results!
author rfelker
date Thu, 20 Feb 2003 03:16:41 +0000
parents 85fa92f14e99
children 356963ad4784
comparison
equal deleted inserted replaced
9466:08c717b7b886 9467:9fae4150ec43
54 extern vf_info_t vf_info_perspective; 54 extern vf_info_t vf_info_perspective;
55 extern vf_info_t vf_info_down3dright; 55 extern vf_info_t vf_info_down3dright;
56 extern vf_info_t vf_info_field; 56 extern vf_info_t vf_info_field;
57 extern vf_info_t vf_info_denoise3d; 57 extern vf_info_t vf_info_denoise3d;
58 extern vf_info_t vf_info_hqdn3d; 58 extern vf_info_t vf_info_hqdn3d;
59 extern vf_info_t vf_info_detc;
59 60
60 char** vo_plugin_args=(char**) NULL; 61 char** vo_plugin_args=(char**) NULL;
61 62
62 // list of available filters: 63 // list of available filters:
63 static vf_info_t* filter_list[]={ 64 static vf_info_t* filter_list[]={
103 &vf_info_perspective, 104 &vf_info_perspective,
104 &vf_info_down3dright, 105 &vf_info_down3dright,
105 &vf_info_field, 106 &vf_info_field,
106 &vf_info_denoise3d, 107 &vf_info_denoise3d,
107 &vf_info_hqdn3d, 108 &vf_info_hqdn3d,
109 &vf_info_detc,
108 NULL 110 NULL
109 }; 111 };
110 112
111 //============================================================================ 113 //============================================================================
112 // mpi stuff: 114 // mpi stuff: