Rough file addition and cleanup. Not yet ready for use.
[melted] / mlt++ / src / MltFilter.cpp
diff --git a/mlt++/src/MltFilter.cpp b/mlt++/src/MltFilter.cpp
deleted file mode 100644 (file)
index 6fbc93a..0000000
+++ /dev/null
@@ -1,113 +0,0 @@
-/**
- * MltFilter.cpp - MLT Wrapper
- * Copyright (C) 2004-2005 Charles Yates
- * Author: Charles Yates <charles.yates@pandora.be>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published
- * by the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software Foundation,
- * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-#include <stdlib.h>
-#include <string.h>
-#include "MltFilter.h"
-#include "MltProfile.h"
-using namespace Mlt;
-
-Filter::Filter( Profile& profile, const char *id, const char *arg ) :
-       instance( NULL )
-{
-       if ( arg != NULL )
-       {
-               instance = mlt_factory_filter( profile.get_profile(), id, arg );
-       }
-       else
-       {
-               if ( strchr( id, ':' ) )
-               {
-                       char *temp = strdup( id );
-                       char *arg = strchr( temp, ':' ) + 1;
-                       *( arg - 1 ) = '\0';
-                       instance = mlt_factory_filter( profile.get_profile(), temp, arg );
-                       free( temp );
-               }
-               else
-               {
-                       instance = mlt_factory_filter( profile.get_profile(), id, NULL );
-               }
-       }
-}
-
-Filter::Filter( Service &filter ) :
-       instance( NULL )
-{
-       if ( filter.type( ) == filter_type )
-       {
-               instance = ( mlt_filter )filter.get_service( );
-               inc_ref( );
-       }
-}
-
-Filter::Filter( Filter &filter ) :
-       Mlt::Service( filter ),
-       instance( filter.get_filter( ) )
-{
-       inc_ref( );
-}
-
-Filter::Filter( mlt_filter filter ) :
-       instance( filter )
-{
-       inc_ref( );
-}
-
-Filter::~Filter( )
-{
-       mlt_filter_close( instance );
-}
-
-mlt_filter Filter::get_filter( )
-{
-       return instance;
-}
-
-mlt_service Filter::get_service( )
-{
-       return mlt_filter_service( get_filter( ) );
-}
-
-int Filter::connect( Service &service, int index )
-{
-       return mlt_filter_connect( get_filter( ), service.get_service( ), index );
-}
-
-void Filter::set_in_and_out( int in, int out )
-{
-       mlt_filter_set_in_and_out( get_filter( ), in, out );
-}
-
-int Filter::get_in( )
-{
-       return mlt_filter_get_in( get_filter( ) );
-}
-
-int Filter::get_out( )
-{
-       return mlt_filter_get_out( get_filter( ) );
-}
-
-int Filter::get_track( )
-{
-       return mlt_filter_get_track( get_filter( ) );
-}
-