]> git.sesse.net Git - mlt/commitdiff
Fix indentation in producer_framebuffer.c.
authorDan Dennedy <dan@dennedy.org>
Mon, 27 Sep 2010 03:09:55 +0000 (20:09 -0700)
committerDan Dennedy <dan@dennedy.org>
Mon, 27 Sep 2010 03:09:55 +0000 (20:09 -0700)
src/modules/kdenlive/producer_framebuffer.c

index 0dbe5e7f9d56c70cf4d40d6d2d03cf431ede8f9c..8e436125f9e2ab23a97c9342bc070aaf071181ea 100644 (file)
@@ -202,12 +202,12 @@ static int producer_get_frame( mlt_producer this, mlt_frame_ptr frame, int index
                mlt_frame_push_service( *frame, this );
                mlt_frame_push_service( *frame, framebuffer_get_image );
 
-                mlt_properties properties = MLT_PRODUCER_PROPERTIES( this );
-                mlt_properties frame_properties = MLT_FRAME_PROPERTIES(*frame);
-                
-                double force_aspect_ratio = mlt_properties_get_double( properties, "force_aspect_ratio" );
-                if ( force_aspect_ratio <= 0.0 ) force_aspect_ratio = mlt_properties_get_double( properties, "aspect_ratio" );
-                mlt_properties_set_double( frame_properties, "aspect_ratio", force_aspect_ratio );
+               mlt_properties properties = MLT_PRODUCER_PROPERTIES( this );
+               mlt_properties frame_properties = MLT_FRAME_PROPERTIES(*frame);
+               
+               double force_aspect_ratio = mlt_properties_get_double( properties, "force_aspect_ratio" );
+               if ( force_aspect_ratio <= 0.0 ) force_aspect_ratio = mlt_properties_get_double( properties, "aspect_ratio" );
+               mlt_properties_set_double( frame_properties, "aspect_ratio", force_aspect_ratio );
                 
                // Give the returned frame temporal identity
                mlt_frame_set_position( *frame, mlt_producer_position( this ) );