src/framework/mlt_tractor.c
authorlilo_booter <lilo_booter@d19143bc-622f-0410-bfdd-b5b2a6649095>
Mon, 27 Jun 2005 07:47:07 +0000 (07:47 +0000)
committerlilo_booter <lilo_booter@d19143bc-622f-0410-bfdd-b5b2a6649095>
Mon, 27 Jun 2005 07:47:07 +0000 (07:47 +0000)
+ Added support for pango usage on audio only fx cuts (sigh...)

git-svn-id: https://mlt.svn.sourceforge.net/svnroot/mlt/trunk/mlt@745 d19143bc-622f-0410-bfdd-b5b2a6649095

src/framework/mlt_tractor.c

index cfbbc0e..3bcf020 100644 (file)
@@ -358,7 +358,7 @@ static int producer_get_frame( mlt_producer parent, mlt_frame_ptr frame, int tra
                                        if ( audio )
                                        {
                                                // Take all but the first placeholding producer and dump on to the audio stack
-                                               void *p = mlt_deque_pop_front( MLT_FRAME_AUDIO_STACK( temp ) );
+                                               void *p = !mlt_frame_is_test_audio( temp ) ? mlt_deque_pop_front( MLT_FRAME_AUDIO_STACK( temp ) ) : NULL;
                                                while ( ( p = mlt_deque_pop_front( MLT_FRAME_AUDIO_STACK( temp ) ) ) != NULL )
                                                        mlt_deque_push_back( MLT_FRAME_AUDIO_STACK( audio ), p );
                                        }