none
+ mono
+
+ Description
+
+ Mix all channels of audio into a mono signal and output it as
+ N channels.
+
+ Constructor Argument
+
+ channels - the number of output channels (default 2)
+
+ Initialisation Properties
+
+ none
+
+ Read Only Properties
+
+ none
+
+ Mutable Properties
+
+ none
+
+ Dependencies
+
+ none
+
+ Known Bugs
+
+ none
+
+
obscure
Description
+++ /dev/null
-/*
- * mlt_manager.h -- manager service class
- * Copyright (C) 2003-2004 Ushodaya Enterprises Limited
- * 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 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.
- */
-
-#ifndef _MLT_MANAGER_H_
-#define _MLT_MANAGER_H_
-
-extern mlt_manager mlt_manager_init( );
-extern mlt_producer mlt_manager_producer( mlt_manager self );
-extern mlt_producer mlt_manager_properties( mlt_manager self );
-extern int mlt_manager_track_count( mlt_manager self );
-extern int mlt_manager_clip_count( mlt_manager self, int track );
-extern int mlt_manager_append_clip( mlt_manager self, int track, mlt_producer clip );
-extern int mlt_manager_append_clip_io( mlt_manager self, int track, mlt_producer clip, mlt_position in, mlt_position out );
-extern int mlt_manager_append_blank( mlt_manager self, int track, int length );
-extern int mlt_manager_insert_clip( mlt_manager self, int track, mlt_producer clip, mlt_position position );
-extern int mlt_manager_insert_clip_io( mlt_manager self, int track, mlt_position position, mlt_producer clip, mlt_position in, mlt_position out );
-extern int mlt_manager_insert_blank( mlt_manager self, int track, mlt_position position, int length );
-extern int mlt_manager_remove_clip( mlt_manager self, int track, int index );
-extern mlt_producer mlt_manager_get_clip( mlt_manager self, int track, int index, char *type, mlt_position *in, mlt_position *out );
-extern int mlt_manager_service_count( mlt_manager self );
-extern int mlt_manager_append_filter( mlt_manager self, mlt_filter that );
-extern int mlt_manager_append_transition( mlt_manager self, int index, mlt_transition that );
-extern int mlt_manager_insert_filter( mlt_manager self, int index, mlt_filter that );
-extern int mlt_manager_insert_transition( mlt_manager self, int index, mlt_transition that );
-extern int mlt_manager_remove_service( mlt_manager self, int index );
-extern mlt_service mlt_manager_get_service( mlt_manager self, int index, char *type );
-extern int mlt_manager_set_resource( mlt_manager self, char *resource );
-extern int mlt_manager_set_type( mlt_manager self, char *type );
-
-#endif
filter_greyscale.o \
filter_luma.o \
filter_mirror.o \
+ filter_mono.o \
filter_obscure.o \
filter_region.o \
filter_rescale.o \
greyscale libmltcore$LIBSUF
luma libmltcore$LIBSUF
mirror libmltcore$LIBSUF
+mono libmltcore$LIBSUF
obscure libmltcore$LIBSUF
region libmltcore$LIBSUF
rescale libmltcore$LIBSUF
#include "filter_greyscale.h"
#include "filter_luma.h"
#include "filter_mirror.h"
+#include "filter_mono.h"
#include "filter_obscure.h"
#include "filter_rescale.h"
#include "filter_resize.h"
return filter_luma_init( arg );
if ( !strcmp( id, "mirror" ) )
return filter_mirror_init( arg );
+ if ( !strcmp( id, "mono" ) )
+ return filter_mono_init( arg );
if ( !strcmp( id, "obscure" ) )
return filter_obscure_init( arg );
if ( !strcmp( id, "region" ) )
--- /dev/null
+/*
+ * filter_mono.c -- mix all channels to a mono signal across n channels
+ * Copyright (C) 2003-2006 Ushodaya Enterprises Limited
+ * Author: Dan Dennedy <dan@dennedy.org>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU 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 "filter_mono.h"
+
+#include <framework/mlt_frame.h>
+
+#include <stdio.h>
+#include <stdlib.h>
+
+/** Get the audio.
+*/
+
+static int filter_get_audio( mlt_frame frame, int16_t **buffer, mlt_audio_format *format, int *frequency, int *channels, int *samples )
+{
+ // Get the properties of the a frame
+ mlt_properties properties = MLT_FRAME_PROPERTIES( frame );
+ int channels_out = mlt_properties_get_int( properties, "mono.channels" );
+ int i, j, size;
+ int16_t *new_buffer;
+
+ // Get the producer's audio
+ mlt_frame_get_audio( frame, buffer, format, frequency, channels, samples );
+
+ size = *samples * channels_out * sizeof( int16_t );
+ new_buffer = mlt_pool_alloc( size );
+ mlt_properties_set_data( properties, "audio", new_buffer, size, ( mlt_destructor )mlt_pool_release, NULL );
+
+ // Mix
+ for ( i = 0; i < *samples; i++ )
+ {
+ int16_t mixdown = 0;
+ for ( j = 0; j < *channels; j++ )
+ mixdown += (*buffer)[ ( i * *channels ) + j ] / *channels;
+ for ( j = 0; j < channels_out; j++ )
+ new_buffer[ ( i * channels_out ) + j ] = mixdown;
+ }
+
+ // Apply results
+ *buffer = new_buffer;
+ *channels = channels_out;
+
+ return 0;
+}
+
+/** Filter processing.
+*/
+
+static mlt_frame filter_process( mlt_filter this, mlt_frame frame )
+{
+ mlt_properties properties = MLT_FILTER_PROPERTIES( this );
+ mlt_properties frame_props = MLT_FRAME_PROPERTIES( frame );
+
+ // Propogate the parameters
+ mlt_properties_set_int( frame_props, "mono.channels", mlt_properties_get_int( properties, "channels" ) );
+
+ // Override the get_audio method
+ mlt_frame_push_audio( frame, filter_get_audio );
+
+ return frame;
+}
+
+/** Constructor for the filter.
+*/
+
+mlt_filter filter_mono_init( char *arg )
+{
+ mlt_filter this = mlt_filter_new( );
+ if ( this != NULL )
+ {
+ this->process = filter_process;
+ if ( arg != NULL )
+ mlt_properties_set_int( MLT_FILTER_PROPERTIES( this ), "channels", atoi( arg ) );
+ else
+ mlt_properties_set_int( MLT_FILTER_PROPERTIES( this ), "channels", 2 );
+ }
+ return this;
+}
--- /dev/null
+/*
+ * filter_mono.h -- mix all channels to a mono signal across n channels
+ * Copyright (C) 2003-2006 Ushodaya Enterprises Limited
+ * Author: Dan Dennedy <dan@dennedy.org>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU 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.
+ */
+
+#ifndef _FILTER_MONO_H_
+#define _FILTER_MONO_H_
+
+#include <framework/mlt_filter.h>
+
+extern mlt_filter filter_mono_init( char *arg );
+
+#endif