diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2003-05-28 12:21:53 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2003-05-28 12:21:53 +0000 |
commit | 9d4378bdf55bdce67679536d2a904031158e6ab2 (patch) | |
tree | ba8952f9fec0b8a8cdb083ea992e5d033c777557 | |
parent | a99d842a5291a0cbf0d38ed8cedc38109b9494a9 (diff) | |
download | xine-lib-9d4378bdf55bdce67679536d2a904031158e6ab2.tar.gz xine-lib-9d4378bdf55bdce67679536d2a904031158e6ab2.tar.bz2 |
comment unresolved symbols, add unsupported method for testing
CVS patchset: 4971
CVS date: 2003/05/28 12:21:53
-rw-r--r-- | src/post/planar/deinterlace.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/post/planar/deinterlace.c b/src/post/planar/deinterlace.c index 432e266ee..4abb6887a 100644 --- a/src/post/planar/deinterlace.c +++ b/src/post/planar/deinterlace.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: deinterlace.c,v 1.1 2003/05/28 04:28:43 miguelfreitas Exp $ + * $Id: deinterlace.c,v 1.2 2003/05/28 12:21:53 miguelfreitas Exp $ */ /* @@ -60,11 +60,12 @@ static struct { } deinterlace_method[] = { { "by driver", NULL, 0 }, - { "bob MMX", deinterlace_bob_mmx, MM_MMX }, - { "weave MMX", deinterlace_weave_mmx, MM_MMX }, - { "greedy MMX", deinterlace_greedy_mmx, MM_MMX }, - { "linearblend MMX", deinterlace_linearblend_mmx, MM_MMX }, - { "linearblend", deinterlace_linearblend, 0 }, + { "bob MMX", NULL /*deinterlace_bob_mmx*/, MM_MMX }, + { "weave MMX", NULL /*deinterlace_weave_mmx*/, MM_MMX }, + { "greedy MMX", NULL /*deinterlace_greedy_mmx*/, MM_MMX }, + { "non supported", NULL, 9999999 }, + { "linearblend MMX", NULL /*deinterlace_linearblend_mmx*/, MM_MMX }, + { "linearblend", NULL /*deinterlace_linearblend*/, 0 }, { NULL, NULL, 0 } }; @@ -294,7 +295,6 @@ static void deinterlace_dispose(post_plugin_t *this_gen) free(this->post.xine_post.audio_input); free(this->post.xine_post.video_input); free(xine_list_first_content(this->post.input)); - free(xine_list_first_content(this->post.input)); free(xine_list_first_content(this->post.output)); xine_list_free(this->post.input); xine_list_free(this->post.output); |