]> git.sesse.net Git - mlt/commitdiff
added mono audio filter
authorddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
Thu, 2 Mar 2006 07:25:57 +0000 (07:25 +0000)
committerddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
Thu, 2 Mar 2006 07:25:57 +0000 (07:25 +0000)
git-svn-id: https://mlt.svn.sourceforge.net/svnroot/mlt/trunk/mlt@896 d19143bc-622f-0410-bfdd-b5b2a6649095

docs/services.txt
src/framework/mlt_manager.h [deleted file]
src/modules/core/Makefile
src/modules/core/configure
src/modules/core/factory.c
src/modules/core/filter_mono.c [new file with mode: 0644]
src/modules/core/filter_mono.h [new file with mode: 0644]

index acc6fab05df6027bf214bf3512443fa1f5256509..0848549c3b6cc97c07e9d93f6c087f6e8727db7b 100644 (file)
@@ -891,6 +891,38 @@ Filters
                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
diff --git a/src/framework/mlt_manager.h b/src/framework/mlt_manager.h
deleted file mode 100644 (file)
index a2534c1..0000000
+++ /dev/null
@@ -1,47 +0,0 @@
-/*
- * 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
index 1842a82873ba76fa559f5d389baf4587695f67a9..86d0b44ab398829620830617c408fabb3d2ba600 100644 (file)
@@ -14,6 +14,7 @@ OBJS = factory.o \
           filter_greyscale.o \
           filter_luma.o \
           filter_mirror.o \
+          filter_mono.o \
           filter_obscure.o \
           filter_region.o \
           filter_rescale.o \
index 338c2ea589cac43ea196d1f60c45694795576456..160844b975c2441c8f3fb6dc3d046f2df0e27a79 100755 (executable)
@@ -19,6 +19,7 @@ gamma                 libmltcore$LIBSUF
 greyscale              libmltcore$LIBSUF
 luma                   libmltcore$LIBSUF
 mirror                 libmltcore$LIBSUF
+mono                   libmltcore$LIBSUF
 obscure                        libmltcore$LIBSUF
 region                 libmltcore$LIBSUF
 rescale                        libmltcore$LIBSUF
index 860b64aeea2d95c1f9ba409159f921fc48dabaf5..bd3b3553b2e5e0cc2df80b9a8f0e1e85e228851f 100644 (file)
@@ -30,6 +30,7 @@
 #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"
@@ -73,6 +74,8 @@ void *mlt_create_filter( char *id, void *arg )
                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" ) )
diff --git a/src/modules/core/filter_mono.c b/src/modules/core/filter_mono.c
new file mode 100644 (file)
index 0000000..b11fd1f
--- /dev/null
@@ -0,0 +1,95 @@
+/*
+ * 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;
+}
diff --git a/src/modules/core/filter_mono.h b/src/modules/core/filter_mono.h
new file mode 100644 (file)
index 0000000..eac6e36
--- /dev/null
@@ -0,0 +1,28 @@
+/*
+ * 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