Mercurial > mplayer.hg
comparison libmpcodecs/vf.c @ 9179:e93a0dd3ed56
new video filter: denoise3d - temporal&spatial noise reduction
patch by Daniel Moreno <comac2k@terra.es>
mpi/stride corrections and some bugfix by me
author | arpi |
---|---|
date | Thu, 30 Jan 2003 22:53:32 +0000 |
parents | d7237ee9db7f |
children | 7a43a52b9f60 |
comparison
equal
deleted
inserted
replaced
9178:b2bcaf612d5f | 9179:e93a0dd3ed56 |
---|---|
51 extern vf_info_t vf_info_boxblur; | 51 extern vf_info_t vf_info_boxblur; |
52 extern vf_info_t vf_info_sab; | 52 extern vf_info_t vf_info_sab; |
53 extern vf_info_t vf_info_smartblur; | 53 extern vf_info_t vf_info_smartblur; |
54 extern vf_info_t vf_info_perspective; | 54 extern vf_info_t vf_info_perspective; |
55 extern vf_info_t vf_info_field; | 55 extern vf_info_t vf_info_field; |
56 extern vf_info_t vf_info_denoise3d; | |
56 | 57 |
57 char** vo_plugin_args=(char**) NULL; | 58 char** vo_plugin_args=(char**) NULL; |
58 | 59 |
59 // list of available filters: | 60 // list of available filters: |
60 static vf_info_t* filter_list[]={ | 61 static vf_info_t* filter_list[]={ |
97 &vf_info_boxblur, | 98 &vf_info_boxblur, |
98 &vf_info_sab, | 99 &vf_info_sab, |
99 &vf_info_smartblur, | 100 &vf_info_smartblur, |
100 &vf_info_perspective, | 101 &vf_info_perspective, |
101 &vf_info_field, | 102 &vf_info_field, |
103 &vf_info_denoise3d, | |
102 NULL | 104 NULL |
103 }; | 105 }; |
104 | 106 |
105 //============================================================================ | 107 //============================================================================ |
106 // mpi stuff: | 108 // mpi stuff: |