You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mltpp/src/MltFilter.cpp

112 lines
2.3 KiB

/**
* 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include <stdlib.h>
#include <string.h>
#include "MltFilter.h"
using namespace Mlt;
Filter::Filter( char *id, char *arg ) :
instance( NULL )
{
if ( arg != NULL )
{
instance = mlt_factory_filter( id, arg );
}
else
{
if ( strchr( id, ':' ) )
{
char *temp = strdup( id );
char *arg = strchr( temp, ':' ) + 1;
*( arg - 1 ) = '\0';
instance = mlt_factory_filter( temp, arg );
free( temp );
}
else
{
instance = mlt_factory_filter( 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 ) :
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( ) );
}