]> git.sesse.net Git - mlt/commitdiff
Report scaling method in debug logging.
authorDan Dennedy <dan@dennedy.org>
Sat, 27 Feb 2010 08:15:44 +0000 (00:15 -0800)
committerDan Dennedy <dan@dennedy.org>
Sat, 27 Feb 2010 08:15:44 +0000 (00:15 -0800)
src/modules/core/filter_rescale.c

index 621575b1bc976d9df4faa8d3f2a4495dc88bf0be..4b5a32efcdf5c5d9a60d039e951f636d180be4e3 100644 (file)
@@ -222,8 +222,8 @@ static int filter_get_image( mlt_frame this, uint8_t **image, mlt_image_format *
        
                if ( *image && strcmp( interps, "none" ) && ( iwidth != owidth || iheight != oheight ) )
                {
-                       mlt_log_debug( MLT_FILTER_SERVICE( filter ), "%dx%d -> %dx%d (%s)\n",
-                               iwidth, iheight, owidth, oheight, mlt_image_format_name( *format ) );
+                       mlt_log_debug( MLT_FILTER_SERVICE( filter ), "%dx%d -> %dx%d (%s) %s\n",
+                               iwidth, iheight, owidth, oheight, mlt_image_format_name( *format ), interps );
 
                        // If valid colorspace
                        if ( *format == mlt_image_yuv422 || *format == mlt_image_rgb24 ||