本文整理汇总了C++中MLT_FILTER_PROPERTIES函数的典型用法代码示例。如果您正苦于以下问题:C++ MLT_FILTER_PROPERTIES函数的具体用法?C++ MLT_FILTER_PROPERTIES怎么用?C++ MLT_FILTER_PROPERTIES使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了MLT_FILTER_PROPERTIES函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: mlt_filter_process
mlt_frame mlt_filter_process( mlt_filter self, mlt_frame frame )
{
mlt_properties properties = MLT_FILTER_PROPERTIES( self );
int disable = mlt_properties_get_int( properties, "disable" );
const char *unique_id = mlt_properties_get( properties, "_unique_id" );
mlt_position position = mlt_frame_get_position( frame );
char name[30];
// Make the properties key from unique id
snprintf( name, sizeof(name), "pos.%s", unique_id );
name[sizeof(name) -1] = '\0';
// Save the position on the frame
mlt_properties_set_position( MLT_FRAME_PROPERTIES( frame ), name, position );
if ( disable || self->process == NULL )
{
return frame;
}
else
{
// Add a reference to this filter on the frame
mlt_properties_inc_ref( MLT_FILTER_PROPERTIES(self) );
snprintf( name, sizeof(name), "filter.%s", unique_id );
name[sizeof(name) -1] = '\0';
mlt_properties_set_data( MLT_FRAME_PROPERTIES(frame), name, self, 0,
(mlt_destructor) mlt_filter_close, NULL );
return self->process( self, frame );
}
}
示例2: filter_avresample_init
mlt_filter filter_avresample_init( char *arg )
{
// Create a filter
mlt_filter filter = mlt_filter_new( );
// Initialise if successful
if ( filter != NULL )
{
// Calculate size of the buffer
int size = MAX_AUDIO_FRAME_SIZE * sizeof( int16_t );
// Allocate the buffer
int16_t *buffer = mlt_pool_alloc( size );
// Assign the process method
filter->process = filter_process;
// Deal with argument
if ( arg != NULL )
mlt_properties_set( MLT_FILTER_PROPERTIES( filter ), "frequency", arg );
// Default to 2 channel output
mlt_properties_set_int( MLT_FILTER_PROPERTIES( filter ), "channels", 2 );
// Store the buffer
mlt_properties_set_data( MLT_FILTER_PROPERTIES( filter ), "buffer", buffer, size, mlt_pool_release, NULL );
}
return filter;
}
示例3: obtain_filter
static mlt_filter obtain_filter( mlt_filter filter, char *type )
{
// Result to return
mlt_filter result = NULL;
// Miscelaneous variable
int i = 0;
int type_len = strlen( type );
// Get the properties of the data show filter
mlt_properties filter_properties = MLT_FILTER_PROPERTIES( filter );
// Get the profile properties
mlt_properties profile_properties = mlt_properties_get_data( filter_properties, "profile_properties", NULL );
// Obtain the profile_properties if we haven't already
if ( profile_properties == NULL )
{
char temp[ 512 ];
// Get the profile requested
char *profile = mlt_properties_get( filter_properties, "resource" );
// If none is specified, pick up the default for this normalisation
if ( profile == NULL )
sprintf( temp, "%s/feeds/%s/data_fx.properties", mlt_environment( "MLT_DATA" ), mlt_environment( "MLT_NORMALISATION" ) );
else if ( strchr( profile, '%' ) )
sprintf( temp, "%s/feeds/%s/%s", mlt_environment( "MLT_DATA" ), mlt_environment( "MLT_NORMALISATION" ), strchr( profile, '%' ) + 1 );
else
{
strncpy( temp, profile, sizeof( temp ) );
temp[ sizeof( temp ) - 1 ] = '\0';
}
// Load the specified profile or use the default
profile_properties = mlt_properties_load( temp );
// Store for later retrieval
mlt_properties_set_data( filter_properties, "profile_properties", profile_properties, 0, ( mlt_destructor )mlt_properties_close, NULL );
}
if ( profile_properties != NULL )
{
for ( i = 0; i < mlt_properties_count( profile_properties ); i ++ )
{
char *name = mlt_properties_get_name( profile_properties, i );
char *value = mlt_properties_get_value( profile_properties, i );
if ( result == NULL && !strcmp( name, type ) && result == NULL )
result = mlt_factory_filter( mlt_service_profile( MLT_FILTER_SERVICE( filter ) ), value, NULL );
else if ( result != NULL && !strncmp( name, type, type_len ) && name[ type_len ] == '.' )
mlt_properties_set( MLT_FILTER_PROPERTIES( result ), name + type_len + 1, value );
else if ( result != NULL )
break;
}
}
return result;
}
示例4: filter_mask_apply_init
mlt_filter filter_mask_apply_init(mlt_profile profile, mlt_service_type type, const char *id, char *arg)
{
mlt_filter filter = mlt_filter_new( );
if (filter) {
mlt_properties_set(MLT_FILTER_PROPERTIES(filter), "transition", arg? arg : "frei0r.composition");
mlt_properties_set(MLT_FILTER_PROPERTIES(filter), "mlt_image_format", "rgb24a");
filter->process = process;
}
return filter;
}
示例5: filter_dust_init
mlt_filter filter_dust_init( mlt_profile profile, mlt_service_type type, const char *id, char *arg )
{
mlt_filter filter = mlt_filter_new( );
if ( filter != NULL )
{
filter->process = filter_process;
mlt_properties_set( MLT_FILTER_PROPERTIES( filter ), "maxdiameter", "2" );
mlt_properties_set( MLT_FILTER_PROPERTIES( filter ), "maxcount", "10" );
}
return filter;
}
示例6: filter_get_audio
static int filter_get_audio( mlt_frame frame, void** buffer, mlt_audio_format* format, int* frequency, int* channels, int* samples )
{
mlt_filter filter = (mlt_filter)mlt_frame_pop_audio( frame );
mlt_properties filter_properties = MLT_FILTER_PROPERTIES( filter );
private_data* pdata = (private_data*)filter->child;
// Create the FFT filter the first time.
if( !pdata->fft )
{
mlt_profile profile = mlt_service_profile( MLT_FILTER_SERVICE(filter) );
pdata->fft = mlt_factory_filter( profile, "fft", NULL );
mlt_properties_set_int( MLT_FILTER_PROPERTIES( pdata->fft ), "window_size",
mlt_properties_get_int( filter_properties, "window_size" ) );
if( !pdata->fft )
{
mlt_log_warning( MLT_FILTER_SERVICE(filter), "Unable to create FFT.\n" );
return 1;
}
}
mlt_properties fft_properties = MLT_FILTER_PROPERTIES( pdata->fft );
// The service must stay locked while using the private data
mlt_service_lock( MLT_FILTER_SERVICE( filter ) );
// Perform FFT processing on the frame
mlt_filter_process( pdata->fft, frame );
mlt_frame_get_audio( frame, buffer, format, frequency, channels, samples );
float* bins = (float*)mlt_properties_get_data( fft_properties, "bins", NULL );
if( bins )
{
double window_level = mlt_properties_get_double( fft_properties, "window_level" );
int bin_count = mlt_properties_get_int( fft_properties, "bin_count" );
size_t bins_size = bin_count * sizeof(float);
float* save_bins = (float*)mlt_pool_alloc( bins_size );
if( window_level == 1.0 )
{
memcpy( save_bins, bins, bins_size );
} else {
memset( save_bins, 0, bins_size );
}
// Save the bin data as a property on the frame to be used in get_image()
mlt_properties_set_data( MLT_FRAME_PROPERTIES(frame), pdata->fft_prop_name, save_bins, bins_size, mlt_pool_release, NULL );
}
mlt_service_unlock( MLT_FILTER_SERVICE( filter ) );
return 0;
}
示例7: filter_grain_init
mlt_filter filter_grain_init( mlt_profile profile, mlt_service_type type, const char *id, char *arg )
{
mlt_filter filter = mlt_filter_new( );
if ( filter != NULL )
{
filter->process = filter_process;
mlt_properties_set( MLT_FILTER_PROPERTIES( filter ), "noise", "40" );
mlt_properties_set( MLT_FILTER_PROPERTIES( filter ), "contrast", "160" );
mlt_properties_set( MLT_FILTER_PROPERTIES( filter ), "brightness", "70" );
}
return filter;
}
示例8: filter_get_image
static int filter_get_image( mlt_frame frame, uint8_t **image, mlt_image_format *format, int *width, int *height, int writable )
{
mlt_filter filter = (mlt_filter) mlt_frame_pop_service( frame );
mlt_properties properties = MLT_FILTER_PROPERTIES( filter );
mlt_position position = mlt_filter_get_position( filter, frame );
mlt_position length = mlt_filter_get_length2( filter, frame );
// Get the image
*format = mlt_image_yuv422;
int error = mlt_frame_get_image( frame, image, format, width, height, 1 );
// Only process if we have no error and a valid colour space
if ( error == 0 )
{
double level = 1.0;
// Use animated "level" property only if it has been set since init
char* level_property = mlt_properties_get( MLT_FILTER_PROPERTIES( filter ), "level" );
if ( level_property != NULL )
{
level = mlt_properties_anim_get_double( properties, "level", position, length );
}
else
{
// Get level using old "start,"end" mechanics
// Get the starting brightness level
level = fabs( mlt_properties_get_double( MLT_FILTER_PROPERTIES( filter ), "start" ) );
// If there is an end adjust gain to the range
if ( mlt_properties_get( MLT_FILTER_PROPERTIES( filter ), "end" ) != NULL )
{
// Determine the time position of this frame in the transition duration
double end = fabs( mlt_properties_get_double( MLT_FILTER_PROPERTIES( filter ), "end" ) );
level += ( end - level ) * mlt_filter_get_progress( filter, frame );
}
}
// Only process if level is something other than 1
if ( level != 1.0 )
{
int i = *width * *height + 1;
uint8_t *p = *image;
int32_t m = level * ( 1 << 16 );
int32_t n = 128 * ( ( 1 << 16 ) - m );
while ( --i )
{
p[0] = CLAMP( (p[0] * m) >> 16, 16, 235 );
p[1] = CLAMP( (p[1] * m + n) >> 16, 16, 240 );
p += 2;
}
}
示例9: filter_mono_init
mlt_filter filter_mono_init( mlt_profile profile, mlt_service_type type, const char *id, char *arg )
{
mlt_filter filter = mlt_filter_new( );
if ( filter != NULL )
{
filter->process = filter_process;
if ( arg != NULL )
mlt_properties_set_int( MLT_FILTER_PROPERTIES( filter ), "channels", atoi( arg ) );
else
mlt_properties_set_int( MLT_FILTER_PROPERTIES( filter ), "channels", -1 );
}
return filter;
}
示例10: filter_panner_init
mlt_filter filter_panner_init( mlt_profile profile, mlt_service_type type, const char *id, char *arg )
{
mlt_filter filter = calloc( 1, sizeof( struct mlt_filter_s ) );
if ( filter != NULL && mlt_filter_init( filter, NULL ) == 0 )
{
filter->process = filter_process;
if ( arg != NULL )
mlt_properties_set_double( MLT_FILTER_PROPERTIES( filter ), "start", atof( arg ) );
mlt_properties_set_int( MLT_FILTER_PROPERTIES( filter ), "channel", -1 );
mlt_properties_set( MLT_FILTER_PROPERTIES( filter ), "split", NULL );
}
return filter;
}
示例11: filter_charcoal_init
mlt_filter filter_charcoal_init( mlt_profile profile, mlt_service_type type, const char *id, char *arg )
{
mlt_filter filter = mlt_filter_new( );
if ( filter != NULL )
{
filter->process = filter_process;
mlt_properties_set_int( MLT_FILTER_PROPERTIES( filter ), "x_scatter", 1 );
mlt_properties_set_int( MLT_FILTER_PROPERTIES( filter ), "y_scatter", 1 );
mlt_properties_set_double( MLT_FILTER_PROPERTIES( filter ), "scale", 1.5 );
mlt_properties_set_double( MLT_FILTER_PROPERTIES( filter ), "mix", 0.0 );
}
return filter;
}
示例12: filter_wave_init
mlt_filter filter_wave_init( mlt_profile profile, mlt_service_type type, const char *id, char *arg )
{
mlt_filter filter = mlt_filter_new( );
if ( filter )
{
filter->process = filter_process;
mlt_properties_set( MLT_FILTER_PROPERTIES( filter ), "start", arg == NULL ? "10" : arg);
mlt_properties_set( MLT_FILTER_PROPERTIES( filter ), "speed", "5");
mlt_properties_set( MLT_FILTER_PROPERTIES( filter ), "deformX", "1");
mlt_properties_set( MLT_FILTER_PROPERTIES( filter ), "deformY", "1");
mlt_properties_set( MLT_FILTER_PROPERTIES( filter ), "wave", NULL);
}
return filter;
}
示例13: filter_channelcopy_init
mlt_filter filter_channelcopy_init( mlt_profile profile, mlt_service_type type, const char *id, char *arg )
{
mlt_filter filter = mlt_filter_new( );
if ( filter != NULL )
{
filter->process = filter_process;
if ( arg != NULL )
mlt_properties_set_int( MLT_FILTER_PROPERTIES( filter ), "to", atoi( arg ) );
else
mlt_properties_set_int( MLT_FILTER_PROPERTIES( filter ), "to", 1 );
if ( strcmp(id, "channelswap") == 0 )
mlt_properties_set_int( MLT_FILTER_PROPERTIES( filter ), "swap", 1 );
}
return filter;
}
示例14: mlt_service_apply_filters
void mlt_service_apply_filters( mlt_service self, mlt_frame frame, int index )
{
int i;
mlt_properties frame_properties = MLT_FRAME_PROPERTIES( frame );
mlt_properties service_properties = MLT_SERVICE_PROPERTIES( self );
mlt_service_base *base = self->local;
mlt_position position = mlt_frame_get_position( frame );
mlt_position self_in = mlt_properties_get_position( service_properties, "in" );
mlt_position self_out = mlt_properties_get_position( service_properties, "out" );
if ( index == 0 || mlt_properties_get_int( service_properties, "_filter_private" ) == 0 )
{
// Process the frame with the attached filters
for ( i = 0; i < base->filter_count; i ++ )
{
if ( base->filters[ i ] != NULL )
{
mlt_position in = mlt_filter_get_in( base->filters[ i ] );
mlt_position out = mlt_filter_get_out( base->filters[ i ] );
int disable = mlt_properties_get_int( MLT_FILTER_PROPERTIES( base->filters[ i ] ), "disable" );
if ( !disable && ( ( in == 0 && out == 0 ) || ( position >= in && ( position <= out || out == 0 ) ) ) )
{
mlt_properties_set_position( frame_properties, "in", in == 0 ? self_in : in );
mlt_properties_set_position( frame_properties, "out", out == 0 ? self_out : out );
mlt_filter_process( base->filters[ i ], frame );
mlt_service_apply_filters( MLT_FILTER_SERVICE( base->filters[ i ] ), frame, index + 1 );
}
}
}
}
}
示例15: mlt_service_detach
int mlt_service_detach( mlt_service self, mlt_filter filter )
{
int error = self == NULL || filter == NULL;
if ( error == 0 )
{
int i = 0;
mlt_service_base *base = self->local;
mlt_properties properties = MLT_SERVICE_PROPERTIES( self );
for ( i = 0; i < base->filter_count; i ++ )
if ( base->filters[ i ] == filter )
break;
if ( i < base->filter_count )
{
base->filters[ i ] = NULL;
for ( i ++ ; i < base->filter_count; i ++ )
base->filters[ i - 1 ] = base->filters[ i ];
base->filter_count --;
mlt_events_disconnect( MLT_FILTER_PROPERTIES( filter ), self );
mlt_filter_close( filter );
mlt_events_fire( properties, "service-changed", NULL );
}
}
return error;
}